/*
Theme Name: Puppy Dog Nursery
Theme URI: https://cosmickmedia.com/
Author: Cosmick Media
Author URI: https://cosmickmedia.com/
Description: Custom theme for Puppy Dog Nursery integrating Bootstrap 5, Font Awesome 6, and WooCommerce support.
Version: 1.4.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-logo, custom-menu, featured-images, theme-options, translation-ready, block-styles, responsive-layout, two-columns, left-sidebar, right-sidebar, woocommerce
Text Domain: puppy-dog-nursery
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Grandstander:wght@100;200;300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
    /* Puppy Dog Nursery Brand Colors */
    --color-nursery-green: #8ABB6F; /* Primary - Buttons, Accents */
    --color-puppy-gold: #F4CA54; /* Accent - Hover states */
    --color-light-green: #bddab0; /* Light green for overlays */
    --color-footer-bg: #f8f9fa; /* Footer background - Light gray */

    /* Text Colors */
    --color-text-dark: #58595b; /* Body text */
    --color-text-light: #808285; /* Secondary text */
    --color-text-black: #000000; /* Headings, strong text */

    /* Legacy variables for compatibility */
    --color-primary-light-blue-grey: #bddab0; /* Updated to light green */
    --color-primary-light-yellow: #F4CA54; /* Puppy Gold */
    --color-primary-light-peach: #f8f9fa; /* Light gray */
    --color-primary-dark-teal: #8ABB6F; /* Updated to Nursery Green */
    --color-primary-dark-grey: #58595b; /* Body Text */

    --color-secondary-teal: #8ABB6F; /* Updated to Nursery Green */
    --color-secondary-light-beige: #f8f9fa; /* Light gray */
    --color-secondary-light-pink: #f8f9fa; /* Light gray */
    --color-secondary-dark-pink: #F4CA54; /* Puppy Gold for hover */
    --color-secondary-dark-blue: #000000; /* Black for titles */
    --color-secondary-dark-maroon: #58595b; /* Dark gray */

    --color-text: var(--color-text-dark);
    --color-heading: var(--color-text-black);
    --color-background: #FFFFFF;
    --color-light-background: #FAFAFA; /* For alternating sections */
    --color-header-bg: #FFFFFF;
    --color-footer-bg: #f8f9fa; /* Light gray footer */
    --color-button: var(--color-nursery-green); /* Green button bg */
    --color-button-text: #FFFFFF;
    --color-button-hover: var(--color-puppy-gold); /* Gold hover */
    --color-link: var(--color-nursery-green);
    --color-link-hover: #81d742; /* Bright green hover */

    --global-secondary-color: var(--color-nursery-green);

    /* Font Families */
    --font-primary: 'Montserrat', sans-serif; /* Body text */
    --font-secondary: 'Grandstander', cursive; /* Display headings */
}


/* Global Container Width - Standardize all pages to 1200px */
.site-main .container,
.site-main > .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* WooCommerce Blocks (Cart & Checkout) */
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 14px; /* Base font size per old site */
    line-height: 1.8; /* Base line height per old site */
    font-weight: 400;
    background: #ffffff;
}

/* Apply secondary font to headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-secondary);
    color: var(--color-heading);
    margin-top: 0;
    font-weight: 700;
}

h2 {
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    font-size: 40px;
    text-transform: capitalize;
}

/* Link styling */
a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: var(--color-link-hover);
}

/* Ensure Bootstrap buttons use theme colors if desired */
.btn-primary {
    --bs-btn-color: var(--color-button-text);
    --bs-btn-bg: var(--color-button);
    --bs-btn-border-color: var(--color-button);
    --bs-btn-hover-color: var(--color-button-text);
    --bs-btn-hover-bg: var(--color-link-hover);
    --bs-btn-hover-border-color: var(--color-link-hover);
    --bs-btn-focus-shadow-rgb: TBD;
    --bs-btn-active-color: var(--color-button-text);
    --bs-btn-active-bg: var(--color-link-hover);
    --bs-btn-active-border-color: var(--color-link-hover);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--color-button-text);
    --bs-btn-disabled-bg: var(--color-button);
    --bs-btn-disabled-border-color: var(--color-button);
    opacity: 0.8;
}

/* Global button styling */
.btn,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.theme-primary-btn {
    background-color: var(--color-nursery-green) !important;
    color: white !important;
    border: 2px solid var(--color-nursery-green) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 15px;
    text-transform: none;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.theme-primary-btn:hover {
    background-color: var(--color-puppy-gold) !important;
    color: #ffffff !important;
    border: 2px solid var(--color-puppy-gold) !important;
}


/* --- Header --- */

/* PDN Header - New Layout: Hamburger | Logo | Contact+Social */
.pdn-header {
    background: #ffffff;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.pdn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Menu Toggle - Left Side (Always Visible) */
.pdn-menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--color-nursery-green);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pdn-menu-toggle:hover {
    background: var(--color-puppy-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 187, 111, 0.3);
}

.pdn-menu-toggle i {
    font-size: 18px;
}

.pdn-menu-text {
    display: inline;
}

/* Logo - Centered */
.pdn-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-shrink: 0;
}

.pdn-logo-link {
    display: block;
}

.pdn-logo img,
.pdn-logo .custom-logo {
    height: 90px;
    width: auto;
    max-width: 180px;
    transition: height 0.3s ease;
}

/* Header Right Section - Contact ABOVE Social */
.pdn-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

/* Contact Info */
.pdn-header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
}

.pdn-header-phone {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pdn-header-phone a {
    color: var(--color-nursery-green);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdn-header-phone a:hover {
    color: var(--color-puppy-gold);
}

.pdn-header-phone i {
    margin-right: 8px;
    color: var(--color-nursery-green);
    font-size: 14px;
}

.pdn-header-address {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: var(--color-text-light);
}

.pdn-header-address i {
    margin-right: 6px;
    color: var(--color-nursery-green);
    font-size: 12px;
}

/* Social Icons */
.pdn-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.pdn-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-nursery-green);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdn-social-link:hover {
    background: var(--color-puppy-gold);
    color: #ffffff;
    transform: scale(1.1);
}

.pdn-social-link i {
    font-size: 13px;
}

/* Mobile Offcanvas - Enhanced Styling */
.pdn-offcanvas {
    max-width: 320px;
    background: #ffffff;
    border-right: none;
    box-shadow: 5px 0 30px rgba(0,0,0,0.15);
}

.pdn-offcanvas .offcanvas-header {
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.pdn-offcanvas-logo {
    flex: 1;
}

.pdn-offcanvas-logo img,
.pdn-offcanvas-logo .custom-logo {
    height: 70px;
    width: auto;
}

.pdn-offcanvas .btn-close {
    background-color: var(--color-footer-bg);
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

.pdn-offcanvas .btn-close:hover {
    background-color: var(--color-puppy-gold);
    transform: rotate(90deg);
}

.pdn-offcanvas .offcanvas-body {
    padding: 0;
}

/* Mobile Navigation Menu */
.pdn-mobile-nav {
    padding: 15px 0;
}

.pdn-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdn-mobile-menu > li {
    border-bottom: 1px solid #f5f5f5;
}

.pdn-mobile-menu > li > a {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.pdn-mobile-menu > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-nursery-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pdn-mobile-menu > li > a:hover,
.pdn-mobile-menu > li.current-menu-item > a {
    color: var(--color-nursery-green);
    background: rgba(138, 187, 111, 0.05);
}

.pdn-mobile-menu > li > a:hover::before,
.pdn-mobile-menu > li.current-menu-item > a::before {
    transform: scaleY(1);
}

/* Mobile Submenu */
.pdn-mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fafafa;
}

.pdn-mobile-menu .sub-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.pdn-mobile-menu .sub-menu li:last-child {
    border-bottom: none;
}

.pdn-mobile-menu .sub-menu li a {
    display: block;
    padding: 12px 25px 12px 40px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pdn-mobile-menu .sub-menu li a:hover {
    color: var(--color-nursery-green);
    padding-left: 45px;
}

/* Mobile Social Links */
.pdn-mobile-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-top: 1px solid #f0f0f0;
}

.pdn-mobile-social .pdn-social-link {
    width: 40px;
    height: 40px;
    background: var(--color-nursery-green);
}

.pdn-mobile-social .pdn-social-link i {
    font-size: 16px;
}

/* Mobile Contact Section */
.pdn-mobile-contact {
    padding: 20px 25px;
    background: var(--color-footer-bg);
    margin-top: auto;
}

.pdn-mobile-location {
    margin-bottom: 0;
}

.pdn-mobile-location strong {
    display: block;
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
}

.pdn-mobile-phone,
.pdn-mobile-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    font-size: 14px;
    color: #58595b;
}

.pdn-mobile-phone i,
.pdn-mobile-address i {
    color: var(--color-nursery-green);
    font-size: 16px;
    margin-top: 2px;
}

.pdn-mobile-phone a {
    color: var(--color-nursery-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdn-mobile-phone a:hover {
    color: var(--color-puppy-gold);
}

/* Responsive Header - Tablet */
@media (max-width: 991.98px) {
    .pdn-header {
        min-height: 80px;
        padding: 8px 0;
    }

    .pdn-header-inner {
        padding: 0 15px;
    }

    .pdn-logo img,
    .pdn-logo .custom-logo {
        height: 70px;
        max-width: 140px;
    }

    .pdn-menu-toggle {
        padding: 10px 16px;
        font-size: 13px;
    }

    .pdn-header-phone {
        font-size: 13px;
    }

    .pdn-header-address {
        font-size: 11px;
    }

    .pdn-social-link {
        width: 30px;
        height: 30px;
    }

    .pdn-social-link i {
        font-size: 12px;
    }
}

/* Responsive Header - Mobile */
@media (max-width: 767.98px) {
    .pdn-header {
        min-height: 70px;
        padding: 8px 0;
    }

    .pdn-header-inner {
        padding: 0 10px;
    }

    .pdn-logo {
        position: static;
        transform: none;
        order: 1;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .pdn-menu-toggle {
        order: 0;
        padding: 10px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .pdn-menu-text {
        display: none;
    }

    .pdn-menu-toggle i {
        font-size: 20px;
    }

    .pdn-logo img,
    .pdn-logo .custom-logo {
        height: 55px;
        max-width: 110px;
    }

    .pdn-header-right {
        order: 2;
        gap: 4px;
    }

    .pdn-header-contact {
        gap: 0;
    }

    .pdn-header-address {
        display: none;
    }

    .pdn-header-phone {
        font-size: 12px;
    }

    .pdn-header-phone i {
        font-size: 12px;
        margin-right: 4px;
    }

    .pdn-social-icons {
        gap: 5px;
    }

    .pdn-social-link {
        width: 28px;
        height: 28px;
    }

    .pdn-social-link i {
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 479.98px) {
    .pdn-header {
        min-height: 60px;
    }

    .pdn-logo img,
    .pdn-logo .custom-logo {
        height: 45px;
        max-width: 90px;
    }

    .pdn-menu-toggle {
        padding: 8px 10px;
    }

    .pdn-header-phone {
        font-size: 11px;
    }

    .pdn-social-link {
        width: 26px;
        height: 26px;
    }

    .pdn-social-link i {
        font-size: 10px;
    }
}

/* Legacy Header Classes (for backwards compatibility) */
.header-contact {
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: flex-end;
}

.gform_page_footer input[type="submit"], .gform_page_footer input[type="button"] {
    margin-bottom: 20px !important;
}

@media (max-width: 767.98px) {
    .header-top-button {
        text-align: right !important;
    }
    .header-contact {
        justify-content: flex-end;
        margin-bottom: 0;
    }

    /* Set smaller logo height on mobile */
    .top-bar-logo img {
        height: 10px !important;
        width: auto;
    }

    /* Ensure consistent button border radius on mobile */
    .btn-book-appointment {
        border-radius: 15px !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }
}


/* --- Hamburger Toggle in Top Bar --- */
.puppy-dog-nursery-toggler {
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.puppy-dog-nursery-toggler:hover,
.puppy-dog-nursery-toggler:focus {
    background-color: rgba(61, 81, 85, 0.05);
    outline: none;
    box-shadow: none;
}

.puppy-dog-nursery-toggler .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(61, 81, 85, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-color: #fff;
}

span.navbar-toggler-icon {}

/* --- Main Navigation Bar (Horizontal on all devices) --- */
.main-navbar {
    border-bottom: 1px solid #eee;
    padding: 0.75rem 0;
}

.navbar-horizontal-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.navbar-nav-horizontal li {
    list-style: none;
    margin: 0;
}

.navbar-nav-horizontal a {
    color: var(--color-primary-dark-teal);
    font-weight: bold;
    padding: 0.5rem 0.75rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    font-size: 1.25rem;
    border-radius: 5px;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    font-family: var(--font-primary);
}

.navbar-nav-horizontal a:hover,
.navbar-nav-horizontal .current-menu-item > a {
    color: var(--color-link-hover);
    background-color: rgba(61, 81, 85, 0.05);
}

/* Mobile adjustments for horizontal nav */
@media (max-width: 575.98px) {
    .navbar-nav-horizontal {
        gap: 0.5rem;
    }

    .navbar-nav-horizontal a {
        font-size: 1.25rem;
        padding: 0.4rem 0.5rem;
    }
}

@media (max-width: 400px) {
    .navbar-nav-horizontal a {
        font-size: 1.25rem;
        padding: 0.35rem 0.4rem;
    }
}

/* --- Offcanvas Mobile Menu Styles --- */
.puppy-dog-nursery-offcanvas {
    max-width: 85%;
    background-color: #FFFFFF;
}

@media (min-width: 576px) {
    .puppy-dog-nursery-offcanvas {
        max-width: 400px;
    }
}

.puppy-dog-nursery-offcanvas .offcanvas-header {
    background-color: var(--color-primary-light-blue-grey);
    padding: 1.5rem;
    border-bottom: 3px solid var(--color-primary-dark-teal);
}

.puppy-dog-nursery-offcanvas .offcanvas-logo img {
    max-height: 60px;
    width: auto;
    max-width: 100%;
}

.puppy-dog-nursery-offcanvas .puppy-dog-nursery-close {
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.puppy-dog-nursery-offcanvas .puppy-dog-nursery-close:hover {
    transform: rotate(90deg);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.puppy-dog-nursery-offcanvas .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    padding: 1.5rem 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(61, 81, 85, 0.1);
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--color-primary-dark-teal);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: capitalize;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    position: relative;
}

.mobile-menu-list a:hover,
.mobile-menu-list .current-menu-item > a {
    background-color: var(--color-primary-light-blue-grey);
    padding-left: 2rem;
    color: var(--color-primary-dark-teal);
}

.mobile-menu-list .current-menu-item > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-primary-dark-teal);
}

/* Submenu styles */
.mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(188, 201, 197, 0.2);
}

.mobile-menu-list .sub-menu a {
    padding-left: 3rem;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu-list .sub-menu a:hover {
    padding-left: 3.5rem;
}

/* Mobile Quick Links */
.mobile-quick-links {
    padding: 0 1.5rem;
}

.quick-links-title {
    color: var(--color-primary-dark-teal);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: var(--color-primary-light-blue-grey);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.quick-link-item:hover {
    transform: translateY(-3px);
    background-color: var(--color-secondary-light-beige);
}

.quick-link-item i {
    font-size: 1.5rem;
    color: var(--color-primary-dark-teal);
    margin-bottom: 0.5rem;
}

.quick-link-item span {
    color: var(--color-primary-dark-teal);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile Contact Info */
.mobile-contact-info {
    padding: 1.5rem;
    background-color: rgba(188, 201, 197, 0.15);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--color-primary-dark-grey);
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--color-primary-dark-teal);
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--color-primary-dark-grey);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--color-primary-dark-teal);
}

/* Mobile Social Links */
.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light-blue-grey);
    color: var(--color-primary-dark-teal);
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    background-color: var(--color-primary-dark-teal);
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Mobile CTA Button */
.mobile-cta-button {
    padding: 1.5rem;
    background-color: rgba(188, 201, 197, 0.2);
    margin-top: auto;
}

.btn-book-appointment-mobile {
    border-radius: 15px !important;
    font-weight: bold;
    padding: 0.75rem 1.5rem !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.btn-book-appointment-mobile:hover {
    transform: scale(1.02);
}

/* Offcanvas Backdrop */
.offcanvas-backdrop {
    background-color: rgba(61, 81, 85, 0.5);
}

/* Transition Animation */
.puppy-dog-nursery-offcanvas.show {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}


/* --- Main Content --- */
.site-content {
    /* Add padding if needed, e.g., padding-top: 2rem; padding-bottom: 2rem; */
}
.site-main {
    flex-grow: 1; /* Ensures footer sticks to bottom */
}

/* Custom max-width container */
.main-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Breadcrumbs styling */
.breadcrumbs {
    font-size: 0.875rem;
}

/* --- Footer --- */

/* PDN Footer - Modern 3-Column Layout */
.pdn-footer {
    background: linear-gradient(180deg, var(--color-footer-bg) 0%, #f0f0f0 100%);
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
}

/* Footer Widgets Area */
.pdn-footer-widgets {
    padding: 70px 0 50px;
}

.pdn-footer-col {
    margin-bottom: 30px;
}

/* Widget Title */
.pdn-widget-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-nursery-green);
}

.pdn-widget-title i {
    color: var(--color-nursery-green);
    font-size: 18px;
}

/* About Widget */
.pdn-footer-logo {
    margin-bottom: 15px;
}

.pdn-footer-logo img,
.pdn-footer-logo .custom-logo {
    width: 180px;
    height: auto;
    margin-bottom: 10px;
}

.pdn-footer-tagline {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-nursery-green);
    margin-bottom: 15px;
    font-style: italic;
}

.pdn-about-text {
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer Social Icons */
.pdn-footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
}

.pdn-footer-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-nursery-green);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(138,187,111,0.3);
}

.pdn-footer-social li a:hover {
    background: var(--color-puppy-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(244,202,84,0.4);
}

.pdn-footer-social li a i {
    font-size: 16px;
}

/* Quick Links Widget */
.pdn-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdn-quick-links li {
    margin-bottom: 12px;
}

.pdn-quick-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.pdn-quick-links li a i {
    font-size: 10px;
    color: var(--color-nursery-green);
    transition: transform 0.3s ease;
}

.pdn-quick-links li a:hover {
    color: var(--color-nursery-green);
    padding-left: 5px;
}

.pdn-quick-links li a:hover i {
    transform: translateX(3px);
}

/* Contact Info Widget */
.pdn-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdn-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    color: #333;
}

.pdn-contact-info li i {
    color: var(--color-nursery-green);
    font-size: 18px;
    min-width: 20px;
    margin-top: 2px;
}

.pdn-info-wrap {
    flex: 1;
}

.pdn-contact-text {
    color: #333;
    font-size: 14px;
}

.pdn-contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdn-contact-info a:hover {
    color: var(--color-nursery-green);
}

/* Hours Widget */
.pdn-footer-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.pdn-hours-title {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pdn-hours-title i {
    color: var(--color-nursery-green);
}

.pdn-footer-hours p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

/* Footer Bottom */
.pdn-footer-bottom {
    background: rgba(0,0,0,0.05);
    padding: 25px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
}

.pdn-footer-menu {
    margin-bottom: 15px;
}

.pdn-footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.pdn-footer-menu-list li a {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.pdn-footer-menu-list li a:hover {
    color: var(--color-nursery-green);
}

.pdn-copyright {
    font-size: 13px;
    color: #555;
}

.pdn-footer-credits {
    margin-top: 12px;
    font-size: 12px;
    color: #777;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pdn-credit-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pdn-credit-item a {
    color: var(--color-nursery-green, #8ABB6F);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pdn-credit-item a:hover {
    color: #79a85f;
    text-decoration: underline;
}

.pdn-credit-divider {
    color: #ccc;
}

/* Footer Mobile Responsive */
@media (max-width: 991.98px) {
    .pdn-footer-widgets {
        padding: 50px 0 30px;
    }

    .pdn-footer-col {
        margin-bottom: 40px;
    }

    .pdn-footer-logo img,
    .pdn-footer-logo .custom-logo {
        width: 150px;
    }
}

@media (max-width: 767.98px) {
    .pdn-footer-widgets {
        padding: 40px 0 20px;
    }

    .pdn-widget-title {
        font-size: 14px;
    }

    .pdn-footer-social {
        justify-content: center;
    }

    .pdn-footer-menu-list {
        gap: 15px;
    }

    .pdn-footer-menu-list li a {
        font-size: 12px;
    }
}

/* Legacy Footer Classes (backwards compatibility) */
.site-footer {
    background: var(--color-footer-bg);
    color: #000;
    font-size: 0.95rem;
}

.site-footer a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--color-nursery-green);
}

/* 404 page logo medium size */
.error-404-logo img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer logo size */
.footer-logo img {
    width: 200px;
    height: auto;
}

/* Footer Bottom Legacy */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer-bottom a {
    color: #000;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-nursery-green);
    text-decoration: none;
}


/* --- PDN Homepage Styles --- */

/* Hero Slider */
.pdn-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pdn-slider-container {
    width: 100%;
}

.pdn-slides {
    position: relative;
    width: 100%;
}

.pdn-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.pdn-slide.active {
    position: relative;
    opacity: 1;
}

.pdn-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.pdn-slide-overlay {
    position: absolute;
    bottom: 20%;
    right: 10%;
    z-index: 10;
}

.pdn-book-now-btn img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.pdn-book-now-btn:hover img {
    transform: scale(1.05);
}

/* Hero Slider Content Overlay - LEFT Aligned */
.pdn-slide-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 45%;
    text-align: left;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.pdn-slide-heading {
    font-family: var(--font-secondary, 'Grandstander', cursive);
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.15;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.pdn-slide-subheading {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: clamp(14px, 2vw, 22px);
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.pdn-slide-cta {
    display: inline-block;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    background-color: var(--color-nursery-green, #8ABB6F);
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-nursery-green, #8ABB6F);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pdn-slide-cta:hover,
.pdn-slide-cta:focus {
    background-color: var(--color-puppy-gold, #F4CA54);
    border-color: var(--color-puppy-gold, #F4CA54);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

/* Hero Slider Responsive Adjustments */
@media (max-width: 991px) {
    .pdn-slide-content {
        max-width: 60%;
        left: 4%;
        padding: 25px 30px;
    }
}

@media (max-width: 767px) {
    .pdn-slide-content {
        max-width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px 25px;
        background: rgba(0, 0, 0, 0.5);
        text-align: center;
    }

    .pdn-slide-heading {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .pdn-slide-subheading {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .pdn-slide-cta {
        font-size: 14px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .pdn-slide-content {
        max-width: 92%;
        padding: 15px 20px;
        top: auto;
        bottom: 8%;
        transform: translateX(-50%);
    }

    .pdn-slide-heading {
        font-size: 20px;
    }

    .pdn-slide-subheading {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .pdn-slide-cta {
        font-size: 13px;
        padding: 10px 24px;
    }
}

/* Welcome Section */
.pdn-welcome-section {
    padding: 60px 0;
}

.pdn-welcome-banner {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.pdn-welcome-heading {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.pdn-welcome-paragraph {
    font-family: var(--font-primary);
    font-size: 16px;
    color: #58595b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pdn-welcome-sidebar {
    text-align: center;
}

.pdn-book-appointment-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.pdn-book-appointment-link:hover .pdn-book-appointment-img {
    transform: scale(1.02);
}

.pdn-scrapbook-img {
    max-width: 100%;
    height: auto;
}

/* Breeders Section - 2 Column Layout (6/6 split) */
.pdn-breeders-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.pdn-breeders-image-wrap {
    text-align: center;
}

.pdn-breeders-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pdn-breeders-video-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Responsive YouTube Video - Full Width of Container */
.pdn-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: #000;
}

.pdn-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Breeders YouTube Button */
.pdn-breeders-cta {
    margin-top: 25px;
    text-align: center;
}

.pdn-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #FF0000;
    color: #ffffff !important;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none !important;
}

.pdn-youtube-btn:hover {
    background: #cc0000;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.3);
}

.pdn-youtube-btn i {
    font-size: 20px;
}

/* Breeders Section Mobile */
@media (max-width: 991.98px) {
    .pdn-breeders-section {
        padding: 40px 0;
    }

    .pdn-breeders-image-wrap {
        margin-bottom: 30px;
    }

    .pdn-breeders-img {
        max-width: 70%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 767.98px) {
    .pdn-breeders-section {
        padding: 30px 0;
    }

    .pdn-breeders-img {
        max-width: 80%;
    }

    .pdn-video-wrapper {
        border-radius: 8px;
    }

    .pdn-breeders-link {
        font-size: 14px;
    }

    .pdn-breeders-link i {
        font-size: 20px;
    }
}

/* Come Play Section - Enhanced */
.pdn-come-play-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-light-green) 0%, #a8d99a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pdn-come-play-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.pdn-come-play-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.pdn-come-play-icon {
    margin-bottom: 20px;
}

.pdn-come-play-icon i {
    font-size: 60px;
    color: var(--color-nursery-green);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.pdn-come-play-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.pdn-come-play-text {
    font-family: var(--font-primary);
    font-size: 18px;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.pdn-come-play-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pdn-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-width: 140px;
}

.pdn-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.pdn-feature i {
    font-size: 36px;
    color: var(--color-nursery-green);
}

.pdn-feature span {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.pdn-come-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--color-nursery-green);
    color: #ffffff !important;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none !important;
    position: relative;
    z-index: 1;
}

.pdn-come-play-btn:hover {
    background: var(--color-puppy-gold);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138,187,111,0.4);
}

.pdn-come-play-btn i {
    font-size: 18px;
}

/* Come Play Section Mobile */
@media (max-width: 767.98px) {
    .pdn-come-play-section {
        padding: 50px 0;
    }

    .pdn-come-play-icon i {
        font-size: 45px;
    }

    .pdn-come-play-title {
        font-size: 28px;
    }

    .pdn-come-play-text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .pdn-come-play-features {
        gap: 15px;
    }

    .pdn-feature {
        padding: 15px 20px;
        min-width: 100px;
    }

    .pdn-feature i {
        font-size: 28px;
    }

    .pdn-feature span {
        font-size: 12px;
    }

    .pdn-come-play-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* ================================================
   SCHEDULE APPOINTMENT PAGE - Enhanced Styles
   ================================================ */

/* Schedule Hero Section */
.schedule-hero {
    background: linear-gradient(135deg, var(--color-light-green) 0%, #a8d99a 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.schedule-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.schedule-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.schedule-hero-content {
    position: relative;
    z-index: 1;
}

.schedule-hero-icon {
    margin-bottom: 20px;
}

.schedule-hero-icon i {
    font-size: 60px;
    color: var(--color-nursery-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.schedule-hero-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.schedule-hero-text {
    font-size: 18px;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Schedule Features Section */
.schedule-features {
    padding: 80px 0;
    background: #fff;
}

.schedule-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.schedule-feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.schedule-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
}

.schedule-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-nursery-green) 0%, #9dce87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(138,187,111,0.3);
}

.schedule-feature-icon i {
    font-size: 32px;
    color: #fff;
}

.schedule-feature-item h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.schedule-feature-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Schedule Info Section */
.schedule-info-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.schedule-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.schedule-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.schedule-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-light-green);
}

.schedule-card-header i {
    font-size: 28px;
    color: var(--color-nursery-green);
}

.schedule-card-header h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.schedule-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-checklist li:last-child {
    border-bottom: none;
}

.schedule-checklist li i {
    color: var(--color-nursery-green);
    font-size: 18px;
    margin-top: 2px;
}

/* Hours Card Specific */
.schedule-hours-list {
    margin-bottom: 25px;
}

.schedule-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-hours-row:last-child {
    border-bottom: none;
}

.schedule-day {
    font-weight: 600;
    color: #333;
}

.schedule-time {
    color: var(--color-nursery-green);
    font-weight: 700;
}

.schedule-hours-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: var(--color-light-green);
    border-radius: 12px;
}

.schedule-hours-note i {
    color: var(--color-nursery-green);
    font-size: 18px;
    margin-top: 2px;
}

.schedule-hours-note p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Schedule Booking Section */
.schedule-booking-section {
    padding: 80px 0;
    background: #fff;
}

.schedule-booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.schedule-booking-icon {
    margin-bottom: 20px;
}

.schedule-booking-icon i {
    font-size: 50px;
    color: var(--color-nursery-green);
}

.schedule-booking-header h2 {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.schedule-booking-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.schedule-booking-embed {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    min-height: 400px;
}

.schedule-booking-embed iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: 12px;
}

/* Booking Placeholder */
.schedule-booking-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px dashed var(--color-light-green);
}

.schedule-booking-placeholder i {
    font-size: 60px;
    color: var(--color-nursery-green);
    margin-bottom: 25px;
}

.schedule-booking-placeholder h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.schedule-booking-placeholder p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto 30px;
}

.schedule-placeholder-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.schedule-btn-primary {
    background: var(--color-nursery-green);
    color: #fff;
}

.schedule-btn-primary:hover {
    background: var(--color-puppy-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138,187,111,0.3);
}

.schedule-btn-secondary {
    background: #fff;
    color: var(--color-nursery-green);
    border: 2px solid var(--color-nursery-green);
}

.schedule-btn-secondary:hover {
    background: var(--color-nursery-green);
    color: #fff;
    transform: translateY(-3px);
}

/* Schedule CTA Section */
.schedule-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-footer-bg) 0%, #f0f0f0 100%);
}

.schedule-cta-content {
    text-align: center;
}

.schedule-cta-content h2 {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.schedule-cta-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 35px;
}

.schedule-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.schedule-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: #fff;
    color: #333;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.schedule-cta-btn:hover {
    background: var(--color-nursery-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138,187,111,0.3);
}

.schedule-cta-btn i {
    font-size: 20px;
    color: var(--color-nursery-green);
    transition: color 0.3s ease;
}

.schedule-cta-btn:hover i {
    color: #fff;
}

/* Schedule Page Responsive */
@media (max-width: 991.98px) {
    .schedule-hero {
        padding: 60px 0;
    }

    .schedule-hero-title {
        font-size: 36px;
    }

    .schedule-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .schedule-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-booking-header h2 {
        font-size: 32px;
    }

    .schedule-cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .schedule-hero {
        padding: 50px 0;
    }

    .schedule-hero-icon i {
        font-size: 45px;
    }

    .schedule-hero-title {
        font-size: 28px;
    }

    .schedule-hero-text {
        font-size: 16px;
    }

    .schedule-features {
        padding: 50px 0;
    }

    .schedule-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .schedule-feature-item {
        padding: 30px 25px;
    }

    .schedule-feature-icon {
        width: 65px;
        height: 65px;
    }

    .schedule-feature-icon i {
        font-size: 26px;
    }

    .schedule-info-section {
        padding: 50px 0;
    }

    .schedule-info-card {
        padding: 30px 25px;
    }

    .schedule-card-header h3 {
        font-size: 20px;
    }

    .schedule-booking-section {
        padding: 50px 0;
    }

    .schedule-booking-header h2 {
        font-size: 26px;
    }

    .schedule-booking-embed {
        padding: 25px;
    }

    .schedule-booking-placeholder {
        padding: 40px 25px;
    }

    .schedule-booking-placeholder h3 {
        font-size: 22px;
    }

    .schedule-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .schedule-cta-section {
        padding: 50px 0;
    }

    .schedule-cta-content h2 {
        font-size: 26px;
    }

    .schedule-cta-btn {
        padding: 15px 25px;
        font-size: 16px;
    }
}

/* ================================================
   END SCHEDULE APPOINTMENT PAGE
   ================================================ */

/* Puppies Section */
.pdn-puppies-section {
    padding: 60px 0;
}

.pdn-section-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}

.pdn-puppies-grid {
    margin-bottom: 40px;
}

.pdn-puppy-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pdn-puppy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pdn-puppy-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pdn-puppy-info {
    padding: 15px;
    text-align: center;
}

.pdn-puppy-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.pdn-puppy-name a {
    color: var(--color-nursery-green);
    text-decoration: none;
}

.pdn-puppy-name a:hover {
    color: var(--color-puppy-gold);
}

.pdn-puppy-breed,
.pdn-puppy-gender {
    font-size: 14px;
    color: #666666;
    margin-bottom: 5px;
}

.pdn-puppy-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-nursery-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.pdn-puppy-btn:hover {
    background: var(--color-puppy-gold);
    color: #ffffff;
}

.pdn-see-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-nursery-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pdn-see-all-btn:hover {
    background: var(--color-puppy-gold);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Reviews Section */
.pdn-reviews-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.pdn-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pdn-review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pdn-review-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-nursery-green);
    margin-bottom: 15px;
}

.pdn-review-text {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #58595b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.pdn-review-author {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.pdn-reviews-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-nursery-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pdn-reviews-btn:hover {
    background: var(--color-puppy-gold);
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .pdn-slide-overlay {
        bottom: 10%;
        right: 5%;
    }

    .pdn-book-now-btn img {
        max-width: 120px;
    }

    .pdn-welcome-heading {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .pdn-welcome-section {
        padding: 40px 0;
    }

    .pdn-welcome-sidebar {
        margin-top: 30px;
    }

    .pdn-come-play-title {
        font-size: 28px;
    }

    .pdn-come-play-text {
        font-size: 16px;
    }

    .pdn-slide-overlay {
        bottom: 5%;
        right: 3%;
    }

    .pdn-book-now-btn img {
        max-width: 100px;
    }
}

/* Legacy Front Page Styles */
.hero-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    min-height: 45vh;
    margin-bottom: -2rem;
}

@media (max-width: 767.98px) {
    .front-page-hero {
        overflow: visible;
    }
    .hero-image {
        display: block;
    }
}

/* Style the white overlay box */
.hero-content {
    border-radius: 1.5rem; /* more rounded edges */
    /* Padding handled by Bootstrap utilities p-4 p-md-5 */
}

.front-page-hero .container {
    position: relative;
    z-index: 1;
}

.front-page-hero .paw-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.front-page-hero .paw-background i {
    position: absolute;
    font-size: 6rem;
    color: var(--color-primary-dark-teal);
    opacity: 0.05;
}

.front-page-hero .paw-background i:nth-child(1) {
    top: 10%;
    left: 5%;
    transform: rotate(-20deg);
}

.front-page-hero .paw-background i:nth-child(2) {
    top: 50%;
    right: 10%;
    transform: rotate(15deg);
}

.front-page-hero .paw-background i:nth-child(3) {
    bottom: 5%;
    left: 40%;
    transform: rotate(-10deg);
}
.hero-content h1 {
    color: var(--color-primary-dark-teal);
    font-size: 2rem; /* slightly larger tagline */
}
/* Style the button within the hero */

/* Icon Section styling */
#dreaming-of-you {
    padding-top: 8rem;   /* Increase negative space */
    padding-bottom: 8rem;
}
#dreaming-of-you .icon-item img {
    width: 23rem;
    height: auto;
}
#dreaming-of-you .icon-item p {
    color: var(--color-text); /* Ensure text color is set */
    font-family: var(--font-secondary); /* Use theme heading font */
    font-size: 2rem; /* Larger text for icon captions */
}

/* Featured Pets Section */
#featured-pets {
    background-color: var(--color-light-background);
    /* Padding handled by py-5 utility */
}
#featured-pets .section-title {
    /* Margin handled by mb-5 utility */
    font-size: 3.5rem;
}

/* Layout for updated featured pets section */
.featured-pets-images {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.featured-pets-images .featured-pet-image {
    flex: 1 0 30%;
    max-width: 275px;
}
.featured-pets-images .featured-pet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}
.view-all-pets-link {
    font-weight: bold;
    color: var(--color-link);
    text-transform: uppercase;
}
.view-all-pets-link:hover {
    color: var(--color-link-hover);
}
.view-all-pets-link i {
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .featured-pets-images {
        flex-wrap: nowrap;
    }
}
#featured-pets .card {
    border: none; /* Remove default card border if desired */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#featured-pets .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important; /* Add hover shadow */
}
#featured-pets .card-img-top {
    height: 250px;
    object-fit: cover;
}
#featured-pets .card-title {
    color: var(--color-heading);
    font-family: var(--font-secondary);
    font-weight: bold;
}
/* Button in card */
#featured-pets .card .btn {
    font-size: 0.9rem;
}
/* Button for 'View All Pets' */
#featured-pets .btn-lg {
    transition: background-color 0.3s ease;
}


/* Testimonial Section */
#happy-tails {
    /* Padding handled by py-5 utility */
}
#happy-tails .section-title {
    /* Margin handled by mb-5 utility */
    font-size: 3.5rem;
}

/* Concierge Section */
#concierge-care .section-title {
    font-size: 3.5rem;
}
#happy-tails .fa-quote-left {
    color: var(--color-secondary-light-pink);
}
#happy-tails .blockquote {
    /* Bootstrap handles basic blockquote styling */
}
#happy-tails .blockquote-footer {
    color: var(--color-heading) !important; /* Override Bootstrap default grey */
    font-weight: bold;
    font-size: 1rem; /* Adjust size */
}

#happy-tails {
    position: relative;
    overflow: visible;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#happy-tails .testimonial-decor {
    position: absolute;
    right: 0;
    bottom: -40px; /* Let the graphic extend past the section */
    width: 530px;
    max-width: none;
    z-index: 1; /* Place the image above other elements */
}

/* Spacing between testimonials and concierge section on mobile */
@media (max-width: 767.98px) {
    #happy-tails {
        margin-bottom: 3rem;
    }
}

/* Filter pets button and offcanvas styles */
.pets-filter-toolbar {
    margin-bottom: 1rem;
}

.filter-pets-btn {
    font-weight: 600;
    border-radius: 25px;
    padding: 0.625rem 1.5rem;
    background-color: var(--color-primary-dark-teal);
    color: white;
    border: 2px solid var(--color-primary-dark-teal);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(61, 81, 85, 0.2);
}

.filter-pets-btn:hover {
    background-color: var(--color-primary-light-peach);
    color: var(--color-primary-dark-teal);
    border-color: var(--color-primary-light-peach);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 188, 172, 0.3);
}

.location-dropdown-wrapper {
    position: relative;
}

.location-select {
    min-width: 280px;
    font-weight: 600;
    border-radius: 25px;
    padding: 0.625rem 2.5rem 0.625rem 1.25rem;
    border: 2px solid var(--color-primary-dark-teal);
    color: var(--color-primary-dark-teal);
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233D5155'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(61, 81, 85, 0.15);
    appearance: none;
}

.location-select:hover {
    border-color: var(--color-primary-light-peach);
    box-shadow: 0 4px 12px rgba(247, 188, 172, 0.3);
}

.location-select:focus {
    outline: none;
    border-color: var(--color-primary-light-peach);
    box-shadow: 0 0 0 4px rgba(247, 188, 172, 0.2);
}

.location-select option {
    padding: 0.75rem;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .pets-filter-toolbar {
        flex-direction: column;
        align-items: stretch !important;
    }

    .location-dropdown-wrapper {
        width: 100%;
    }

    .location-select {
        width: 100%;
        min-width: auto;
    }

    .filter-pets-btn {
        width: 100%;
        justify-content: center;
    }
}

.pets-offcanvas {
    background-color: var(--color-background);
    color: var(--color-text);
    width: 280px;
}
.pets-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--color-primary-light-blue-grey);
}
.pets-offcanvas .offcanvas-title {
    font-family: var(--font-secondary);
    color: var(--color-heading);
}

/* Location Filter Widget Styles */
.location-filter-widget {
    padding: 1rem 0;
}

.location-filter-widget .location-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-filter-widget .location-option {
    padding: 0.5rem;
    transition: background-color 0.2s ease;
    border-radius: 8px;
}

.location-filter-widget .location-option:hover {
    background-color: rgba(247, 188, 172, 0.1);
}

.location-filter-widget .form-check-input {
    cursor: pointer;
    border-color: var(--color-primary-dark-teal);
}

.location-filter-widget .form-check-input:checked {
    background-color: var(--color-primary-light-peach);
    border-color: var(--color-primary-light-peach);
}

.location-filter-widget .form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

.location-filter-widget .fa-map-marker-alt {
    color: var(--color-primary-light-peach);
}

.location-filter-widget .clear-location-filter {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.location-filter-widget .clear-location-filter:hover {
    background-color: var(--color-primary-dark-teal);
    color: white;
    border-color: var(--color-primary-dark-teal);
}

.empty-cart-cust{
    display:none !important;
}

/* Home page padding */
.front-page-section {
}
/* Home page testimoial icon */
.fa-quote-left-alt:before, .fa-quote-left:before {
    content: "\f10d";
    color: #58595b !important;
}

/* financing */
.page-id-64 .py-5 {
    padding-bottom: 0 !important;
}

/* PDN Page Header */
.header-title {
    padding: 40px 0 30px;
    background: var(--color-light-green);
    text-align: center;
}

.header-title .page-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.header-title .breadcrumbs {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #58595b;
}

.header-title .breadcrumbs a {
    color: #000000;
    text-decoration: none;
}

.header-title .breadcrumbs a:hover {
    color: var(--color-nursery-green);
}

.header-title .mb-1 {
    margin-bottom: .25rem !important;
    margin-top: 0;
}

.footer-menu {
    font-family: var(--font-primary);
}

.akc-page-cust h2.wp-block-heading {
    position: relative;
}
.akc-page-cust h2.wp-block-heading:before {
    position: absolute;
    content: "";
    width: 80px;
    height: 2px;
    background: var(--color-nursery-green);
    bottom: 0
}
.entry-content img,
.comment-content img {
    border-radius: 25px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}
.entry-content img:hover,
.comment-content img:hover {
    border-radius: 25px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-us-para {
    padding: 40px 40px;
    background: var(--color-light-green);
    border-radius: 20px;
    color: #000000;
}
.apply-online {
    row-gap: 400px;
    background-color: #fff;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: var(--font-primary);
    color: #2d3e40;
    border-radius: 16px;
    border: 2px solid #2d3e40;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}
.apply-online img{
    border-radius: 10px;
}
/* AKC page css start */

.page-id-275 .main-container{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}
.akc-page-cust> .wp-block-group__inner-container,
.page-id-275 .page-header-bar .main-container{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.wp-block-group.akc-page-cust:nth-child(2n) {
    background: #ffd3d2;
    background-image: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
}

.wp-block-group.akc-page-cust {
    padding: 40px 0;
}

.page-id-275 .header-title {
    margin: 0;
}

.page-id-275 main#primary {
    padding: 0 !important;
}
.akc-img img{
    /* transition: transform 0.4s ease, box-shadow 0.4s ease;
      border-radius: 4px;
    border: 1px solid #fbe6eb;
      border-radius: 10px;
      padding: 4px;
      background: white; */
    margin-bottom: 0px !important;
}
.akc-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(219, 158, 158, 0.3); /* soft pink glow */
}
.akc-img {
    margin-bottom: 0px !important;
}
.cols-structure{
    margin-bottom:0px !important;
}
/*AKC page css end*/
/* Financing page css start*/

.financing-cat img {
    /*   transition: transform 0.4s ease, box-shadow 0.4s ease;
      border-radius: 4px;
    border: 1.5px solid #fbe6eb;
      border-radius: 10px;
      padding: 4px;
      background: white; */
}

/* Financing page css end*/
/* .navbar-expand-lg .navbar-toggler{
    display:block !important;
} */

/* .collapse:not(.show) {
    display: none !important;
} */

.testimonial-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.testimonial-swiper {
    position: relative;
    max-width: 700px;
    margin: auto;
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-secondary-light-pink);
}
section#concierge-care {
    padding-top: 64px !important;
}
.fas.fa-star {
    color: #58595b;
    margin-bottom:20px;
}
#menu-header .menu-item {
    margin: 0px 20px;
}
.collapse.navbar-collapse.justify-content-center.new-primary{
    justify-content: center !important;
}
#rmp-container-166 {
    max-width: 100% !important;
}
.form-cust {
    padding: 30px;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.form-cust input,
.form-cust textarea{
    border: 1px solid #bcc9c5 !important;
}
.form-cust textarea{
    min-block-size: 120px !important;
}
.form-cust input#gform_submit_button_2 {
    background: var(--color-nursery-green);
    border-radius: 30px;
    min-width: 150px;
    font-weight: 600;
    font-size: 18px;
}
.form-cust .gform_heading {
    display: none;
}
.contact-cust> .wp-block-columns {
    background: #bcc9c5;
    border-radius: 15px;
    padding: 20px;
    gap: 15px !important;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.custom-online-sec p.has-text-align-center {
    min-height: 90px;
}

.contact-cust> .wp-block-columns a img {border-radius: 0;object-fit: contain !important;margin: 0;}
.contact-cust> .wp-block-columns p{
    margin: 0;
    font-weight: 600;
}
.contact-cust> .wp-block-columns figure{
    margin: 0;
}
.swiper-pagination-bullet-active {
    background: var(--color-nursery-green) !important;
}
/* ------14-07-25--- */

.pet-toggle-cust .entry-content img {
    width: 100%;
    max-width: 250px;
    border-radius: 0;
    box-shadow: none;
}

.pet-toggle-cust #toggleSideBar {
    width: fit-content;
}
.pet-toggle-cust .sideHeader.row {
    align-items: center;
}
.pet-toggle-cust .headerContent {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.pet-toggle-cust .headerContent .search {
    display: flex;
    gap: 10px;
}
.pet-toggle-cust .headerContent .search-wrapper input {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    outline: none;
    padding: 4px;
    font-size: 14px;
}
.pet-toggle-cust .headerContent form {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.pet-toggle-cust .headerContent .profileName {
    display: flex;
    gap: 10px;
}
.pet-toggle-cust .headerContent .search-wrapper {
    gap: 10px;
    align-items: center;
}
.pet-toggle-cust .headerContent i.fas.fa-bell {
    margin-top: 8px;
}
.pet-toggle-cust .content> .tab-content {
    margin-top: 20px;
    padding: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}
.pet-toggle-cust .content table.table.table-striped {
    margin: 0;
}
.pet-toggle-cust .content table.table.table-striped .pet-toggle-pet-row img {
    margin: 0;
}
.pet-toggle-cust .content table.table.table-striped .pet-toggle-pet-row td {
    align-content: center;
}
.pet-toggle-cust .content table.table.table-striped .pet-toggle-pet-row td input {
    border-radius: 5px;
    border: 1px solid #ddd;
}
.pet-toggle-cust .content table.table.table-striped .pet-toggle-pet-row td  .form-switch {
    padding-left: 0;
}
.pet-toggle-cust .content table.table.table-striped th span.ps-1 {
    padding: 0 !important;
}
.content .nav-link {
    color: #000;
}
.content .nav-link.active {
    color: #58595b;
}
.entry-content .wp-block-aab-accordion-item .aagb__accordion_head.aagb_left_icon {
    flex-direction: row;
    background: transparent !important;
}
.entry-content .aagb__accordion_heading.aagb_left_icon.aagb_right_link {
    margin-left: 0 !important;
}
.faqs-first-cust .wp-block-aab-accordion-item.aagb__accordion_container.panel.aagb__accordion_head--keyboard {
    border: none !important;
    border-bottom: 1px solid var(--color-nursery-green) !important;
    border-radius: 0 !important;
}
.faqs-first-cust .aagb__accordion_head.aagb_left_icon,
.faqs-first-cust .aagb__accordion_head.aagb_left_icon h5.aagb__accordion_title {
    color: #58595b !important;
}
#post-367 h2.wp-block-heading {
    background: #bcc9c5;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: 30px !important;
}
.faqs-first-cust .aagb__accordion_head.aagb_left_icon .aagb__icon_dashicons_box .aagb__icon::before {
    color: #58595b !important;
}
.faqs-first-cust .wp-block-aab-accordion-item.aagb__accordion_container.panel.aagb__accordion_head--keyboard.aagb__accordion_active{
    background: #ffffff !important;
    color: #58595b !important;
    border-radius: 10px !important;
}
.faqs-first-cust .aagb__accordion_head.aagb_left_icon.active,
.faqs-first-cust .aagb__accordion_head.aagb_left_icon.active h5.aagb__accordion_title {
    background: var(--color-nursery-green) !important;
    color: #fff !important;
}
.faqs-first-cust .aagb__accordion_head.aagb_left_icon.active .aagb__icon_dashicons_box .aagb__icon::before {
    color: #fff !important;
}
.concierge-service-cust> .wp-block-column {
    align-content: center;
}
div#topbar {
    width: 100%;
    margin: 0;
}
.questions-cust {
    background: #ffffff !important;
}
.about-us-desc{
    background:#ffd6d4;
    border-radius:40px;
    margin:30px 150px;
}
.about-us-desc .wp-block-image,
.about-us-desc .wp-block-image  img{
    margin: 0;
}
.about-us-desc p.has-text-align-center {
    margin: 0;
}
.about-us-desc .col-2-cust {
    width: fit-content !important;
    flex-basis: unset !important;
    flex-grow: unset !important;
}
.about-us-desc .col-1-cust{
    width: calc(100% - 120px);
    flex-basis: unset !important;
    flex-grow: unset !important;
}
/* .about-us-desc{
    padding: 10px 40px;
} */
.contact-cust> .wp-block-columns:first-child {
    max-width: 100%;
    margin-bottom: 0;
}
.cat-dog-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
.cat-dog-image {
    display: flex;
    justify-content: center;
}

/* single product page css start */
form#gform_3 {
    border: 1px solid #ffb7b5;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}
.form-heading {
    padding: 20px;
    background-image: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
    border-radius: 10px 10px 0 0;
    border: 1px solid #ffb7b5;
    border-bottom: none;
}
div#gform_fields_3 {
    gap: 15px !important;
}
form#gform_3 input{
    border: 1px solid #dee2e6;
    box-shadow: none;
}
form#gform_3 textarea{
    border: 1px solid #dee2e6;
    box-shadow: none;
    min-block-size: unset !important;
    max-height: 120px !important;
}
form#gform_3 legend,
form#gform_3 label{
    font-size: 16px;
    font-weight: 700;
}
.pet-inquiry-cust{
    font-size: 14px;
}
input#gform_submit_button_3 {
    min-width: 120px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
}
.product-image .woocommerce-product-gallery {
    float: left;
    width: 100% !important;
}
.puppy-detail {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #ffb7b5;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.pet-info-cust label {
    font-size: 16px;
    font-weight: 500 !important;
}
.pet-inquiry-cust2 {
    font-size:12px;
}
.privacy-cust{
    color:#58595b;
}
.breadcrumb-wrapper a {
    color: #58595b !important
}
.breadcrumb-wrapper .breadcrumb_last {
    color: #000000 !important
}


.wp-block-group.apply-on-cust {
    background: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
    height: 400px;
    padding: 150px 0 0 0;
    width: 100%;
    display: inline-block;
    background-size: cover;
}

.page-id-306 main#primary {
    padding: 0 !important;
}
.page-id-306 main#primary .main-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.financing-cat img {
    width: 100%; transition: all 0.2s ease;margin:0px;
    border-radius: 0 !important;
}
figure.wp-block-image.size-full.financing-cat {
    overflow: hidden;margin:0px;
    transition: all 0.2s ease;
}
.wp-block-columns.custom-finacing_sec {
    gap: 110px;margin:0px;
    padding-right: 120px;
}
.custom-finacing_sec p {
    color: #000;
    font-size: 18px;
    line-height: 30px;
}
/* .wp-block-group.apply-on-cust {
    background: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
    height: 300px;
    padding: 80px 0 0 0;
    width: 100%;
    display: inline-block;
    background-size: cover;
} */
.wp-block-group.apply-on-cust .custom-online-sec {
    padding: 0 15px !important;
    max-width: 1200px;
    margin: 0 auto;
    column-gap: 70px;
}
.minimum-payments {
    text-align: center;
    max-width: 54%;
    margin: auto;
    padding: 100px 0 0px 0;
    font-size: 18px;
    color: #000;
}
.need-help-group{
    background: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
    margin-top: 80px;
    padding: 80px 0 !important;
    margin-bottom: 0 !important;
}

.need-more-section a.wp-block-button__link.has-text-color.has-background.has-link-color.wp-element-button {
    border-color: #58595b;
    border-radius: 9px !important;
    font-weight: 800;
}
.need-more-section {
    padding: 0 15px !important;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}
.need-more-section h2.wp-block-heading {
    text-align: left;
    font-weight: 800;
}
.need-more-section .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    justify-content: right;
}
.page-id-292 main#primary .main-container {
    max-width: 100%;
    padding: 0;
}
.image-left-section img {
    width: 100%;
    border-radius: 0 !important;
    height: 900px;
    object-fit: contain;
}
.page-id-292 .about-us-desc {
    padding: 40px 100px !important;
    margin-left: 0;margin-top:0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
.page-id-292 .wp-block-columns.are-vertically-aligned-top.about-us-cust.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
    max-width: 1200px;
    margin: auto;
    padding-bottom: 50px;
}
.wp-block-columns.are-vertically-aligned-top.about-us-cust.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex p {
    color: #000;
    font-size: 18px;
}
.about-us-desc p.has-text-align-center {
    max-width: 59%;
    color: #000;
    font-size: 18px;
}
.book-appointment-cust {
    background: url('https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg');
    padding: 70px 0 !important;
}
.book-appointment-cust p {
    color: #000;
    font-size: 18px;
}

.book-appointment-cust a.wp-block-button__link.has-text-color.has-background.has-link-color.wp-element-button {
    border-color: #58595b;
    border-radius: 10px;    margin-top: 15px;
}
section#happy-tails {
    background: unset;
    background-image: unset;
    padding-bottom: 0 !important;
    margin-top: 29px;
}
.wp-block-columns.image-left-section {
    margin-bottom: 80px;gap:80px;
}
.testimonial-swiper .testimonial-content {
    border: 2px solid #ffcfcd;
    border-radius: 72px;
}

.testimonial-swiper .swiper-wrapper .swiper-slide {
    padding: 0 60px;
}
.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
    color: #415458;
}
/*=========17-07-25-==end====*/

/*=========18-07-25-==end====*/
.page-id-460 main#primary .main-container {
    max-width: 100%;padding:0px;
}
.category-image-content-main-group .custom-finacing_sec {
    padding-right: 0;
    padding-left: 120px;margin:0px;
}
.page-id-460 .header-title {
    margin-bottom: 0;
}
.category-image-content-main-group .financing-cat img {
    width: 100%;
    transition: all 0.2s ease;
    border-radius: 0 !important;
    height: 450px;margin:0px;
}
.wp-block-group.our-goals.category-image-content-main-group {
    background: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
    padding: 120px 0 0 0 !important;
    height: 300px;
    width: 100%;
    display: inline-block;
    margin-bottom: 240px !important;
}
.wp-block-group.our-goals.category-image-content-main-group .custom-finacing_sec .content-col-section {
    background-color: #fff;
    font-family: var(--font-primary);
    color: #2d3e40;
    border-radius: 16px;
    border: 2px solid #2d3e40;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100%;
    text-align: center;    align-self: self-start;
    padding: 40px 38px;
}
.wp-block-group.our-goals.category-image-content-main-group .are-vertically-aligned-center.custom-finacing_sec {
    padding: 0 15px !important;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: auto auto auto;
}
.wp-block-group.our-goals.category-image-content-main-group .custom-finacing_sec .content-col-section h2.wp-block-heading {
    color: #000;
    font-weight: 900;
    font-family: var(--font-secondary);
}
.wp-block-group.our-goals.category-image-content-main-group .custom-finacing_sec .content-col-section  p {
    max-width: 87%;
    margin: auto;
}
.page-id-460 .wp-block-group.need-help-group {
    margin: 0;
}
.page-id-460 .wp-block-group.need-help-group .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.page-id-460 .wp-block-group.need-help-group h2.wp-block-heading {
    font-weight: 800;
}
.page-id-460 .wp-block-group.need-help-group p {
    color: #000;
    font-size: 18px;
}
.front-page-section .featured-pets-images .featured-pet-image img {
    height: auto;
}
.entry-content img:hover, .comment-content img:hover {
    border-radius: unset !important;
    box-shadow: unset  !important;
}
.page-id-460  .custom-finacing_sec .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
    justify-content: center;
    padding-top: 20px !important;
}
.page-id-306 .wp-block-columns.custom-finacing_sec {
    padding-bottom: 80px;
}
.page-id-460 .custom-finacing_sec .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex a.wp-block-button__link.wp-element-button {
    background: var(--color-nursery-green);
    border-radius: 10px;
}
.common-btn a:hover {
    background-color: #646862 !important;
    color: #ffffff;
}
/* .gender-male{
    background-color: #93BDB4 !important;
}
.gender-female{
    background-color: #F7BCAC !important;

} */
/*=========18-07-25-==end====*/
.btn-gold:hover, .btn-gold:focus {
    color: #ffffff !important;
}


@media (max-width: 1599px) {

    #happy-tails .testimonial-decor {
        width: 420px;
        bottom: -40px;
    }
    .about-us-desc p.has-text-align-center {
        max-width: 79%;

    }
}

@media (max-width: 1366px) {
    .about-us-desc {

        margin: 30px 70px;
    }
    .about-us-desc p.has-text-align-center {
        max-width: 78%;
    }
    .wp-block-columns.image-left-section {
        gap: 50px;
    }
    .page-id-292 .about-us-desc {
        padding: 25px 40px !important;

    }
    .page-id-292 .image-left-section img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 1299px) {

    #happy-tails .testimonial-decor {
        width: 340px;
        bottom: -75px;
    }

}
@media (max-width: 1299px) {
    .wp-block-columns.custom-finacing_sec {
        gap: 70px;
        padding-right: 20px;
    }
    .wp-block-columns.custom-finacing_sec.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
        padding-right: 0;
    }
}


@media (max-width: 1024px) {
    .wp-block-group.image-content-main-group .wp-block-columns.custom-finacing_sec {
        flex-direction: column;
        padding: 0 15px;
    }
    .wp-block-group.fetured-image-shortcode {
        padding-top: 60px !important;
    }
    .category-image-content-main-group .custom-finacing_sec {
        padding-left: 30px;

    }
    .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained .wp-block-columns.custom-finacing_sec.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
        padding-right: 15px;padding-bottom:60px;
    }
    .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained .wp-block-columns.custom-finacing_sec.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex p {
        text-align: center;
    }
    #happy-tails .testimonial-decor {
        width: 250px;
        right: 0;
        bottom: -62px;
    }
    .about-us-desc p.has-text-align-center {
        max-width: 94%;
    }
    .about-us-desc {
        margin: 30px 40px;
    }
    .page-id-292 .wp-block-columns.image-left-section {
        gap: 50px;
        flex-direction: column;
        padding: 0 15px;
    }
    .page-id-292 .about-us-desc {
        margin-right: 0;
    }
}
@media (max-width: 881px) {
    .wp-block-columns.custom-finacing_sec {
        gap: 30px;
        padding-right: 20px;
        padding-left: 20px;
    }
    figure.wp-block-image.size-full.financing-cat {
        margin: 0;
    }
    .minimum-payments {
        max-width: 97%;
        padding: 60px 0 0px 0;
    }
    .need-more-section h2.wp-block-heading {
        text-align: center;

    }
    .need-more-section .wp-block-buttons.is-layout-flex.wp-block-buttons-is-layout-flex {
        justify-content: center;
    }
    .custom-online-sec p.has-text-align-center {
        min-height: auto;
    }
    .page-id-292 .wp-block-columns.are-vertically-aligned-top.about-us-cust.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex {
        padding: 0 15px 40px 15px;
    }
    .wp-block-columns.image-left-section {
        gap: 40px;
        padding: 15px;
    }
    .image-left-section img {
        height: auto;
        margin: 0;
    }
    .page-id-292 .about-us-desc {
        padding: 40px 40px !important;
        margin-left: 0;margin-right:0px;

        display: flex;
        flex-wrap: nowrap !important;
    }
    .about-us-desc p.has-text-align-center {
        max-width: 100%;
        font-size: 16px;
    }

    .about-us-desc .col-2-cust figure {
        margin-right: 0;
    }
    .wp-block-columns.image-left-section {

        margin-bottom: 50px;
    }

}
@media (max-width: 781px) {
    .page-id-460 .wp-block-group.our-goals.category-image-content-main-group{margin-bottom:60px !important;}
    .wp-block-group.our-goals.category-image-content-main-group {
        height: auto;
        padding: 60px 0 !important;
    }
    .wp-block-group.category-image-content-main-group {
        padding: 60px 0 !important;
    }
    .page-id-306 .wp-block-columns.custom-finacing_sec {
        padding-bottom: 60px;
    }
    .wp-block-group.our-goals.category-image-content-main-group .are-vertically-aligned-center.custom-finacing_sec {
        grid-template-columns: auto;
    }
    .wp-block-group.apply-on-cust {
        background: url(https://puppydognursery.kinsta.cloud/wp-content/uploads/2025/06/clouds.jpg);
        height: auto;
        padding: 60px 0 60px 0;

    }
    #featured-pets .section-title {
        font-size: 40px;
    }
    .need-help-group {
        padding: 60px 0 !important;
    }
    .page-id-306 .wp-block-group.apply-on-cust .custom-online-sec {
        display: flex;
        flex-wrap: nowrap !important;
        gap: 30px;
    }
}
@media (max-width: 767.98px) {
    .about-us-desc .col-1-cust {
        width: 100%;

    }
    .wp-block-columns.are-vertically-aligned-top.about-us-cust.is-layout-flex.wp-container-core-columns-is-layout-9d6595d7.wp-block-columns-is-layout-flex p {
        font-size: 16px;
        margin: 0;
    }
    .book-appointment-cust {
        padding: 50px 15px !important;
    }
    section#happy-tails .container {
        max-width: 100%;
    }
    footer#colophon .container {
        max-width: 100%;
    }
    #happy-tails .section-title{font-size:40px;}
    .testimonial-swiper {
        max-width: 100% !important;
    }
    .page-id-292 .about-us-desc {
        padding: 30px 30px;
        flex-direction: column-reverse;gap:10px;
    }

    .contact-cust> .wp-block-columns {
        max-width: 100%;
    }
    .about-us-desc {
        padding: 20px;
        border-radius: 20px;
    }
    .about-us-desc {
        margin: 0 0 20px;
    }
    .header-top-button {
        align-items: flex-start!important;
        text-align: right;
    }
    #happy-tails .testimonial-decor {
        width: 200px;
        right: 0;
        bottom: -62px;
    }
    #happy-tails .swiper-button-next:after,
    #happy-tails .swiper-button-prev:after {
        font-size: 30px;
    }
    .about-us-desc .col-2-cust figure img {
        width: 80px !important;
        height: 80px !important;
        object-fit: cover;
    }
    #happy-tails .blockquote {
        font-size: 16px !important;
    }
    .book-appointment-cust p {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    #dreaming-of-you .icon-item img {
        max-width: 13rem;

    }
}


@media screen and (max-width: 2560px) and (min-width: 1024px) {
    #rmp-container-166 {
        width: 25%;
    }
}

@media (min-width: 992px){
    /*     .header-top-button {
        padding-right: 50px;
    } */

    button#rmp_menu_trigger-166 {
        top: 30px !important;
    }
}
/* @media (min-width: 768px) and (max-width: 991px) {
    .header-top-button {
    padding-right: 50px;
}
} */
@media (max-width: 575px){
    .page-id-306 .wp-block-group.apply-on-cust .custom-online-sec {
        flex-wrap: wrap !important;
    }
    .testimonial-swiper .swiper-wrapper .swiper-slide {
        padding: 0 0px;
    }
    #happy-tails .section-title {
        font-size: 30px;
        margin-bottom: 30px !important;
    }
    .headerContent {
        flex-direction: column;
    }
    .minimum-payments {
        font-size: 16px;
        line-height: 28px;
    }.need-more-section{gap:10px;}
    .custom-finacing_sec p {

        font-size: 16px;
        line-height: 28px;
    }
    .pet-toggle-cust .headerContent .search {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .pet-toggle-cust .headerContent form {
        width: 100%;
    }

}
@media (max-width: 575px) {
    .wp-block-group.our-goals.category-image-content-main-group .custom-finacing_sec .content-col-section {
        padding: 30px 25px;
    }
    .featured-pets-images .featured-pet-image {
        flex: 100%;
        max-width: 100%;margin:0px !important;
    }
    .pet-toggle-cust .headerContent {
        display: flex;
        width: 100%;
        justify-content: space-between;
        display: block;
    }}
/* @media (max-width: 1300px) {
#happy-tails .fa-quote-left-alt:before,
#happy-tails .fa-quote-left:before,
#happy-tails .fas.fa-star,
#happy-tails .testimonial-content p,
#happy-tails .blockquote-footer{
    color: #fff !important;
    text-shadow: 2px 2px 2px #000000;
}
} */

/* nav.navbar.navbar-expand-lg.main-navbar.bg-white.shadow-sm
 {
    display: none;
} */



h5.widget-title img {
    max-width: 100%;
}
button#rmp_menu_trigger-166 {
    left: 5%;
    transition: left 0.3s ease-in-out;
}

button#rmp_menu_trigger-166.is-active {
    left: 22%;
}
.site-branding {
    padding-left: 5%;
}
@media (max-width: 1023px){
    button#rmp_menu_trigger-166.is-active {
        left: 90%;
    }
}
.rounded {
    border-radius: 16px !important;
}

.wp-block-group.our-goals.category-image-content-main-group .custom-finacing_sec .content-col-section h2.wp-block-heading {
    color: #58595b !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    font-family: var(--font-secondary) !important;
}
.wp-block-group.our-goals.category-image-content-main-group .custom-finacing_sec .content-col-section {
    font-family: var(--font-primary) !important;
    color: #2d3e40 !important;
}
.custom-finacing_sec p{
    color: #2d3e40 !important;
}

/* --- General & Layout --- */
.product-page-wrapper { padding-top: 1.5rem !important; }
.woocommerce-breadcrumb { font-size: 0.875rem !important; padding-bottom: 0px !important; margin-bottom: 1rem !important; margin-top: 0px !important; }

/* Apply theme fonts */
body .product-primary-info h1.product_title {
    font-family: var(--font-secondary) !important;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
    color: var(--color-secondary-light-pink);
}

/* Product details styling with white background */
.product-details-box {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-details-box h4 {
    color: var(--color-secondary-light-pink);
    font-family: var(--font-secondary);
}

.product-primary-info .short-details { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.product-primary-info .short-details li { margin-bottom: 0.5rem; font-size: 1rem; display: flex; align-items: center; font-family: var(--font-primary); }
.product-primary-info .short-details li i { color: var(--color-secondary-light-pink); margin-right: 0.75rem; width: 20px; text-align: center; flex-shrink: 0; }
.product-primary-info .short-details li strong { font-weight: 700 !important; color: var(--color-heading); }

.product-primary-info .breed-info {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
}
.product-primary-info .ref-id {
    font-size: 0.9rem;
    color: var(--color-text);
    display: block;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

/* Detail list styling with theme colors */
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 0.95rem;
    font-family: var(--font-primary);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list .detail-label { font-weight: 600; color: var(--color-heading); margin-right: 1rem; flex-shrink: 0; }
.detail-list .detail-label i { width: 1.2em; text-align: center; color: var(--color-secondary-light-pink); }
.detail-list .detail-value { color: var(--color-text); text-align: right; flex-grow: 1; word-break: break-word; }

/* Parent info with theme colors */
.parent-info .card {
    border: 1px solid var(--color-primary-light-blue-grey);
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.parent-info img.rounded-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 3px solid var(--color-secondary-light-pink);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.parent-info h5 {
    font-weight: 700 !important;
    font-size: 1.25rem;
    font-family: var(--font-secondary);
    color: var(--color-secondary-light-pink);
}
.parent-info p {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
    font-family: var(--font-primary);
}
.parent-info p strong { color: var(--color-heading); font-weight: 700 !important; }

/* --- Product Gallery & Badges --- */
.product-gallery { position: relative; border: 1px solid #dee2e6; border-radius: 0.5rem; overflow: hidden; }
.product-gallery .carousel-item { aspect-ratio: 1 / 1; background-color: #f8f9fa; }
.product-gallery .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .carousel-control-prev,
.product-gallery .carousel-control-next {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    opacity: 0.9;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.product-gallery .carousel-control-prev:hover,
.product-gallery .carousel-control-next:hover {
    opacity: 1;
}
.product-gallery .carousel-control-prev { left: 1rem; }
.product-gallery .carousel-control-next { right: 1rem; }
.product-gallery .carousel-indicators { bottom: 10px; z-index: 6; }
.product-gallery .carousel-indicators button {
    background-color: #dee2e6;
}
.product-gallery .carousel-indicators button.active {
    background-color: var(--color-secondary-light-pink);
}

/* Status badges with theme colors */
.product-gallery .badge-base {
    position: absolute;
    top: 1rem;
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 0.25rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    z-index: 5;
}
.product-gallery .badge-status {
    left: 1rem;
    background-color: var(--color-primary-dark-grey);
}
.product-gallery .badge-coming-soon {
    right: 1rem;
    background-color: var(--color-secondary-light-pink);
    color: var(--color-primary-dark-teal);
    text-decoration: none;
}
.product-gallery .badge-coming-soon:hover {
    background-color: var(--color-secondary-dark-pink);
    color: var(--color-primary-dark-teal);
}
.product-gallery .badge-status.status-sold { background-color: var(--color-secondary-dark-maroon); }
.product-gallery .badge-status.status-on-hold { background-color: var(--color-primary-light-yellow); color: var(--color-primary-dark-teal); }
.product-gallery .badge-status.status-coming-soon { background-color: var(--color-secondary-light-pink); color: var(--color-primary-dark-teal); }

/* --- Action Buttons --- */
.action-buttons .btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 15px;
}

.gallery-action-buttons {
    margin-top: 1.5rem;
}

/* Finance and video icons */
.product-primary-info .finance-video-icons a {
    color: var(--color-secondary-light-pink);
    text-decoration: none;
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
    font-family: var(--font-primary);
}
.product-primary-info .finance-video-icons a:hover { color: var(--color-secondary-dark-pink); }
.product-primary-info .finance-video-icons .finance-btn i { font-size: 1.5rem; margin-right: 0.5rem; color: var(--color-secondary-light-pink); }
.product-primary-info .finance-video-icons .youtube-btn i { font-size: 1.5rem; margin-right: 0.5rem; color: var(--color-secondary-light-pink); }

/* Info badges */
.product-primary-info .info-badges img { height: 30px; width: auto; vertical-align: middle; }

/* --- Tabs with theme colors --- */
#product-tab { border-bottom: 1px solid #dee2e6; }
#product-tab .nav-link {
    color: var(--color-text);
    font-weight: 500;
    background-color: white;
    border: 1px solid #dee2e6;
    border-bottom-color: transparent;
    transition: all 0.2s ease;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    margin-right: 2px;
    margin-bottom: -1px;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-primary);
}
#product-tab .nav-link:hover {
    color: var(--color-secondary-light-pink);
    background-color: #f8f9fa;
    border-color: #dee2e6 #dee2e6 transparent;
}
#product-tab .nav-link.active {
    color: white !important;
    font-weight: 600 !important;
    background-color: var(--color-secondary-light-pink) !important;
    border-color: var(--color-secondary-light-pink) var(--color-secondary-light-pink) var(--color-secondary-light-pink) !important;
}
#nav-tabContent {
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 0.25rem 0.25rem;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
}
#nav-tabContent .tab-pane { padding: 2rem; }

/* All tab headings pink */
.tab-pane h4,
.tab-pane h5 {
    color: var(--color-secondary-light-pink) !important;
    font-family: var(--font-secondary);
}

/* --- Breed Info Tab Specific Styles --- */
#nav-breedinfo h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem !important;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: var(--color-secondary-light-pink);
}
#nav-breedinfo h5 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: var(--color-secondary-light-pink);
}

/* Carousel within Breed Info */
#nav-breedinfo .carousel-column-container {
    height: 350px;
    margin-bottom: 1rem;
    position: relative;
    background-color: #ffffff;
    border: 1px solid var(--color-primary-light-blue-grey);
    border-radius: 0.5rem;
}
#nav-breedinfo #petKbImageCarousel, #nav-breedinfo #petKbVideoCarousel { height: 100%; overflow: hidden; position: relative; }
#nav-breedinfo .carousel-inner { height: 100%; }
#nav-breedinfo .carousel-item { height: 100%; text-align: center; display: flex; align-items: center; justify-content: center; }
#nav-breedinfo #petKbImageCarousel .carousel-item img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; margin: 0 auto; }
#nav-breedinfo #petKbVideoCarousel .carousel-item iframe { width: 100%; height: 100%; border: 0; }
#nav-breedinfo .carousel-control-prev,
#nav-breedinfo .carousel-control-next {
    background-color: var(--color-primary-light-blue-grey);
    width: 8%;
    opacity: 0.7;
    transition: opacity 0.15s ease;
    border-radius: 0;
}
#nav-breedinfo .carousel-control-prev:hover,
#nav-breedinfo .carousel-control-next:hover {
    opacity: 0.9;
    background-color: var(--color-secondary-light-pink);
}
#nav-breedinfo .media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark-grey);
    text-align: center;
    font-style: italic;
    padding: 1rem;
}

/* Stats Icons within Breed Info */
#nav-breedinfo .stat-icon { color: var(--color-secondary-light-pink); }
#nav-breedinfo .stat-box {
    background-color: #ffffff;
    border: 1px solid var(--color-primary-light-blue-grey);
    border-radius: 0.5rem;
    padding: 1rem;
    height: 100%;
    transition: transform 0.2s ease;
}
#nav-breedinfo .stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Color Swatches within Breed Info */
#nav-breedinfo .color-swatch {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    margin-right: 5px;
    vertical-align: middle;
}
#nav-breedinfo .color-label {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    margin-bottom: 8px;
}

/* Traits Badge within Breed Info */
#nav-breedinfo .badge-trait {
    background-color: var(--color-secondary-light-pink);
    color: var(--color-primary-dark-teal);
    font-size: 0.9em;
    padding: 0.4em 0.7em;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    border-radius: 0.5rem;
    border: 1px solid var(--color-secondary-dark-pink);
}

/* Characteristics Level Bar within Breed Info */
#nav-breedinfo .level-bar { display: flex; align-items: center; width: 100%; max-width: 200px; }
#nav-breedinfo .level-segment {
    flex-grow: 1;
    height: 10px;
    margin-right: 2px;
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 2px;
}
#nav-breedinfo .level-segment.active {
    background-color: var(--color-secondary-light-pink);
    border-color: var(--color-secondary-light-pink);
}
#nav-breedinfo .characteristic-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    border: 1px solid var(--color-primary-light-blue-grey);
}

/* Accordion within Breed Info */
#nav-breedinfo .accordion { margin-bottom: 1.5rem; }
#nav-breedinfo .accordion-item {
    background-color: white;
    border: 1px solid #dee2e6;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
}
#nav-breedinfo .accordion-button {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-family: var(--font-primary);
    border-bottom: 1px solid var(--color-primary-light-blue-grey);
}
#nav-breedinfo .accordion-button:not(.collapsed) {
    background-color: var(--color-secondary-light-pink);
    color: white;
    box-shadow: none;
}
#nav-breedinfo .accordion-button::after { display: none; }
#nav-breedinfo .accordion-button i.bi {
    color: var(--color-secondary-light-pink);
    margin-right: 0.75rem;
    transition: transform 0.3s ease-in-out;
    transform: rotate(0deg);
}
#nav-breedinfo .accordion-button:not(.collapsed) i.bi {
    transform: rotate(90deg);
    color: white;
}
#nav-breedinfo .accordion-button h5,
#nav-breedinfo .accordion-button span {
    margin: 0;
    font-size: 1rem;
    flex-grow: 1;
    font-weight: bold;
}
#nav-breedinfo .accordion-body {
    background-color: white;
    color: var(--color-text);
    padding: 1.25rem;
    font-family: var(--font-primary);
}
#nav-breedinfo .accordion-body p:last-child { margin-bottom: 0; }

/* Contact tab form styling */
#nav-contact {
    background-color: #ffffff;
}

/* --- Related Products Section --- */
.related-products-wrapper {
    background-color: var(--color-secondary-light-pink);
    background-image: url(/wp-content/uploads/2025/06/clouds.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 5rem 0;
    margin-top: 5rem;
    margin-bottom: -1.5rem; /* Offset parent container padding */
}

.related-products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.related-products-section h2 {
    color: var(--color-primary-dark-teal);
    font-family: var(--font-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

/* --- Puppy Dog Nursery Difference Section --- */
.puppy-dog-nursery-difference-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-top: 0;
}

.puppy-dog-nursery-difference-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.puppy-dog-nursery-difference-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: #41545f;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.puppy-dog-nursery-difference-content h2 i {
    color: #41545f;
    margin-right: 1rem;
    font-size: 2.5rem;
}

/* --- Section Title & Tab Styles --- */
.product-page-wrapper h2,
.product-page-wrapper h4,
.product-page-wrapper h5 {
    color: #41545e;
}

#product-tab .nav-link {
    background-color: #41545e;
    color: #fff;
    border-color: #41545e;
}

#product-tab .nav-link.active {
    background-color: #41545e;
    color: #fff;
    border-color: #41545e;
}

/* --- Responsive Design Adjustments --- */
@media (max-width: 991.98px) {
    .product-details-box {
        margin-top: 1.5rem;
    }
    .related-products-wrapper {
        padding: 4rem 0;
        margin-top: 4rem;
    }
    .puppy-dog-nursery-difference-section {
        padding: 3rem 0;
    }
    .puppy-dog-nursery-difference-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .product-page-wrapper { padding-top: 0.75rem !important; }
    #product-tab > .nav-link { font-size: 0.875rem; padding: 0.6rem 0.8rem; }
    .product-primary-info .short-details li { font-size: 0.95rem; }
    .action-buttons .row > div { margin-bottom: 0.5rem; }
    .action-buttons .btn { width: 100%; }
    #nav-breedinfo .row.row-cols-lg-4 > .col { flex: 0 0 auto; width: 50%; }
    .related-products-wrapper {
        padding: 3rem 0;
        margin-top: 3rem;
    }
    .puppy-dog-nursery-difference-section {
        padding: 2.5rem 0;
    }
    .puppy-dog-nursery-difference-content h2 {
        font-size: 1.5rem;
    }
    .puppy-dog-nursery-difference-content h2 i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #product-tab > .nav-link { font-size: 0.8rem; padding: 0.5rem 0.6rem; }
    .product-primary-info h1 { font-size: 2rem; }
    .product-primary-info .breed-info { font-size: 1.1rem; }
    #nav-breedinfo .row.row-cols-lg-4 > .col { width: 100%; }
    .puppy-dog-nursery-difference-content h2 {
        font-size: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    .puppy-dog-nursery-difference-content h2 i {
        margin-bottom: 0.5rem;
    }
}

/* Available Puppies Slider */
.available-puppy-card { overflow: hidden; border-radius: .5rem; }
.available-puppy-card img { border-radius: .5rem; transition: transform .3s; }
.available-puppy-card:hover img { transform: scale(1.05); }
.available-puppy-info { background: rgba(0,0,0,0.6); color: #fff; opacity: 0; transition: opacity .3s; }
.available-puppy-card:hover .available-puppy-info { opacity: 1; }
.available-puppies-swiper .swiper-button-next,
.available-puppies-swiper .swiper-button-prev { color: var(--color-primary-dark-teal); }

/* Canine Care Certified Section */
.canine-care-certified .section-title { color: var(--color-primary-dark-teal); }

/* -------------------------------------------------- */
/*  New design styles for header, front page and footer
    Based on updated design specifications             */
/* -------------------------------------------------- */

/* Header */
.cssHeader {
    background: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0 40px;
}
.cssHeader .top-header-bar {
    background: transparent;
}
.cssHeader .site-branding img {
    height: 20px;
}
.cssHeader .navbar-nav-horizontal li a {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    text-transform: none;
    letter-spacing: 0.5px;
    padding: 0 20px;
    display: inline-block;
    border-bottom: 2px solid transparent;
}
.cssHeader .navbar-nav-horizontal li a:hover {
    color: #00BCD4;
}
.cssHeader .navbar-nav-horizontal li.current-menu-item > a {
    border-bottom-color: #00BCD4;
}
.cssHeader .mobile-menu-toggle {
    display: none;
    color: #333333;
    font-size: 24px;
    border: none !important;
}


/* Available Puppies */
#available-puppies {
    background: #F7F7F7;
    padding: 80px 0;
    text-align: center;
}
#available-puppies .section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #585855;
}
.available-puppies-swiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    margin: 10px;
}
.available-puppies-swiper .swiper-slide .pet-card {
    height: 100%;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}
.available-puppies-swiper .swiper-slide .pet-card .card-body {
    flex-grow: 1;
}
.available-puppies-swiper .swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}
.available-puppies-swiper .swiper-slide img:hover {
    transform: none;
}
.available-puppies-swiper .swiper-slide .pet-card:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Mobile horizontal scroll for carousel */
@media (max-width: 767px) {
    #available-puppies {
        overflow: visible !important;
    }

    #available-puppies .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        overflow: visible !important;
    }

    .available-puppies-swiper {
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: auto;
        scrollbar-color: var(--color-primary-dark-teal) #f0f0f0;
        width: 100% !important;
        max-width: 100vw;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 !important;
        position: relative;
    }

    .available-puppies-swiper::-webkit-scrollbar {
        height: 10px;
        -webkit-appearance: none;
    }

    .available-puppies-swiper::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .available-puppies-swiper::-webkit-scrollbar-thumb {
        background: var(--color-primary-dark-teal);
        border-radius: 10px;
    }

    .available-puppies-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        transform: none !important;
        transition: none !important;
        width: auto !important;
        height: auto !important;
        position: relative !important;
        left: 0 !important;
    }

    .available-puppies-swiper .swiper-slide {
        flex-shrink: 0 !important;
        width: 280px !important;
        height: auto !important;
        margin-right: 15px !important;
        position: relative !important;
        transform: none !important;
    }

    .available-puppies-swiper .swiper-slide:last-child {
        margin-right: 15px !important;
        padding-right: 15px;
    }

    .available-puppies-swiper .swiper-button-next,
    .available-puppies-swiper .swiper-button-prev {
        display: none !important;
    }

    /* Ensure section doesn't clip overflow */
    #available-puppies {
        overflow: visible !important;
    }
}

.see-all-puppies {
    font-size: 16px;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    display: inline-block;
    transition: all 0.3s;
}
.see-all-puppies:hover {
    background: #00ACC1;
    color: #FFFFFF;
}

/* Canine Care Certified */
.canine-care-certified {
    background: #FFFFFF;
    padding: 100px 0;
}
.canine-care-certified h2 {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 25px;
}
.canine-care-certified .text-muted {
    font-size: 18px;
    color: #777777 !important;
    font-style: italic;
    margin-bottom: 20px;
}
.canine-care-certified p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    text-align: justify;
}
.canine-care-certified .btn-primary {
    font-size: 15px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-transform: none;
}
.canine-care-certified img {
    width: 430px;
    margin: 0 auto;
}

/* Our Guarantee */
#our-guarantee {
    background: #FFFFFF;
    padding: 90px 0;
}
#our-guarantee h2 {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 600;
    color: #585855;
    text-align: center;
    margin-bottom: 20px;
}
#our-guarantee p span {
    font-size: 18px;
    color: #777777;
    margin-bottom: 60px;
}
#our-guarantee .primary1-bold {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}
#our-guarantee p {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
}
#our-guarantee .theme-primary-btn {
    font-size: 15px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 15px;
    margin-top: 40px;
}

/* Reviews Section */
#reviews {
    padding: 0px;
}
#reviews .carous-title-5007 {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #585855;
}
#reviews .carousel-item-box {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    min-height: 200px;
}
#reviews .carousel-item-box-desc-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}
#reviews .carousel-item-box-desc-auth {
    font-size: 14px;
    color: #999999;
    margin-top: 15px;
}
#reviews .carousel-item-box-desc-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    font-style: italic;
}
#reviews .theme-primary-btn {
    font-size: 15px;
    font-weight: 600;
    padding: 13px 35px;
    border-radius: 15px;
    margin-top: 40px;
}

/* Google Reviews Section */
.google-reviews {
    background: #FFFFFF;
    padding: 80px 0;
}
.google-reviews h2 {
    font-family: var(--font-secondary);
    font-size: 38px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin-bottom: 50px;
}
.google-review-card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}
.google-review-card .google-logo {
    height: 35px;
    margin-bottom: 15px;
}
.google-review-card .star-rating {
    color: #FBBC05;
    font-size: 20px;
    margin-bottom: 10px;
}
.google-review-card .rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}
.google-review-card .review-count {
    font-size: 14px;
    color: #999999;
    margin-top: 5px;
}
.google-review-card .read-more {
    color: #00BCD4;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 15px;
    display: inline-block;
}

/* Footer */
.cssFooter {
    background: var(--color-footer-bg);
    color: #000000;
    padding: 60px 0 0 0;
}
.cssFooter .footer-title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 25px;
    text-transform: none;
}
.cssFooter .footer-contact-list,
.cssFooter .footer-hours-list,
.cssFooter .footer-menu,
.cssFooter .footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cssFooter .footer-contact-list li,
.cssFooter .footer-hours-list li,
.cssFooter .footer-menu li a {
    font-size: 15px;
    line-height: 1.8;
    color: #FFFFFF;
}
.cssFooter a {
    color: #FFFFFF;
    text-decoration: none;
}
.cssFooter a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}
.cssFooter .footer-bottom {
    background: var(--color-footer-bg);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.cssFooter .footer-bottom p,
.cssFooter .footer-bottom a {
    font-size: 14px;
    color: #FFFFFF;
    text-align: left;
}

.btn-flex {
    gap: 15px;
}

.infofirst-img {
    border-radius: 50%;
    border: 4px solid var(--color-footer-bg);
    object-fit: cover;
}

@media (min-width: 768px) {
    .infofirst-img {
        margin-right: 30px;
    }
}

.cssFooter .footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .cssFooter .logo-section,
    .cssFooter .contact-section,
    .cssFooter .hours-section,
    .cssFooter .links-section {
        text-align: center;
    }
    .cssFooter .footer-bottom p,
    .cssFooter .footer-bottom a {
        text-align: center;
    }
    .cssFooter .footer-bottom-links {
        justify-content: center;
    }
}

/* Quote bubble */
.quote {
    position: relative;
    background: var(--color-secondary-light-pink);
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-style: italic;
    margin: 1rem 0;
}

.quote::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 2rem;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--color-secondary-light-pink) transparent;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .cssHeader { padding: 0 30px; }
    #available-puppies .section-title,
    #reviews .carous-title-5007,
    #our-guarantee h2,
    .google-reviews h2 { font-size: 34px; }
}
@media (max-width: 767px) {
    .cssHeader { padding: 0 20px; }
    .cssHeader .navbar-horizontal-menu { display: none; }
    .cssHeader .mobile-menu-toggle { display: block; }
    #available-puppies .section-title,
    #reviews .carous-title-5007,
    #our-guarantee h2,
    .google-reviews h2 { font-size: 28px; }
    .see-all-puppies,
    .theme-primary-btn,
    #our-guarantee .theme-primary-btn,
    #reviews .theme-primary-btn { width: 100%; }
    .available-puppies-swiper .swiper-slide .pet-card { min-width: 260px; }
    .available-puppies-swiper .swiper-slide img { width: 100%; height: 200px; object-fit: cover; }
}

.fa-phone {
    margin-right: 10px;
}

/* Modal Fixes - Ensure modals appear above backdrop and are scrollable */
/* Fix z-index stacking - modals must be above everything */
.modal-backdrop {
    z-index: 99998 !important;
    position: fixed !important;
}

.modal {
    z-index: 99999 !important;
    position: fixed !important;
}

.modal.show {
    display: block !important;
    z-index: 99999 !important;
}

.modal-dialog {
    z-index: 100000 !important;
    position: relative !important;
    max-height: 90vh;
    margin: 1.75rem auto;
}

.modal-content {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative !important;
    z-index: 100001 !important;
    background: #fff !important;
}

.modal-body {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(90vh - 120px);
    -webkit-overflow-scrolling: touch;
}

.modal-header {
    flex-shrink: 0;
    background: #fff !important;
    position: relative !important;
    z-index: 100002 !important;
}

/* Prevent stacking context issues on mobile where swiper is not used */
@media (max-width: 767px) {
    .available-puppies-swiper,
    .available-puppies-swiper *,
    .swiper-wrapper,
    .swiper-slide {
        transform: none !important;
        will-change: auto !important;
    }
}

/* Gravity Forms inside modal */
.modal-body .gform_wrapper {
    margin: 0 !important;
}

.modal-body .gform_wrapper form {
    margin: 0 !important;
}

.modal-body .gform_footer {
    padding: 1rem 0 0.5rem 0 !important;
    margin: 0 !important;
}

/* Mobile modal adjustments */
@media (max-width: 767px) {
    .modal-dialog {
        margin: 0.5rem;
        max-height: 95vh;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-body {
        max-height: calc(95vh - 100px);
        padding: 1rem;
    }

    /* Ensure Gravity Forms fields are mobile-friendly in modal */
    .modal-body .gform_wrapper input[type="text"],
    .modal-body .gform_wrapper input[type="email"],
    .modal-body .gform_wrapper input[type="tel"],
    .modal-body .gform_wrapper textarea,
    .modal-body .gform_wrapper select {
        font-size: 16px !important; /* Prevents iOS zoom */
    }
}



/* ================================
   LOAD MORE BUTTON STYLES
   ================================ */
.load-more-wrapper {
    padding: 3rem 0;
    animation: fadeIn 0.3s ease-in;
}

.load-more-btn {
    background-color: var(--color-primary-dark-teal) !important;
    border-color: var(--color-primary-dark-teal) !important;
    color: white !important;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.load-more-btn:hover:not(:disabled) {
    background-color: var(--color-primary-dark-grey) !important;
    border-color: var(--color-primary-dark-grey) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.load-more-wrapper p {
    color: var(--color-primary-dark-grey);
    font-size: 0.95rem;
}

.load-more-end {
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid var(--color-primary-light-blue-grey);
    margin-top: 2rem;
}

.load-more-end p {
    color: var(--color-primary-dark-grey);
    font-size: 1.1rem;
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SINGLE BLOG POST STYLES
======================================== */

/* Single Post Wrapper */
.single-post-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Post Header */
.single-post-article .post-header {
    padding: 2rem 2rem 0;
}

.single-post-article .post-featured-image {
    margin: -2rem -2rem 2rem;
}

.single-post-article .post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

/* Post Meta Information */
.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-primary-dark-grey);
    background: var(--color-light-background);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.post-meta-info i {
    color: var(--color-primary-dark-teal);
    margin-right: 0.5rem;
}

.post-reading-time {
    background: var(--color-primary-light-yellow);
    color: var(--color-primary-dark-teal);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Post Content */
.single-post-article .post-content {
    padding: 0 2rem 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-primary-dark-grey);
}

.single-post-article .post-content h1,
.single-post-article .post-content h2,
.single-post-article .post-content h3,
.single-post-article .post-content h4,
.single-post-article .post-content h5,
.single-post-article .post-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark-teal);
}

.single-post-article .post-content h2 {
    font-size: 2rem;
    border-bottom: 3px solid var(--color-primary-light-yellow);
    padding-bottom: 0.5rem;
}

.single-post-article .post-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary-dark-grey);
}

.single-post-article .post-content p {
    margin-bottom: 1.5rem;
}

.single-post-article .post-content p:last-of-type {
    margin-bottom: 1rem;
}

.single-post-article .post-content ul,
.single-post-article .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.single-post-article .post-content li {
    margin-bottom: 0.5rem;
}

.single-post-article .post-content blockquote {
    border-left: 4px solid var(--color-primary-light-yellow);
    background: var(--color-light-background);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    border-radius: 0 8px 8px 0;
}

.single-post-article .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* WordPress Block Image Styling */
.single-post-article .post-content .wp-block-image {
    margin: 2rem 0;
    text-align: center;
}

.single-post-article .post-content .wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.single-post-article .post-content .wp-block-image.size-large {
    margin: 2rem 0;
}

.single-post-article .post-content .wp-block-image.size-large img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* Ensure images are visible and not hidden */
.single-post-article .post-content figure {
    margin: 2rem 0;
    display: block;
}

.single-post-article .post-content figure img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Post Tags */
.post-tags {
    padding: 0 2rem;
}

.tags-title {
    color: var(--color-primary-dark-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.tag-link {
    display: inline-block;
    background: var(--color-primary-light-blue-grey);
    color: var(--color-primary-dark-teal);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--color-primary-dark-teal);
    color: white;
    transform: translateY(-2px);
}

/* Post Footer */
.post-footer {
    padding: 1rem 2rem 1.5rem;
    background: var(--color-light-background);
    margin: 1rem -2rem -2rem;
    border-radius: 0 0 12px 12px;
    box-sizing: border-box;
}

/* Override Bootstrap margin classes for post-footer */
.post-footer.mt-2 {
    margin-top: 0.5rem !important;
}

.post-footer.pt-2 {
    padding-top: 0.5rem !important;
}

.share-title {
    color: var(--color-primary-dark-teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.share-buttons .btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
}

/* Facebook - Official Brand Blue */
.share-buttons .btn-facebook {
    color: #1877f2 !important;
    border-color: #1877f2 !important;
    background: transparent !important;
}

.share-buttons .btn-facebook:hover {
    background: #1877f2 !important;
    color: white !important;
    border-color: #1877f2 !important;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3) !important;
}

/* Twitter/X - Official Brand Blue */
.share-buttons .btn-twitter {
    color: #1da1f2 !important;
    border-color: #1da1f2 !important;
    background: transparent !important;
}

.share-buttons .btn-twitter:hover {
    background: #1da1f2 !important;
    color: white !important;
    border-color: #1da1f2 !important;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3) !important;
}

/* LinkedIn - Official Brand Blue */
.share-buttons .btn-linkedin {
    color: #0077b5 !important;
    border-color: #0077b5 !important;
    background: transparent !important;
}

.share-buttons .btn-linkedin:hover {
    background: #0077b5 !important;
    color: white !important;
    border-color: #0077b5 !important;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3) !important;
}

/* Pinterest - Official Brand Red */
.share-buttons .btn-pinterest {
    color: #bd081c;
    border-color: #bd081c;
}

.share-buttons .btn-pinterest:hover {
    background: #bd081c;
    color: white;
    border-color: #bd081c;
    box-shadow: 0 4px 12px rgba(189, 8, 28, 0.3);
}

/* WhatsApp - Official Brand Green */
.share-buttons .btn-whatsapp {
    color: #25d366;
    border-color: #25d366;
}

.share-buttons .btn-whatsapp:hover {
    background: #25d366;
    color: white;
    border-color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Print - Gray Color */
.btn-print {
    color: #6c757d !important;
    border-color: #6c757d !important;
    background: transparent !important;
    border: 2px solid !important;
    border-radius: 25px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
}

.btn-print:hover {
    background: #6c757d !important;
    color: white !important;
    border-color: #6c757d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3) !important;
}

.share-buttons .btn:hover {
    transform: translateY(-2px) !important;
}

/* Override any existing button styles for share buttons */
.single-post-article .post-footer .share-buttons .btn {
    background: transparent !important;
    border: 2px solid !important;
    color: inherit !important;
}

/* Specific overrides for each social media button */
.single-post-article .post-footer .share-buttons .btn-facebook {
    color: #1877f2 !important;
    border-color: #1877f2 !important;
}

.single-post-article .post-footer .share-buttons .btn-twitter {
    color: #1da1f2 !important;
    border-color: #1da1f2 !important;
}

.single-post-article .post-footer .share-buttons .btn-linkedin {
    color: #0077b5 !important;
    border-color: #0077b5 !important;
}

.single-post-article .post-footer .btn-print {
    color: #6c757d !important;
    border-color: #6c757d !important;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.share-buttons .btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Post Actions (Print Button) */
.post-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.post-actions .btn {
    margin: 0;
}

/* Responsive adjustments for share buttons */
@media (max-width: 767.98px) {
    .share-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .share-buttons .btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .post-footer .row {
        text-align: center;
    }
    
    .post-footer .col-md-8 {
        margin-bottom: 1rem;
    }
    
    .post-actions {
        justify-content: center;
    }
}

/* Post Navigation */
.post-navigation-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-post {
    flex: 1;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.nav-post:hover {
    background: var(--color-light-background);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.nav-post.prev-post {
    text-align: left;
}

.nav-post.next-post {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary-dark-grey);
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-title {
    display: block;
    font-size: 1.1rem;
    color: var(--color-primary-dark-teal);
    font-weight: 600;
    line-height: 1.4;
}

/* Comments Section */
.comments-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.comments-wrapper h3 {
    color: var(--color-primary-dark-teal);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--color-primary-light-yellow);
}

.comment-form {
    background: var(--color-light-background);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.comment-form .form-group {
    margin-bottom: 1.5rem;
}

.comment-form label {
    color: var(--color-primary-dark-teal);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-dark-teal);
    box-shadow: 0 0 0 3px rgba(61, 81, 85, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form .form-submit {
    text-align: right;
}

.comment-form .submit {
    background: var(--color-primary-dark-teal);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form .submit:hover {
    background: var(--color-primary-dark-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Sidebar Styles */
.single-post-sidebar {
    padding-left: 2rem;
}

.widget-title {
    color: var(--color-primary-dark-teal);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary-light-yellow);
}

/* Related Posts Widget */
.related-posts-widget {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.related-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-post-item:hover {
    background: var(--color-light-background);
    border-color: var(--color-primary-light-blue-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--color-light-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light-blue-grey);
    color: var(--color-primary-dark-teal);
    font-size: 1.5rem;
}

.related-post-content {
    flex: 1;
}

.related-post-title {
    margin-bottom: 0.5rem;
}

.related-post-title a {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--color-primary-dark-grey);
}

.related-post-meta {
    font-size: 0.8rem;
}

/* Recent Posts Widget */
.recent-posts-widget {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.recent-post-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-link {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.recent-post-link:hover {
    color: var(--color-primary-dark-grey);
}

.recent-post-date {
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .single-post-sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-post {
        text-align: center !important;
    }
    
    .single-post-article .post-header {
        padding: 1.5rem 1.5rem 0;
    }
    
    .single-post-article .post-featured-image {
        margin: -1.5rem -1.5rem 1.5rem;
    }
    
    .single-post-article .post-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .post-tags,
    .post-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .post-footer {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
}

@media (max-width: 767.98px) {
    .single-post-article .post-featured-image img {
        height: 250px;
    }
    
    .post-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .post-meta-info span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .single-post-article .post-content {
        font-size: 1rem;
    }
    
    .single-post-article .post-content h2 {
        font-size: 1.5rem;
    }
    
    .single-post-article .post-content h3 {
        font-size: 1.25rem;
    }
    
    .share-buttons {
        text-align: center;
    }
    
    .share-buttons .btn {
        margin-bottom: 0.5rem;
    }
    
    .related-post-item {
        flex-direction: column;
        text-align: center;
    }
    
    .related-post-thumbnail {
        width: 100%;
        height: 150px;
        margin: 0 auto;
    }
}

/* Performance optimizations for images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Fix for WordPress block images that might not be displaying */
.wp-block-image {
    display: block !important;
    margin: 2rem 0 !important;
}

.wp-block-image img {
    display: block !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
}

/* Ensure no hidden elements are causing blank space */
.single-post-article .post-content * {
    visibility: visible;
}

.single-post-article .post-content .wp-block-image,
.single-post-article .post-content figure {
    min-height: auto;
    overflow: visible;
}

/* Fix for WordPress Gutenberg block images */
.single-post-article .post-content .wp-block-image.size-large {
    width: 100%;
    margin: 2rem 0;
    text-align: center;
}

.single-post-article .post-content .wp-block-image.size-large img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Remove any potential spacing issues */
.single-post-article .post-content .wp-block-image:empty {
    display: none;
}

/* Ensure proper image loading */
.single-post-article .post-content img[src*="Pawsh-Pup-Style"] {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 2rem auto !important;
}

/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}

/* ========================================
   LATEST BLOG SECTION STYLES
======================================== */

/* Blog Section */
#latest-blog {
    background: var(--color-light-background);
}

/* Blog Cards */
.blog-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-primary-light-blue-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark-teal);
    font-size: 2rem;
}

/* Blog Card Content */
.blog-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Blog Card Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-primary-dark-grey);
}

.blog-card-date,
.blog-card-category {
    display: flex;
    align-items: center;
    background: var(--color-light-background);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 500;
}

.blog-card-date i,
.blog-card-category i {
    color: var(--color-primary-dark-teal);
    font-size: 0.75rem;
}

/* Blog Card Title */
.blog-card-title {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--color-primary-dark-grey);
}

/* Blog Card Excerpt */
.blog-card-excerpt {
    color: var(--color-primary-dark-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Blog Card Footer */
.blog-card-footer {
    margin-top: auto;
}

.blog-read-more-link {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.blog-read-more-link:hover {
    color: var(--color-primary-dark-grey);
    text-decoration: none;
    transform: translateX(3px);
}

.blog-read-more-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Blog Cards */
@media (max-width: 991.98px) {
    .blog-card-image {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .blog-card-image {
        height: 160px;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .blog-card-category {
        margin-left: 0 !important;
    }
}

/* ========================================
   BLOG ARCHIVE PAGE STYLES
======================================== */

/* Blog Archive Wrapper */
.blog-archive-wrapper {
    padding: 2rem 0;
}

/* Archive Header */
.archive-header {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-primary-light-blue-grey);
}

.archive-title {
    color: var(--color-primary-dark-teal);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.archive-description {
    color: var(--color-primary-dark-grey);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Blog Post Item */
.blog-post-item {
    margin-bottom: 0;
}

.blog-post-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Blog Post Image */
.blog-post-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

/* Blog Post Content */
.blog-post-content {
    padding: 2rem;
}

/* Blog Post Meta */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-primary-dark-grey);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    background: var(--color-light-background);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-post-meta i {
    color: var(--color-primary-dark-teal);
    margin-right: 0.5rem;
}

/* Blog Post Title */
.blog-post-title {
    margin: 1.5rem 0 1rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--color-primary-dark-grey);
}

/* Blog Post Excerpt */
.blog-post-excerpt {
    color: var(--color-primary-dark-grey);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Blog Post Tags */
.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-badge {
    display: inline-block;
    background: var(--color-primary-light-blue-grey);
    color: var(--color-primary-dark-teal);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: var(--color-primary-dark-teal);
    color: white;
    transform: translateY(-2px);
}

/* Blog Post Footer */
.blog-post-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--color-light-background);
}

/* Blog Sidebar */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

.widget-title {
    color: var(--color-primary-dark-teal);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary-light-yellow);
}

/* Category List */
.category-list {
    margin: 0;
}

.category-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.category-link:hover {
    color: var(--color-primary-dark-grey);
}

.category-count {
    margin-left: auto;
    color: var(--color-primary-dark-grey);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Recent Posts List */
.recent-posts-list {
    margin: 0;
}

.recent-post-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-link {
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.recent-post-link:hover {
    color: var(--color-primary-dark-grey);
}

.recent-post-date {
    font-size: 0.85rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag-link {
    display: inline-block;
    background: var(--color-primary-light-blue-grey);
    color: var(--color-primary-dark-teal);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag-cloud .tag-link:hover {
    background: var(--color-primary-dark-teal);
    color: white;
    transform: translateY(-2px);
}

/* No Posts Found */
.no-posts-found {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-posts-found h2 {
    color: var(--color-primary-dark-teal);
    margin-bottom: 1rem;
}

.no-posts-found p {
    color: var(--color-primary-dark-grey);
    margin-bottom: 2rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination-wrapper ul.page-numbers {
    list-style: none !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0 !important;
    margin: 0 !important;
}

.pagination-wrapper ul.page-numbers li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
}

.pagination-wrapper ul.page-numbers li a,
.pagination-wrapper ul.page-numbers li span {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    background: #ffffff !important;
    color: var(--color-primary-dark-teal) !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary-light-blue-grey) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.pagination-wrapper ul.page-numbers li a:hover {
    background: var(--color-primary-dark-teal) !important;
    color: white !important;
    border-color: var(--color-primary-dark-teal) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pagination-wrapper ul.page-numbers li span.current {
    background: var(--color-primary-dark-teal) !important;
    color: white !important;
    border-color: var(--color-primary-dark-teal) !important;
    cursor: default;
}

.pagination-wrapper ul.page-numbers li span.dots {
    background: transparent !important;
    border: none !important;
    color: var(--color-primary-dark-grey) !important;
    cursor: default;
    box-shadow: none !important;
    min-width: auto;
}

/* Next/Previous buttons special styling */
.pagination-wrapper ul.page-numbers li a.next,
.pagination-wrapper ul.page-numbers li a.prev {
    padding: 0.5rem 1.25rem;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0.5rem 1rem;
    background: #ffffff;
    color: var(--color-primary-dark-teal);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--color-primary-light-blue-grey);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-primary-dark-teal);
    color: white;
    border-color: var(--color-primary-dark-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .blog-post-image {
        height: 250px;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .archive-title {
        font-size: 2rem;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 1.25rem;
    }
    
    .blog-post-title {
        font-size: 1.25rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-post-meta span {
        margin-left: 0 !important;
    }
    
    .pagination-wrapper ul.page-numbers li a,
    .pagination-wrapper ul.page-numbers li span {
        min-width: 40px;
        height: 40px;
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0.4rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Optimize for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================
   PRODUCT GRID FIX - Infinite Scroll
   Force Bootstrap's row-cols to work properly
   ================================ */

/* Reset any WooCommerce width overrides */
.products.row > .col,
.products.row > [class*="product"],
.products.row > [class*="type-product"] {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
}

/* 4 columns on large screens (desktop) - Bootstrap default */
@media (min-width: 992px) {
    .products.row.row-cols-lg-4 > * {
        flex: 0 0 auto !important;
        width: 25% !important;
    }
}

/* 3 columns on medium screens (tablet) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .products.row.row-cols-md-3 > * {
        flex: 0 0 auto !important;
        width: 33.3333333333% !important;
    }
}

/* 2 columns on small screens (mobile) */
@media (max-width: 767.98px) {
    .products.row.row-cols-2 > * {
        flex: 0 0 auto !important;
        width: 50% !important;
    }
}

/* ================================================
   SUB-PAGE TEMPLATE SHARED STYLES
   About, Ethics, FAQs, Contact, Schedule pages
   ================================================ */

/* Shared Sub-Page Container */
.subpage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    background: #ffffff;
}

@media (max-width: 768px) {
    .subpage-container {
        padding: 40px 20px;
    }
}

/* Shared Content Typography */
.subpage-content {
    font-size: 16px;
    line-height: 1.8;
    color: #58595b;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
}

.subpage-content h1 {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 24px;
    line-height: 1.3;
}

.subpage-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subpage-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.subpage-content p {
    margin-bottom: 20px;
}

.subpage-content p strong {
    color: #000000;
}

/* Links */
.subpage-content a {
    color: var(--color-nursery-green, #8ABB6F);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.subpage-content a:hover {
    color: var(--color-puppy-gold, #F4CA54);
    text-decoration: underline;
}

/* Two Column Grid */
.subpage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
    align-items: start;
}

.subpage-grid.single-col {
    grid-template-columns: 1fr;
}

@media (max-width: 768px) {
    .subpage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Section Spacing */
.subpage-section {
    margin-bottom: 60px;
}

/* Divider */
.subpage-divider {
    border: none;
    height: 3px;
    background: var(--color-nursery-green, #8ABB6F);
    margin: 40px 0;
    border-radius: 2px;
}

/* Lists with Checkmarks */
.subpage-content ul {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.subpage-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.subpage-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-nursery-green, #8ABB6F);
    font-size: 16px;
}

/* Ordered Lists */
.subpage-content ol {
    margin-bottom: 24px;
    padding-left: 0;
    counter-reset: item;
    list-style: none;
}

.subpage-content ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    line-height: 1.7;
    counter-increment: item;
}

.subpage-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

/* Images */
.subpage-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Blockquote */
.subpage-content blockquote {
    border-left: 4px solid var(--color-nursery-green, #8ABB6F);
    padding: 20px 30px;
    margin: 30px 0;
    background: #f9faf8;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 18px;
}

/* CTA Section */
.subpage-cta-section {
    background: var(--color-light-green, #bddab0);
    padding: 48px;
    border-radius: 16px;
    margin-top: 60px;
    text-align: center;
}

.subpage-cta-section h3 {
    margin-top: 0;
    color: #000000;
    font-size: 28px;
}

.subpage-cta-section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 24px;
}

.subpage-cta-section a.cta-button,
a.cta-button {
    display: inline-block;
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.subpage-cta-section a.cta-button:hover,
a.cta-button:hover {
    background: var(--color-puppy-gold, #F4CA54);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 187, 111, 0.3);
    text-decoration: none;
    color: #ffffff;
}

/* Highlight Box */
.highlight-box {
    background: var(--color-light-green, #bddab0);
    padding: 24px 28px;
    border-radius: 12px;
    margin: 30px 0;
}

.highlight-box p {
    margin: 0;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--color-light-green, #bddab0);
    padding: 30px;
    border-radius: 12px;
}

/* Hours Box */
.hours-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.hours-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hours-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Map Container */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .subpage-content h1 {
        font-size: 28px;
    }

    .subpage-content h2 {
        font-size: 24px;
    }

    .subpage-content h3 {
        font-size: 20px;
    }

    .subpage-cta-section {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--color-light-green, #bddab0) 0%, rgba(138, 187, 111, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffffff, transparent);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-icon {
    margin-bottom: 24px;
}

.about-hero-icon i {
    font-size: 64px;
    color: var(--color-nursery-green, #8ABB6F);
    filter: drop-shadow(0 4px 8px rgba(138, 187, 111, 0.3));
    animation: bounce-gentle 3s ease-in-out infinite;
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.about-hero-text {
    font-size: 20px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
}

/* About Values Section */
.about-values {
    padding: 80px 0;
    background: #ffffff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 187, 111, 0.15);
    border-color: var(--color-nursery-green, #8ABB6F);
}

.about-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F), var(--color-light-green, #bddab0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.about-value-item:hover .about-value-icon {
    transform: scale(1.1);
}

.about-value-icon i {
    font-size: 32px;
    color: #ffffff;
}

.about-value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
}

.about-value-item p {
    font-size: 16px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
}

/* About Mission Section */
.about-mission-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-mission-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-mission-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 20px 0;
}

.about-mission-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-nursery-green, #8ABB6F), var(--color-puppy-gold, #F4CA54));
    margin: 0 auto;
    border-radius: 2px;
}

.about-mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-mission-statement {
    font-size: 20px;
    color: #58595b;
    line-height: 1.8;
    margin: 0;
}

/* About Story Section */
.about-story-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

.about-story-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 30px 0;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    font-size: 17px;
    color: #58595b;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.about-checklist li:last-child {
    border-bottom: none;
}

.about-checklist li i {
    color: var(--color-nursery-green, #8ABB6F);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* About WordPress Content Section */
.about-content-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-wp-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #58595b;
}

.about-wp-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 40px 0 20px;
}

.about-wp-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 16px;
}

.about-wp-content p {
    margin-bottom: 20px;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--color-footer-bg, #f8f9fa) 0%, #f0f0f0 100%);
    padding: 80px 0;
    text-align: center;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
}

.about-cta-content p {
    font-size: 20px;
    color: #58595b;
    margin: 0 0 32px 0;
}

.about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-cta-btn-primary {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
}

.about-cta-btn-primary:hover {
    background: #79a85f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.4);
    color: #ffffff;
}

.about-cta-btn-secondary {
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border: 2px solid var(--color-nursery-green, #8ABB6F);
}

.about-cta-btn-secondary:hover {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.3);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .about-story-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero-icon i {
        font-size: 48px;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-text {
        font-size: 17px;
    }

    .about-values {
        padding: 60px 0;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-value-item {
        padding: 32px 24px;
    }

    .about-mission-section {
        padding: 60px 0;
    }

    .about-mission-header h2 {
        font-size: 28px;
    }

    .about-mission-statement {
        font-size: 17px;
    }

    .about-story-section {
        padding: 60px 0;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-content h2 {
        font-size: 28px;
    }

    .about-cta-section {
        padding: 60px 0;
    }

    .about-cta-content h2 {
        font-size: 28px;
    }

    .about-cta-content p {
        font-size: 17px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   ETHICS & SOURCING PAGE STYLES
   ========================================================================== */

/* Ethics Hero Section */
.ethics-hero {
    background: linear-gradient(135deg, var(--color-light-green, #bddab0) 0%, rgba(138, 187, 111, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ethics-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

.ethics-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffffff, transparent);
}

.ethics-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.ethics-hero-icon {
    margin-bottom: 24px;
}

.ethics-hero-icon i {
    font-size: 64px;
    color: var(--color-nursery-green, #8ABB6F);
    filter: drop-shadow(0 4px 8px rgba(138, 187, 111, 0.3));
    animation: bounce-gentle 3s ease-in-out infinite;
}

.ethics-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.ethics-hero-text {
    font-size: 20px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
}

/* Ethics Commitments Section */
.ethics-commitments {
    padding: 80px 0;
    background: #ffffff;
}

.ethics-commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.ethics-commitment-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ethics-commitment-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 187, 111, 0.15);
    border-color: var(--color-nursery-green, #8ABB6F);
}

.ethics-commitment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F), var(--color-light-green, #bddab0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.ethics-commitment-item:hover .ethics-commitment-icon {
    transform: scale(1.1);
}

.ethics-commitment-icon i {
    font-size: 32px;
    color: #ffffff;
}

.ethics-commitment-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
}

.ethics-commitment-item p {
    font-size: 16px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
}

/* Ethics Standards Section */
.ethics-standards-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.ethics-standards-header {
    text-align: center;
    margin-bottom: 50px;
}

.ethics-standards-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 20px 0;
}

.ethics-standards-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-nursery-green, #8ABB6F), var(--color-puppy-gold, #F4CA54));
    margin: 0 auto;
    border-radius: 2px;
}

.ethics-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ethics-standard-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ethics-standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(138, 187, 111, 0.15);
}

.ethics-standard-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(138, 187, 111, 0.15);
    line-height: 1;
}

.ethics-standard-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 24px 0;
    padding-right: 60px;
}

.ethics-standard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ethics-standard-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: #58595b;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

.ethics-standard-list li:last-child {
    border-bottom: none;
}

.ethics-standard-list li i {
    color: var(--color-nursery-green, #8ABB6F);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Ethics Promise Section */
.ethics-promise-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F) 0%, #79a85f 100%);
    text-align: center;
}

.ethics-promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.ethics-promise-icon {
    margin-bottom: 24px;
}

.ethics-promise-icon i {
    font-size: 56px;
    color: #ffffff;
    opacity: 0.9;
}

.ethics-promise-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.ethics-promise-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin: 0;
}

/* Ethics WordPress Content Section */
.ethics-content-section {
    padding: 60px 0;
    background: #ffffff;
}

.ethics-wp-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #58595b;
}

.ethics-wp-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 40px 0 20px;
}

.ethics-wp-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    margin: 30px 0 16px;
}

.ethics-wp-content p {
    margin-bottom: 20px;
}

.ethics-wp-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.ethics-wp-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.ethics-wp-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-nursery-green, #8ABB6F);
    font-size: 16px;
}

/* Ethics CTA Section */
.ethics-cta-section {
    background: linear-gradient(135deg, var(--color-footer-bg, #f8f9fa) 0%, #f0f0f0 100%);
    padding: 80px 0;
    text-align: center;
}

.ethics-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.ethics-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
}

.ethics-cta-content p {
    font-size: 20px;
    color: #58595b;
    margin: 0 0 32px 0;
}

.ethics-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ethics-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ethics-cta-btn-primary {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
}

.ethics-cta-btn-primary:hover {
    background: #79a85f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.4);
    color: #ffffff;
}

.ethics-cta-btn-secondary {
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border: 2px solid var(--color-nursery-green, #8ABB6F);
}

.ethics-cta-btn-secondary:hover {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.3);
}

/* Ethics Page Responsive */
@media (max-width: 1024px) {
    .ethics-commitments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .ethics-standards-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ethics-hero {
        padding: 60px 0;
    }

    .ethics-hero-icon i {
        font-size: 48px;
    }

    .ethics-hero-title {
        font-size: 32px;
    }

    .ethics-hero-text {
        font-size: 17px;
    }

    .ethics-commitments {
        padding: 60px 0;
    }

    .ethics-commitments-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ethics-commitment-item {
        padding: 32px 24px;
    }

    .ethics-standards-section {
        padding: 60px 0;
    }

    .ethics-standards-header h2 {
        font-size: 28px;
    }

    .ethics-standards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ethics-standard-card {
        padding: 32px 24px;
    }

    .ethics-standard-card h3 {
        padding-right: 50px;
    }

    .ethics-promise-section {
        padding: 60px 0;
    }

    .ethics-promise-icon i {
        font-size: 44px;
    }

    .ethics-promise-content h2 {
        font-size: 28px;
    }

    .ethics-promise-text {
        font-size: 17px;
    }

    .ethics-cta-section {
        padding: 60px 0;
    }

    .ethics-cta-content h2 {
        font-size: 28px;
    }

    .ethics-cta-content p {
        font-size: 17px;
    }

    .ethics-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ethics-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--color-light-green, #bddab0) 0%, rgba(138, 187, 111, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffffff, transparent);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-icon {
    margin-bottom: 24px;
}

.contact-hero-icon i {
    font-size: 64px;
    color: var(--color-nursery-green, #8ABB6F);
    filter: drop-shadow(0 4px 8px rgba(138, 187, 111, 0.3));
    animation: bounce-gentle 3s ease-in-out infinite;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.contact-hero-text {
    font-size: 20px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
}

/* Contact Methods Section */
.contact-methods {
    padding: 80px 0;
    background: #ffffff;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.contact-method-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 187, 111, 0.15);
    border-color: var(--color-nursery-green, #8ABB6F);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F), var(--color-light-green, #bddab0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.contact-method-item:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method-icon i {
    font-size: 32px;
    color: #ffffff;
}

.contact-method-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
}

.contact-method-item p {
    font-size: 16px;
    color: #58595b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Main Section */
.contact-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form Column */
.contact-form-column {
    background: #ffffff;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 12px 0;
}

.contact-form-header p {
    font-size: 16px;
    color: #58595b;
    margin: 0;
}

.contact-form-embed {
    margin-top: 24px;
}

.contact-form-embed input[type="text"],
.contact-form-embed input[type="email"],
.contact-form-embed input[type="tel"],
.contact-form-embed textarea,
.contact-form-embed select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.contact-form-embed input:focus,
.contact-form-embed textarea:focus,
.contact-form-embed select:focus {
    border-color: var(--color-nursery-green, #8ABB6F);
    box-shadow: 0 0 0 3px rgba(138, 187, 111, 0.15);
    outline: none;
}

.contact-form-embed textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-embed input[type="submit"],
.contact-form-embed button[type="submit"] {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-embed input[type="submit"]:hover,
.contact-form-embed button[type="submit"]:hover {
    background: #79a85f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 187, 111, 0.3);
}

.contact-form-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.contact-form-placeholder i {
    font-size: 48px;
    color: var(--color-nursery-green, #8ABB6F);
    margin-bottom: 20px;
}

.contact-form-placeholder h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
}

.contact-form-placeholder p {
    font-size: 16px;
    color: #58595b;
    margin: 0;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-info-header i {
    font-size: 24px;
    color: var(--color-nursery-green, #8ABB6F);
}

.contact-info-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-hours-row:last-child {
    border-bottom: none;
}

.contact-day {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.contact-time {
    font-size: 15px;
    color: #58595b;
}

/* Location Card */
.contact-location-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-address {
    font-size: 16px;
    color: #58595b;
    line-height: 1.6;
    margin: 0;
}

.contact-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-light-green, #bddab0);
    color: #000000;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.contact-directions-btn:hover {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Quick Links */
.contact-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-links-list li {
    border-bottom: 1px solid #f0f0f0;
}

.contact-links-list li:last-child {
    border-bottom: none;
}

.contact-links-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 600;
    color: #58595b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-links-list li a:hover {
    color: var(--color-nursery-green, #8ABB6F);
    padding-left: 8px;
}

.contact-links-list li a i {
    font-size: 16px;
    color: var(--color-nursery-green, #8ABB6F);
    width: 20px;
    text-align: center;
}

/* Contact Map Section */
.contact-map-section {
    background: #ffffff;
}

.contact-map-container {
    width: 100%;
    height: 400px;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--color-footer-bg, #f8f9fa) 0%, #f0f0f0 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
}

.contact-cta-content p {
    font-size: 20px;
    color: #58595b;
    margin: 0 0 32px 0;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.contact-cta-btn-primary {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
}

.contact-cta-btn-primary:hover {
    background: #79a85f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.4);
    color: #ffffff;
}

.contact-cta-btn-secondary {
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border: 2px solid var(--color-nursery-green, #8ABB6F);
}

.contact-cta-btn-secondary:hover {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.3);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-methods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .contact-main-grid {
        gap: 40px;
    }

    .contact-form-column {
        padding: 36px;
    }
}

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-icon i {
        font-size: 48px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-text {
        font-size: 17px;
    }

    .contact-methods {
        padding: 60px 0;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-method-item {
        padding: 32px 24px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-form-column {
        padding: 28px;
    }

    .contact-form-header h2 {
        font-size: 24px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .contact-map-container {
        height: 300px;
    }

    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-content h2 {
        font-size: 28px;
    }

    .contact-cta-content p {
        font-size: 17px;
    }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   FAQS PAGE STYLES
   ========================================================================== */

/* FAQs Hero Section */
.faqs-hero {
    background: linear-gradient(135deg, var(--color-light-green, #bddab0) 0%, rgba(138, 187, 111, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faqs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

.faqs-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffffff, transparent);
}

.faqs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.faqs-hero-icon {
    margin-bottom: 24px;
}

.faqs-hero-icon i {
    font-size: 64px;
    color: var(--color-nursery-green, #8ABB6F);
    filter: drop-shadow(0 4px 8px rgba(138, 187, 111, 0.3));
    animation: bounce-gentle 3s ease-in-out infinite;
}

.faqs-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.faqs-hero-text {
    font-size: 20px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
}

/* FAQs Topics Section */
.faqs-topics {
    padding: 80px 0;
    background: #ffffff;
}

.faqs-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faqs-topic-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
}

.faqs-topic-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(138, 187, 111, 0.15);
    border-color: var(--color-nursery-green, #8ABB6F);
}

.faqs-topic-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F), var(--color-light-green, #bddab0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.faqs-topic-item:hover .faqs-topic-icon {
    transform: scale(1.1);
}

.faqs-topic-icon i {
    font-size: 32px;
    color: #ffffff;
}

.faqs-topic-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
}

.faqs-topic-item p {
    font-size: 16px;
    color: #58595b;
    line-height: 1.6;
    margin: 0;
}

/* FAQs Content Section */
.faqs-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faqs-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQs WordPress Content Styling */
.faqs-wp-content {
    font-size: 17px;
    line-height: 1.8;
    color: #58595b;
}

.faqs-wp-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin: 50px 0 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-nursery-green, #8ABB6F);
}

.faqs-wp-content h2:first-child {
    margin-top: 0;
}

.faqs-wp-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 32px 0 16px;
    padding: 16px 24px;
    background: #ffffff;
    border-left: 4px solid var(--color-nursery-green, #8ABB6F);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faqs-wp-content p {
    margin-bottom: 20px;
    padding-left: 24px;
}

.faqs-wp-content ul,
.faqs-wp-content ol {
    margin: 0 0 24px 24px;
    padding-left: 24px;
}

.faqs-wp-content ul li,
.faqs-wp-content ol li {
    margin-bottom: 12px;
}

/* FAQs Accordion Styles */
.faqs-accordion {
    margin-bottom: 48px;
}

.faqs-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--color-nursery-green, #8ABB6F);
}

.faqs-category-header i {
    font-size: 28px;
    color: var(--color-nursery-green, #8ABB6F);
}

.faqs-category-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin: 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(138, 187, 111, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 16px;
    color: var(--color-nursery-green, #8ABB6F);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(138, 187, 111, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #58595b;
    margin: 0;
}

/* FAQs Help Section */
.faqs-help-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F) 0%, #79a85f 100%);
    text-align: center;
}

.faqs-help-content {
    max-width: 700px;
    margin: 0 auto;
}

.faqs-help-icon {
    margin-bottom: 24px;
}

.faqs-help-icon i {
    font-size: 56px;
    color: #ffffff;
    opacity: 0.9;
}

.faqs-help-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.faqs-help-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
}

.faqs-help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faqs-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faqs-help-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--color-nursery-green, #8ABB6F);
}

.faqs-help-btn i {
    font-size: 18px;
}

/* FAQs CTA Section */
.faqs-cta-section {
    background: linear-gradient(135deg, var(--color-footer-bg, #f8f9fa) 0%, #f0f0f0 100%);
    padding: 80px 0;
    text-align: center;
}

.faqs-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.faqs-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
}

.faqs-cta-content p {
    font-size: 20px;
    color: #58595b;
    margin: 0 0 32px 0;
}

.faqs-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faqs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.faqs-cta-btn-primary {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
}

.faqs-cta-btn-primary:hover {
    background: #79a85f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.4);
    color: #ffffff;
}

.faqs-cta-btn-secondary {
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border: 2px solid var(--color-nursery-green, #8ABB6F);
}

.faqs-cta-btn-secondary:hover {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.3);
}

/* FAQs Page Responsive */
@media (max-width: 1024px) {
    .faqs-topics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .faqs-hero {
        padding: 60px 0;
    }

    .faqs-hero-icon i {
        font-size: 48px;
    }

    .faqs-hero-title {
        font-size: 32px;
    }

    .faqs-hero-text {
        font-size: 17px;
    }

    .faqs-topics {
        padding: 60px 0;
    }

    .faqs-topics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faqs-topic-item {
        padding: 32px 24px;
    }

    .faqs-content-section {
        padding: 60px 0;
    }

    .faqs-category-header h2 {
        font-size: 24px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 24px 20px;
    }

    .faqs-help-section {
        padding: 60px 0;
    }

    .faqs-help-icon i {
        font-size: 44px;
    }

    .faqs-help-content h2 {
        font-size: 28px;
    }

    .faqs-help-content p {
        font-size: 17px;
    }

    .faqs-help-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faqs-help-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .faqs-cta-section {
        padding: 60px 0;
    }

    .faqs-cta-content h2 {
        font-size: 28px;
    }

    .faqs-cta-content p {
        font-size: 17px;
    }

    .faqs-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faqs-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   REVIEWS/TESTIMONIALS PAGE STYLES
   ========================================================================== */

/* Reviews Hero Section */
.reviews-hero {
    background: linear-gradient(135deg, var(--color-light-green, #bddab0) 0%, rgba(138, 187, 111, 0.3) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 15s ease-in-out infinite;
}

.reviews-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffffff, transparent);
}

.reviews-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-hero-icon {
    margin-bottom: 24px;
}

.reviews-hero-icon i {
    font-size: 64px;
    color: #FFD700;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
    animation: bounce-gentle 3s ease-in-out infinite;
}

.reviews-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.reviews-hero-text {
    font-size: 20px;
    color: #58595b;
    line-height: 1.7;
    margin: 0;
    padding: 0 20px;
}

/* Reviews Stats Section */
.reviews-stats {
    padding: 60px 0;
    background: #ffffff;
}

.reviews-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-stat-item {
    text-align: center;
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.reviews-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 187, 111, 0.15);
}

.reviews-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-nursery-green, #8ABB6F);
    line-height: 1;
    margin-bottom: 8px;
}

.reviews-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #58595b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-stat-rating .reviews-stat-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.reviews-stat-stars i {
    font-size: 24px;
    color: #FFD700;
}

/* Reviews Grid Section */
.reviews-grid-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Review Card */
.review-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(138, 187, 111, 0.15);
    border-color: var(--color-nursery-green, #8ABB6F);
}

.review-card-inner {
    position: relative;
    z-index: 1;
}

.review-quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    z-index: 0;
}

.review-quote-icon i {
    font-size: 80px;
    color: rgba(138, 187, 111, 0.1);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-stars i {
    font-size: 20px;
    color: #FFD700;
}

.review-stars i.empty {
    color: #e2e8f0;
}

.review-title {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.review-content {
    font-size: 16px;
    line-height: 1.8;
    color: #58595b;
    margin: 0 0 24px 0;
}

.review-content p {
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.review-author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F), var(--color-light-green, #bddab0));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-author-avatar i {
    font-size: 20px;
    color: #ffffff;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px 0;
}

.review-author-label {
    font-size: 13px;
    color: var(--color-nursery-green, #8ABB6F);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Reviews Empty State */
.reviews-empty {
    text-align: center;
    padding: 100px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    max-width: 600px;
    margin: 0 auto;
}

.reviews-empty-icon {
    margin-bottom: 24px;
}

.reviews-empty-icon i {
    font-size: 72px;
    color: #e2e8f0;
}

.reviews-empty h2 {
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 12px 0;
}

.reviews-empty p {
    font-size: 18px;
    color: #58595b;
    margin: 0;
}

/* Reviews Share Section */
.reviews-share-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-nursery-green, #8ABB6F) 0%, #79a85f 100%);
    text-align: center;
}

.reviews-share-content {
    max-width: 700px;
    margin: 0 auto;
}

.reviews-share-icon {
    margin-bottom: 24px;
}

.reviews-share-icon i {
    font-size: 56px;
    color: #ffffff;
    opacity: 0.9;
}

.reviews-share-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.reviews-share-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
    line-height: 1.7;
}

.reviews-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.reviews-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--color-nursery-green, #8ABB6F);
}

/* Reviews CTA Section */
.reviews-cta-section {
    background: linear-gradient(135deg, var(--color-footer-bg, #f8f9fa) 0%, #f0f0f0 100%);
    padding: 80px 0;
    text-align: center;
}

.reviews-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.reviews-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
}

.reviews-cta-content p {
    font-size: 20px;
    color: #58595b;
    margin: 0 0 32px 0;
}

.reviews-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.reviews-cta-btn-primary {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
}

.reviews-cta-btn-primary:hover {
    background: #79a85f;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.4);
    color: #ffffff;
}

.reviews-cta-btn-secondary {
    background: #ffffff;
    color: var(--color-nursery-green, #8ABB6F);
    border: 2px solid var(--color-nursery-green, #8ABB6F);
}

.reviews-cta-btn-secondary:hover {
    background: var(--color-nursery-green, #8ABB6F);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(138, 187, 111, 0.3);
}

/* Reviews Page Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reviews-hero {
        padding: 60px 0;
    }

    .reviews-hero-icon i {
        font-size: 48px;
    }

    .reviews-hero-title {
        font-size: 32px;
    }

    .reviews-hero-text {
        font-size: 17px;
    }

    .reviews-stats {
        padding: 40px 0;
    }

    .reviews-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-stat-item {
        padding: 24px 20px;
    }

    .reviews-stat-number {
        font-size: 36px;
    }

    .reviews-grid-section {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .review-card {
        padding: 32px 28px;
    }

    .review-title {
        font-size: 20px;
    }

    .reviews-share-section {
        padding: 60px 0;
    }

    .reviews-share-icon i {
        font-size: 44px;
    }

    .reviews-share-content h2 {
        font-size: 28px;
    }

    .reviews-share-content p {
        font-size: 17px;
    }

    .reviews-share-btn {
        padding: 16px 32px;
        font-size: 16px;
    }

    .reviews-cta-section {
        padding: 60px 0;
    }

    .reviews-cta-content h2 {
        font-size: 28px;
    }

    .reviews-cta-content p {
        font-size: 17px;
    }

    .reviews-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .reviews-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ==========================================================================
   MY ACCOUNT PAGES - Puppy Dog Nursery Custom Styles
   ========================================================================== */

/* Header Account Link - Inline with Phone */
.pdn-header-separator {
    margin: 0 18px;
    color: var(--color-text-light);
    font-weight: 300;
}

.pdn-header-account-link {
    color: var(--color-nursery-green);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pdn-header-account-link:hover {
    color: var(--color-puppy-gold);
}

/* My Account Wrapper */
.pdn-myaccount-wrapper {
    padding: 20px 0;
}

/* Account Navigation Sidebar */
.pdn-account-nav {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.pdn-nav-header {
    background: linear-gradient(135deg, var(--color-nursery-green) 0%, #79a85f 100%);
    padding: 25px 20px;
    text-align: center;
    color: #ffffff;
}

.pdn-nav-avatar {
    margin-bottom: 12px;
}

.pdn-nav-avatar img,
.pdn-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.pdn-nav-greeting {
    display: block;
    font-size: 13px;
    opacity: 0.9;
}

.pdn-nav-username {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.pdn-nav-menu {
    list-style: none;
    margin: 0;
    padding: 15px 0;
}

.pdn-nav-item {
    margin: 0;
}

.pdn-nav-link {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.pdn-nav-link:hover {
    background: rgba(138, 187, 111, 0.08);
    color: var(--color-nursery-green);
    border-left-color: var(--color-nursery-green);
}

.pdn-nav-item.is-active .pdn-nav-link {
    background: rgba(138, 187, 111, 0.12);
    color: var(--color-nursery-green);
    border-left-color: var(--color-nursery-green);
    font-weight: 600;
}

.pdn-nav-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(138, 187, 111, 0.1);
    border-radius: 10px;
    margin-right: 12px;
    color: var(--color-nursery-green);
    font-size: 14px;
    transition: all 0.2s ease;
}

.pdn-nav-item.is-active .pdn-nav-icon,
.pdn-nav-link:hover .pdn-nav-icon {
    background: var(--color-nursery-green);
    color: #ffffff;
}

.pdn-nav-text {
    flex: 1;
    font-size: 15px;
}

.pdn-nav-arrow {
    font-size: 12px;
    color: #c0c0c0;
    transition: transform 0.2s ease;
}

.pdn-nav-link:hover .pdn-nav-arrow {
    transform: translateX(3px);
    color: var(--color-nursery-green);
}

/* Account Content Area */
.pdn-account-content {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 30px;
    min-height: 400px;
}

/* Auth Pages (Login/Register) */
.pdn-auth-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pdn-auth-header {
    margin-bottom: 40px;
}

.pdn-auth-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-nursery-green) 0%, #79a85f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pdn-auth-icon i {
    font-size: 36px;
    color: #ffffff;
}

.pdn-auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.pdn-auth-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
}

.pdn-auth-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 35px;
    height: 100%;
}

.pdn-auth-card-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.pdn-auth-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.pdn-auth-card-header h3 i {
    color: var(--color-nursery-green);
}

.pdn-auth-card-header p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* Form Styling */
.pdn-form-group {
    margin-bottom: 20px;
}

.pdn-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.pdn-form-label i {
    color: var(--color-nursery-green);
}

.pdn-form-label .required {
    color: #dc3545;
}

.pdn-form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.pdn-form-input:focus {
    outline: none;
    border-color: var(--color-nursery-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(138, 187, 111, 0.1);
}

.pdn-form-input::placeholder {
    color: #aaa;
}

.pdn-form-hint {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 6px;
}

.pdn-form-note {
    background: rgba(138, 187, 111, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--color-text-dark);
}

.pdn-form-note i {
    color: var(--color-nursery-green);
}

/* Checkbox Styling */
.pdn-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-dark);
}

.pdn-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.pdn-checkbox:checked {
    background-color: var(--color-nursery-green);
    border-color: var(--color-nursery-green);
}

/* Links */
.pdn-link {
    color: var(--color-nursery-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.pdn-link:hover {
    color: var(--color-puppy-gold);
    text-decoration: underline;
}

/* Buttons */
.pdn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pdn-btn-primary {
    background: var(--color-nursery-green);
    color: #ffffff;
}

.pdn-btn-primary:hover {
    background: var(--color-puppy-gold);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 187, 111, 0.3);
}

.pdn-btn-outline {
    background: transparent;
    color: var(--color-nursery-green);
    border: 2px solid var(--color-nursery-green);
}

.pdn-btn-outline:hover {
    background: var(--color-nursery-green);
    color: #ffffff;
}

.pdn-btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Register Benefits */
.pdn-register-benefits {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.pdn-benefits-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.pdn-benefits-title i {
    color: var(--color-puppy-gold);
}

.pdn-benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pdn-benefits-list li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.pdn-benefits-list li:last-child {
    margin-bottom: 0;
}

.pdn-benefits-list li i {
    color: var(--color-nursery-green);
    margin-right: 10px;
    font-size: 12px;
}

/* Dashboard Styles */
.pdn-dashboard-welcome {
    background: linear-gradient(135deg, var(--color-nursery-green) 0%, #79a85f 100%);
    border-radius: 16px;
    padding: 30px;
    color: #ffffff;
}

.pdn-welcome-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pdn-welcome-title i {
    opacity: 0.8;
}

.pdn-welcome-text {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.pdn-dashboard-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pdn-dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-nursery-green);
}

.pdn-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-nursery-green) 0%, #79a85f 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pdn-card-icon i {
    font-size: 24px;
    color: #ffffff;
}

.pdn-card-content {
    flex: 1;
}

.pdn-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.pdn-card-text {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

.pdn-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-nursery-green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.2s ease;
}

.pdn-card-link:hover {
    color: var(--color-puppy-gold);
}

.pdn-card-link i {
    transition: transform 0.2s ease;
}

.pdn-card-link:hover i {
    transform: translateX(4px);
}

/* Recent Orders Section */
.pdn-recent-orders,
.pdn-orders-page {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 25px;
}

.pdn-section-title,
.pdn-page-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.pdn-section-title i,
.pdn-page-title i {
    color: var(--color-nursery-green);
}

.pdn-page-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: -10px;
    margin-bottom: 25px;
}

.pdn-orders-table .table {
    margin: 0;
}

.pdn-orders-table .table thead th {
    background: #f8f9fa;
    border: none;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pdn-orders-table .table tbody td {
    padding: 16px;
    vertical-align: middle;
    border-color: #f0f0f0;
}

.pdn-order-number {
    color: var(--color-nursery-green);
    font-weight: 600;
    text-decoration: none;
}

.pdn-order-number:hover {
    color: var(--color-puppy-gold);
}

.pdn-order-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.pdn-status-pending,
.pdn-status-on-hold {
    background: #fff3cd;
    color: #856404;
}

.pdn-status-processing {
    background: #cce5ff;
    color: #004085;
}

.pdn-status-completed {
    background: #d4edda;
    color: #155724;
}

.pdn-status-cancelled,
.pdn-status-failed,
.pdn-status-refunded {
    background: #f8f9fa;
    color: #721c24;
}

.pdn-view-btn,
.pdn-action-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-nursery-green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pdn-view-btn:hover,
.pdn-action-btn:hover {
    background: var(--color-puppy-gold);
    color: #ffffff;
}

/* Mobile Order Cards */
.pdn-order-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.pdn-order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.pdn-order-card-body {
    padding: 15px;
}

.pdn-order-detail {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.pdn-order-detail:last-child {
    border-bottom: none;
}

.pdn-detail-label {
    color: var(--color-text-light);
    font-size: 14px;
}

.pdn-detail-value {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 14px;
}

.pdn-order-card-footer {
    padding: 15px;
    background: #fafafa;
    text-align: center;
}

/* No Orders State */
.pdn-no-orders {
    text-align: center;
    padding: 60px 20px;
}

.pdn-no-orders-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-nursery-green) 0%, #79a85f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.pdn-no-orders-icon i {
    font-size: 40px;
    color: #ffffff;
}

.pdn-no-orders h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.pdn-no-orders p {
    color: var(--color-text-light);
    margin-bottom: 25px;
}

/* Dashboard CTA */
.pdn-dashboard-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    border-radius: 16px;
    padding: 30px;
    margin-top: 25px;
}

.pdn-cta-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.pdn-cta-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdn-cta-icon i {
    font-size: 30px;
    color: var(--color-nursery-green);
}

.pdn-cta-text {
    flex: 1;
    min-width: 200px;
}

.pdn-cta-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.pdn-cta-text p {
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
}

/* Address Cards */
.pdn-address-card {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.pdn-address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #f0f0f0;
}

.pdn-address-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
}

.pdn-address-title i {
    color: var(--color-nursery-green);
}

.pdn-edit-link {
    color: var(--color-nursery-green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.pdn-edit-link:hover {
    color: var(--color-puppy-gold);
}

.pdn-address-card-body {
    padding: 20px;
}

.pdn-address-card-body address {
    font-style: normal;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.pdn-no-address {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.pdn-no-address i {
    color: var(--color-puppy-gold);
}

/* Form Sections */
.pdn-form-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}

.pdn-form-section .pdn-section-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8e8e8;
}

.pdn-section-note {
    font-size: 14px;
    color: var(--color-text-light);
}

.pdn-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Pagination */
.pdn-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #f0f0f0;
}

/* WooCommerce Form Field Overrides */
.woocommerce-address-fields .pdn-form-group,
.woocommerce-address-fields .form-row {
    margin-bottom: 20px;
}

.woocommerce-address-fields label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.woocommerce-address-fields .pdn-form-input,
.woocommerce-address-fields .input-text,
.woocommerce-address-fields select {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.woocommerce-address-fields .pdn-form-input:focus,
.woocommerce-address-fields .input-text:focus,
.woocommerce-address-fields select:focus {
    outline: none;
    border-color: var(--color-nursery-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(138, 187, 111, 0.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .pdn-account-nav {
        position: static;
        margin-bottom: 25px;
    }

    .pdn-nav-header {
        padding: 20px 15px;
    }

    .pdn-nav-avatar img,
    .pdn-avatar-img {
        width: 60px;
        height: 60px;
    }

    .pdn-account-content {
        padding: 20px;
    }

    .pdn-auth-container {
        padding: 20px 15px;
    }

    .pdn-auth-card {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .pdn-header-account {
        margin-left: 10px;
    }

    .pdn-account-link {
        width: 28px;
        height: 28px;
    }

    .pdn-account-link i {
        font-size: 12px;
    }

    .pdn-dashboard-welcome {
        padding: 20px;
    }

    .pdn-welcome-title {
        font-size: 20px;
    }

    .pdn-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .pdn-form-actions {
        flex-direction: column;
    }

    .pdn-form-actions .pdn-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .pdn-header-account {
        display: none;
    }

    .pdn-auth-title {
        font-size: 22px;
    }

    .pdn-auth-icon {
        width: 60px;
        height: 60px;
    }

    .pdn-auth-icon i {
        font-size: 26px;
    }
}
