/*
Theme Name: Petsure
Theme URI: https://example.com/petsure
Description: Petsure is a premium WordPress theme designed for veterinary clinics, animal hospitals, pet care centers, pet grooming salons, pet hotels, pet daycare services, pet wellness businesses and animal healthcare professionals. Built with a modern, elegant and fully responsive design, Petsure includes WooCommerce support, Elementor compatibility, one-click demo import, customizable layouts, advanced theme options, SEO-friendly code, fast performance, translation readiness and a flexible design system to create professional websites for the pet care industry.
Author: Vortix | Estudio Creativo
Author URI: https://vortixestudio.com/
Version: 1.0.0
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: petsure
Domain Path: /languages
Tags: veterinary, veterinary-clinic, animal-hospital, pet-care, pet-wellness, pet-grooming, pet-hotel, pet-daycare, veterinarian, animal-health, healthcare, medical, clinic, pet-services, pet-store, pet-food, pet-adoption, business, corporate, blog, ecommerce, woocommerce, elementor, responsive-layout, custom-logo, custom-menu, custom-colors, featured-images, editor-style, threaded-comments, translation-ready, one-column, two-columns, three-columns, four-columns
*/

/*=============================================
=            CSS Custom Properties            =
=============================================*/
:root {
    --petsure-primary: #3A1916;
    --petsure-primary-rgb: 58, 25, 22;
    --petsure-secondary: #FCF5E8;
    --petsure-secondary-rgb: 252, 245, 232;
    --petsure-text: #666666;
    --petsure-accent: #D85245;
    --petsure-accent-rgb: 226, 94, 82;
    --petsure-background: #FFFDF9;
    --petsure-background-rgb: 255, 253, 249;
    --petsure-white: #FFFFFF;
    --petsure-black: #000000;
    --petsure-divider: #3A19161A;
    --petsure-dark-divider: #FFFDF91A;

    --petsure-font-primary: "Bricolage Grotesque", sans-serif;
    --petsure-font-secondary: "Bricolage Grotesque", sans-serif;
    --petsure-font-text: "Bricolage Grotesque", sans-serif;
    --petsure-font-accent: "Bricolage Grotesque", sans-serif;

    --petsure-heading-weight: 700;
    --petsure-body-size: 16px;
    --petsure-body-line-height: 1.6em;

    /* Layout */
    --petsure-container-max: 1500px;
    --petsure-content-max: 1300px;
    --petsure-border-radius: 10px;
    --petsure-border-radius-lg: 20px;

    /* Semantic */
    --petsure-success: #2ecc71;
    --petsure-success-rgb: 46, 204, 113;
    --petsure-error: #e74c3c;
    --petsure-error-rgb: 231, 76, 60;
}

/*=============================================
=            Base Styles                      =
=============================================*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--petsure-font-text);
    font-size: var(--petsure-body-size);
    font-weight: 400;
    line-height: var(--petsure-body-line-height);
    color: var(--petsure-text);
    background: var(--petsure-background);
}

img {
    max-width: 100%;
    height: auto;
}

p {
    line-height: 1.6em;
    margin-bottom: 1.5em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--petsure-heading-weight);
    margin: 0;
    line-height: 1.1em;
    color: var(--petsure-primary);
}

figure {
    margin: 0;
}

iframe {
    max-width: 100%;
}

/*=============================================
=            Container                        =
=============================================*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

/*=============================================
=            Grid Columns                     =
=============================================*/
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/*=============================================
=            Buttons                          =
=============================================*/
.btn-default {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--petsure-white);
    background: var(--petsure-accent);
    border-radius: var(--petsure-border-radius);
    padding: 10px 20px;
    border: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--petsure-primary);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-back-home i {
    font-size: 14px;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.btn-back-home:hover i {
    transform: scale(1.15);
}

/*=============================================
=            Preloader                        =
=============================================*/
.theme-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background-color: var(--petsure-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-preloader .loading-container,
.theme-preloader .loading-container .loading {
    width: auto;
    height: auto;
    aspect-ratio: 1;
    position: relative;
    border-radius: 100%;
}

.theme-preloader .loading-container {
    margin: 40px auto;
    padding: 40px;
}

.theme-preloader .loading-container .loading {
    border: 1px solid transparent;
    border-color: transparent var(--petsure-white) transparent var(--petsure-white);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.theme-preloader .loading-container #loading-icon {
    position: relative;
    max-width: max-content;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-preloader .loading-container .preloader-img,
.theme-preloader .loading-container svg {
    max-width: 70px;
    max-height: 70px;
    display: block;
    width: 100%;
    object-fit: contain;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Preloader fade-out animation */
.theme-preloader.petsure-preloader-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.theme-preloader .loading-container svg {
    fill: var(--petsure-white);
}


/*=============================================
=            Custom Scrollbar                 =
=============================================*/
body.fancy-scrollbar::-webkit-scrollbar-track {
    background-color: var(--petsure-primary);
    border-left: 1px solid var(--petsure-primary);
}

body.fancy-scrollbar::-webkit-scrollbar {
    width: 9px;
    background-color: var(--petsure-primary);
}

body.fancy-scrollbar::-webkit-scrollbar-thumb {
    background: var(--petsure-accent);
    border-radius: 6px;
}

/*=============================================
=            Magic Cursor                     =
=============================================*/
#magic-cursor {
    position: absolute;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 1000000;
}

#ball {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: var(--petsure-accent);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    border: none;
    opacity: 1;
}

/*=============================================
=            Header                           =
=============================================*/
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid var(--petsure-dark-divider);
}

/* Admin bar offset */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* Preloader behind admin bar */
body.admin-bar .theme-preloader {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .theme-preloader {
        top: 46px;
    }
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Site Branding (logo + title + tagline) */
.site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-header .header-inner .site-branding {
    flex-shrink: 0;
}

.site-header .header-inner .site-branding a {
    display: inline-block;
    box-shadow: none !important;
    outline: none !important;
}

.site-logo img {
    max-height: 50px;
    width: auto;
    display: inline-block;
}

.site-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--petsure-white);
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-title a:hover {
    color: var(--petsure-accent);
}

.site-description {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.7);
}

/* Logo variants: fallback when plugin is not active.
   When petsure-core is active, these are controlled via
   data-* attributes in header-style-1.css */
body:not(.petsure-core-active) .site-logo .logo-light {
    display: block;
}

body:not(.petsure-core-active) .site-logo .logo-dark {
    display: none;
}

body:not(.petsure-core-active).petsure-has-page-header .site-logo .logo-light {
    display: block;
}

body:not(.petsure-core-active).petsure-has-page-header .site-logo .logo-dark {
    display: none;
}

body:not(.petsure-core-active):not(.petsure-has-page-header) .site-logo .logo-dark {
    display: block;
}

body:not(.petsure-core-active):not(.petsure-has-page-header) .site-logo .logo-light {
    display: none;
}

.main-navigation>ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
    gap: 20px;
    min-height: 70px;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--petsure-white);
    padding: 0px 10px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item>a,
.main-navigation ul li.current-menu-parent>a,
.main-navigation ul li.current-menu-ancestor>a {
    color: var(--petsure-accent);
}

.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--petsure-primary);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(var(--petsure-text-rgb), 0.15);
    z-index: 200;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transition-delay: 0s;
}

.main-navigation ul ul li {
    width: 100%;
    list-style: none;
}

.main-navigation ul ul a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    font-size: 15px;
    white-space: nowrap;
    color: var(--petsure-white);
    border-radius: 8px;
}

.main-navigation ul ul a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--petsure-accent);
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.menu-item-has-children:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/*=============================================
=  Dropdown Chevron Indicators               =
=============================================*/
.main-navigation ul li.menu-item-has-children>a::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 10px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.25s ease;
    line-height: 1;
}

.main-navigation ul li.menu-item-has-children:hover>a::after,
.main-navigation ul li.menu-item-has-children.current-menu-item>a::after,
.main-navigation ul li.menu-item-has-children.current-menu-parent>a::after,
.main-navigation ul li.menu-item-has-children.current-menu-ancestor>a::after {
    transform: rotate(180deg);
}

.main-navigation ul ul li.menu-item-has-children>a::after {
    content: '\f054';
    margin-left: auto;
    flex-shrink: 0;
    transform: none;
}

.main-navigation ul ul li.menu-item-has-children:hover>a::after {
    transform: translateX(3px);
}

/*=============================================
=  Dropdown Sub-menus (fallback header)       =
=============================================*/
.site-header-fallback .main-navigation ul li {
    position: relative;
}

.site-header-fallback .main-navigation ul li.menu-item-has-children>a::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 10px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.2s ease;
    line-height: 1;
}

.site-header-fallback .main-navigation ul li.menu-item-has-children:hover>a::after,
.site-header-fallback .main-navigation ul li.menu-item-has-children.current-menu-parent>a::after,
.site-header-fallback .main-navigation ul li.menu-item-has-children.current-menu-ancestor>a::after {
    transform: rotate(180deg);
}

.site-header-fallback .main-navigation>ul>li>ul {
    position: absolute;
    top: 100%;
    min-width: 220px;
    background: var(--petsure-primary);
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 8px 24px rgba(var(--petsure-text-rgb), 0.15);
    z-index: 200;
    flex-direction: column;
    gap: 0;
}

.site-header-fallback .main-navigation ul ul li {
    width: 100%;
    list-style: none;
}

.site-header-fallback .main-navigation ul ul a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    font-size: 15px;
    white-space: nowrap;
    color: var(--petsure-white);
    border-radius: 8px;
}

.site-header-fallback .main-navigation ul ul a:hover {
    color: var(--petsure-accent);
}

.site-header-fallback .main-navigation ul ul li.menu-item-has-children>a::after {
    content: '\f054';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 10px;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
}

.site-header-fallback .main-navigation ul ul li.menu-item-has-children:hover>a::after {
    transform: translateX(3px);
}

/*=============================================
=  Nested sub-menus: base position (nivel 2+) =
=============================================*/

/*
 * El transform base de entrada/salida se mantiene aquí.
 * left/right son sobrescritos por .sub-menu-right o .sub-menu-left (JS).
 * NO se define left: 100% aquí para que las clases del JS tengan control total.
 */
.main-navigation ul ul ul {
    top: 0;
    left: 100%;
    right: auto;
    margin-left: 1px;
    margin-right: 0;
    transform: translateX(-8px);
}

.main-navigation ul ul li:hover>ul {
    transform: translateX(0);
}

/*=============================================
=  Smart Sub-menu Positioning (JS-driven)     =
=============================================*/

/*
 * Nivel 1 (top-level dropdown):
 * JS escribe style.left / style.right inline directamente.
 * No se necesita clase CSS — el JS controla el valor exacto en píxeles.
 */

/*
 * Nivel 2+ flyout hacia la DERECHA
 * Se aplica cuando hay espacio a la derecha del li padre.
 */
.main-navigation ul ul li>.sub-menu-right {
    left: 100% !important;
    right: auto !important;
    margin-left: 1px;
    margin-right: 0;
    transform: translateX(-8px);
}

.main-navigation ul ul li:hover>.sub-menu-right {
    transform: translateX(0) !important;
}

/*
 * Nivel 2+ flyout hacia la IZQUIERDA
 * Se aplica cuando no hay espacio a la derecha del li padre.
 */
.main-navigation ul ul li>.sub-menu-left {
    left: auto !important;
    right: 100% !important;
    margin-left: 0;
    margin-right: 1px;
    transform: translateX(8px);
}

.main-navigation ul ul li:hover>.sub-menu-left {
    transform: translateX(0) !important;
}

/*=============================================
=            Page Header                      =
=============================================*/
.page-header {
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 265px 0 150px;
    overflow: hidden;
    background-color: var(--petsure-primary);
    background-image: var(--petsure-header-bg), url("assets/images/page-header-bg.jpg");
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--petsure-primary);
    opacity: 0.8;
    z-index: 1;
}

.page-header-box {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header-box h1 {
    font-size: 80px;
    letter-spacing: -0.02em;
    color: var(--petsure-white);
    margin-bottom: 10px;
    word-wrap: break-word;
}

.breadcrumbs {
    color: var(--petsure-white);
}

.breadcrumbs a {
    color: var(--petsure-white);
    transition: all 0.3s ease-in-out;
}

.breadcrumbs a:hover {
    color: var(--petsure-accent);
}

/*=============================================
=            Blog / Archive / Search           =
=============================================*/
.blog-archive,
.shop-archive,
.single-page {
    padding: 60px 0;
}

.post-thumbnail {
    position: relative;
    height: 260px;
    margin-bottom: 20px;
    border-radius: var(--petsure-border-radius-lg);
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
    display: block;
}

.post-item:hover .post-thumbnail img,
.search-result-item:hover .post-thumbnail img,
.archive-item:hover .post-thumbnail img {
    transform: scale(1.15);
}

.post-item-content,
.search-result-content,
.archive-item-content {
    border-bottom: 1px solid var(--petsure-divider);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.post-item-content h2,
.search-result-content h2,
.archive-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
    word-wrap: break-word;
}

.post-item-content h2 a,
.search-result-content h2 a,
.archive-item-content h2 a {
    color: var(--petsure-primary);
    transition: all 0.3s ease-in-out;
}

.post-item-content h2 a:hover,
.search-result-content h2 a:hover,
.archive-item-content h2 a:hover {
    color: var(--petsure-accent);
}

.fallback-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
}

.post-meta {
    font-size: 14px;
    color: var(--petsure-text);
    margin-bottom: 10px;
}

.post-meta a {
    color: var(--petsure-accent);
    transition: all 0.3s ease-in-out;
}

.post-meta a:hover {
    color: var(--petsure-primary);
}

.post-meta span {
    margin-right: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    color: var(--petsure-primary);
    transition: all 0.3s ease-in-out;
}

.read-more i {
    font-size: 12px;
    transition: transform 0.3s ease-in-out;
}

.read-more:hover i {
    transform: translateX(4px);
}

.read-more:hover {
    color: var(--petsure-accent);
}

/* Pagination */
.pagination .nav-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .nav-links a,
.pagination .nav-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--petsure-secondary);
    color: var(--petsure-primary);
    border-radius: var(--petsure-border-radius);
    width: 40px;
    height: 40px;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

.pagination .nav-links span.current,
.pagination .nav-links a:hover {
    background: var(--petsure-accent);
    color: var(--petsure-white);
}

/*=============================================
=            Single Post                      =
=============================================*/
.single-post-article {
    padding: 60px 0;
}

.home .single-page,
.home .single-post-article {
    padding-top: 0;
}

.post-single-thumbnail {
    margin-bottom: 30px;
    overflow: hidden;
}

.post-single-thumbnail img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: var(--petsure-border-radius-lg);
}

.post-content-wrap {
    max-width: 1250px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--petsure-divider);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry a:not(.wp-block-button__link, .btn-default, .petsure-btn, .petsure-cta-phone-link, .petsure-cta-phone-button, .petsure-blog-read-more, .petsure-pricing-button, .petsure-icon-box-btn, .petsure-icon-box-link, .petsure-cta-button, .petsure-hero-cta-btn, .petsure-team-name-link, .petsure-testimonial-nav, .petsure-team-social a, .petsure-service-link, .petsure-badges-cta-link, .petsure-test-cta-link, .petsure-blog-category-badge, .petsure-blog-title a, .petsure-text-path-link, .petsure-about-phone-link, .petsure-about-bottom-cta-link, .petsure-text-path-wrapper a, .petsure-wc-cta-link) {
    color: var(--petsure-accent);
}

.post-entry a {
    outline: none !important;
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    letter-spacing: 0;
    margin: 0.6em 0;
    color: var(--petsure-primary);
}

.post-entry h1 {
    font-size: 40px;
}

.post-entry h2 {
    font-size: 36px;
}

.post-entry h3 {
    font-size: 26px;
}

.post-entry h4 {
    font-size: 22px;
}

.post-entry h5 {
    font-size: 18px;
}

.post-entry h6 {
    font-size: 16px;
}

.post-entry ul:not(.elementor-editor-active ul),
.post-entry ol:not(.elementor-editor-active ol) {
    padding-left: 20px;
    margin: 20px 0;
}

.post-entry ul li,
.post-entry ol li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--petsure-text);
}

.post-entry blockquote {
    background: var(--petsure-accent);
    border-radius: var(--petsure-border-radius-lg);
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
    color: var(--petsure-white);
}

.post-entry blockquote p {
    font-size: 20px;
    color: var(--petsure-white);
    font-weight: 600;
}

.post-entry blockquote cite {
    font-size: 18px;
    color: var(--petsure-white);
}

.post-tags {
    margin-top: 30px;
}

.tag-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    background: var(--petsure-accent);
    color: var(--petsure-white);
    border-radius: var(--petsure-border-radius);
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.tag-links a:hover {
    background: var(--petsure-primary);
}

/*=============================================
=            404 Page                         =
=============================================*/
.error-page {
    padding: 60px 0;
    text-align: center;
}

.error-page h1 {
    font-size: 120px;
    color: var(--petsure-accent);
    line-height: 1;
}

.error-page h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.error-page .btn-default {
    margin-top: 30px;
}

/*=============================================
=            Footer                           =
=============================================*/
.site-footer {
    background-color: var(--petsure-primary);
    padding: 60px 0 0;
    color: var(--petsure-white);
}

.footer-widgets {
    padding-bottom: 40px;
}

.footer-widgets .widget {
    margin-bottom: 30px;
    background-color: transparent;
    padding: 0 !important;
}

.footer-widgets .widget-title {
    color: var(--petsure-white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widgets a {
    position: relative;
    color: var(--petsure-white);
    text-decoration: none;
    display: inline-block;
    transition: all 0.6s ease-in-out;
}

.footer-widgets a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--petsure-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.6s ease-in-out;
}

.footer-widgets a:hover::after {
    transform: scaleX(1);
    background: var(--petsure-accent);
}

.footer-widgets a:hover {
    color: var(--petsure-accent);
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widgets ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.footer-widgets ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-color: var(--petsure-accent);
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E25E52"><path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z"/></svg>') center/cover no-repeat;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E25E52"><path d="M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z"/></svg>') center/cover no-repeat;
}

.footer-bottom {
    border-top: 1px solid var(--petsure-dark-divider);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--petsure-white);
    margin: 0;
    font-size: 14px;
}

.footer-bottom a {
    position: relative;
    color: var(--petsure-accent);
    text-decoration: none;
    display: inline-block;
    transition: all ease-in-out .6s;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--petsure-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: all ease-in-out .6s;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
    background: var(--petsure-secondary);
}

.footer-bottom a:hover {
    color: var(--petsure-secondary);
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
    width: auto;
}

/*=============================================
=            Sidebar                          =
=============================================*/
.widget {
    background: var(--petsure-secondary);
    padding: 30px;
    border-radius: var(--petsure-border-radius-lg);
    margin-bottom: 30px;
}

.widget-title,
.widget .wp-block-group .wp-block-heading {
    font-size: 20px;
    color: var(--petsure-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--petsure-divider);
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget ul li {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--petsure-primary);
}

.widget ul li a,
.widget .wp-block-latest-comments a {
    color: var(--petsure-primary);
    transition: all 0.3s ease-in-out;
}

.widget ul li a:hover,
.widget .wp-block-latest-comments a:hover {
    color: var(--petsure-accent);
}

.widget select {
    width: 100%;
    padding: 12px 36px 12px 14px;
    border: 1px solid var(--petsure-divider);
    border-radius: var(--petsure-border-radius);
    background: var(--petsure-white);
    color: var(--petsure-primary);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.widget select:hover {
    border-color: var(--petsure-accent);
}

.widget select:focus {
    border-color: var(--petsure-accent);
    outline: none;
}

.widget .search-form {
    display: flex;
}

.widget .search-form label {
    flex: 1;
}

.widget .search-form input[type="search"] {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: var(--petsure-border-radius) 0 0 var(--petsure-border-radius);
    background: var(--petsure-white);
}

.widget .search-form input[type="submit"],
.widget .search-submit {
    padding: 10px 20px;
    border: none;
    border-radius: 0 var(--petsure-border-radius) var(--petsure-border-radius) 0;
    background: var(--petsure-accent);
    color: var(--petsure-white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.widget .search-form input[type="submit"]:hover,
.widget .search-submit:hover {
    background: var(--petsure-primary);
}

/*=============================================
=            Comments                         =
=============================================*/
.comment-box {
    max-width: 1250px;
    margin: 0 auto;
}

.comment-reply-title,
.comments-title {
    color: var(--petsure-primary);
    font-size: 30px;
    margin-bottom: 30px;
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.comment-form>* {
    width: 100%;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
    width: calc(33.33% - 14px);
}

.comment-form label {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 18px 20px;
    border: none;
    color: var(--petsure-text);
    background: var(--petsure-secondary);
    border-radius: var(--petsure-border-radius);
    outline: 0;
}

.comment-form .form-submit .submit {
    display: inline-block;
    background: var(--petsure-accent);
    color: var(--petsure-white);
    font-size: 16px;
    font-weight: 600;
    line-height: 1em;
    border: none;
    padding: 18px 24px;
    border-radius: var(--petsure-border-radius);
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.comment-form .form-submit .submit:hover {
    background: var(--petsure-primary);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.comment-list .comment-body {
    border-top: 1px solid var(--petsure-divider);
    padding-top: 30px;
    margin-top: 30px;
}

.comment-list .comment-author img {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-meta a {
    color: var(--petsure-text);
}

/*=============================================
=            Utility Classes                  =
=============================================*/
/* Display */
.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }
}

/* Flexbox */
.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

/* Text alignment */
.text-left {
    text-align: left !important;
}

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

.text-right {
    text-align: right !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    .text-sm-right {
        text-align: right !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-right {
        text-align: right !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-right {
        text-align: right !important;
    }
}

/* Spacing — Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.me-auto {
    margin-right: auto !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Spacing — Padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

/* Gap */
.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

/* Width / Height */
.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* Visibility */
.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

/* Floating */
.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: '';
}

/*=============================================
=            Elementor Compatibility          =
=============================================*/
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0;
}

.elementor-widget-button {
    line-height: 0;
}

/* Section Title with paw icon */
.section-title {
    line-height: 0;
}

.section-title .elementor-heading-title {
    padding-left: 30px;
    display: inline-block;
    position: relative;
}

.section-title .elementor-heading-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--petsure-accent);
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23E25E52"><path d="M10 0L12.5 6.5L19.5 7.5L14.5 12L15.5 19L10 15.5L4.5 19L5.5 12L0.5 7.5L7.5 6.5L10 0Z"/></svg>') center/cover no-repeat;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23E25E52"><path d="M10 0L12.5 6.5L19.5 7.5L14.5 12L15.5 19L10 15.5L4.5 19L5.5 12L0.5 7.5L7.5 6.5L10 0Z"/></svg>') center/cover no-repeat;
    width: 20px;
    height: 20px;
}

/*=============================================
=            Shiny Glass Effect               =
=============================================*/
.shiny-glass-effect {
    position: relative;
    overflow: hidden;
}

.shiny-glass-effect:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.shiny-glass-effect:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

/*=============================================
=            Animations                       =
=============================================*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fadeInUp {
    animation-name: fadeInUp;
}

/*=============================================
=            Responsive                       =
=============================================*/
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 1440px) {
    .post-content-wrap {
        max-width: 1100px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/*=============================================
=            Menu Toggle (Hamburger)          =
=============================================*/
.menu-toggle {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
    z-index: 200;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.menu-toggle:hover {
    background: var(--petsure-accent);
}

.menu-toggle .hamburger-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 14px;
}

.menu-toggle .hamburger-inner span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--petsure-white);
    border-radius: 2px;
    transition: all 0.25s ease-out;
}

.menu-toggle .hamburger-inner span:nth-child(1) {
    top: 0;
}

.menu-toggle .hamburger-inner span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
}

.menu-toggle .hamburger-inner span:nth-child(3) {
    bottom: 0;
}

.menu-toggle:hover .hamburger-inner span {
    background-color: var(--petsure-white);
}

.menu-toggle:hover .hamburger-inner span:nth-child(2) {
    width: 100%;
}

/*=============================================
=            Mobile Menu Panel & Overlay      =
=============================================*/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--petsure-primary-rgb), 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--petsure-background);
    z-index: 400;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
    box-shadow: -8px 0 30px rgba(var(--petsure-text-rgb), 0.12);
}

body.admin-bar .mobile-menu-panel {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-menu-panel {
        top: 46px;
    }
}

body.admin-bar .mobile-menu-overlay {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-menu-overlay {
        top: 46px;
    }
}

body.menu-open .mobile-menu-panel {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 16px;
    border-bottom: 1px solid var(--petsure-divider);
}

.mobile-menu-logo img {
    max-height: 50px !important;
    width: auto !important;
    display: block;
}

.mobile-menu-close {
    position: relative;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: var(--petsure-secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.mobile-menu-close:hover {
    background: var(--petsure-accent);
}

.mobile-menu-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--petsure-primary);
    border-radius: 1px;
}

.mobile-menu-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-close:hover span {
    background-color: var(--petsure-white);
}

.mobile-navigation {
    padding: 12px 0;
}

.mobile-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-primary-menu li {
    border-bottom: 1px solid var(--petsure-secondary);
}

.mobile-primary-menu li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--petsure-primary);
    transition: color 0.2s, background 0.2s;
    position: relative;
}

.mobile-primary-menu li a:hover {
    color: var(--petsure-accent);
    background: var(--petsure-secondary);
}

.mobile-primary-menu li.current-menu-item a {
    color: var(--petsure-accent);
    border-left: 3px solid var(--petsure-accent);
}

/* Mobile sub-menus: collapsed by default with slide animation */
.mobile-primary-menu ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--petsure-secondary);
}

.mobile-primary-menu .menu-item-has-children.open>ul {
    max-height: 1000px;
}

.mobile-primary-menu ul a {
    padding-left: 40px;
    font-size: 15px;
    font-weight: 500;
}

.mobile-primary-menu ul ul a {
    padding-left: 56px;
    font-size: 14px;
}

.mobile-primary-menu li.menu-item-has-children {
    position: relative;
}

.mobile-primary-menu li.menu-item-has-children>a::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.25s ease;
    line-height: 1;
}

.mobile-primary-menu li.menu-item-has-children.open>a::after {
    transform: translateY(-50%) rotate(180deg);
}

@media only screen and (max-width: 1024px) {
    .main-navigation ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-header .header-inner {
        align-items: center;
    }
}

@media only screen and (max-width: 991px) {
    #magic-cursor {
        display: none;
    }

    .page-header {
        padding: 170px 0 80px;
    }

    .page-header-box h1 {
        font-size: 54px;
    }

    .blog-archive,
    .shop-archive {
        padding: 50px 0;
    }

    .single-post-article {
        padding: 50px 0;
    }

    .post-thumbnail {
        margin-bottom: 15px;
    }

    .post-item-content {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page h2 {
        font-size: 38px;
    }

    .comment-form .comment-form-author,
    .comment-form .comment-form-email,
    .comment-form .comment-form-url {
        width: 100%;
    }

    .site-footer {
        padding: 40px 0 0;
    }

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

@media only screen and (max-width: 767px) {
    .page-header-box h1 {
        font-size: 28px;
    }

    .post-item-content h2 {
        font-size: 18px;
    }

    .post-single-thumbnail img {
        aspect-ratio: 1 / 0.70;
    }

    .post-entry h1 {
        font-size: 28px;
    }

    .post-entry h2 {
        font-size: 24px;
    }

    .post-entry h3 {
        font-size: 20px;
    }

    .post-entry blockquote {
        padding: 60px 15px 15px;
    }

    .error-page h1 {
        font-size: 80px;
    }

    .error-page h2 {
        font-size: 26px;
    }

    .widget {
        padding: 20px;
    }
}

/*=============================================
=            Gutenberg / WP Block Styles      =
=============================================*/
.wp-block-button__link {
    background: var(--petsure-accent);
    color: var(--petsure-white);
    border-radius: var(--petsure-border-radius);
    padding: 12px 24px;
    font-size: 15px !important;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.wp-block-button__link:hover {
    background: var(--petsure-primary);
    color: var(--petsure-white);
}

.wp-block-search .wp-block-search__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--petsure-primary);
}

.wp-block-search .wp-block-search__inside-wrapper {
    border: none;
    background: var(--petsure-secondary);
    border-radius: var(--petsure-border-radius);
}

.wp-block-search .wp-block-search__input {
    background: var(--petsure-white);
    border: 1px solid var(--petsure-divider);
    border-radius: var(--petsure-border-radius);
    padding: 10px 20px;
    color: var(--petsure-text);
}

.wp-block-search .wp-block-search__input::placeholder {
    color: var(--petsure-text);
    opacity: 0.6;
}

.wp-block-search .wp-block-search__input:focus {
    border-color: var(--petsure-accent);
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--petsure-accent-rgb), 0.15);
}

/* Hide the browser-native clear button (×) in search inputs */
.wp-block-search .wp-block-search__input::-webkit-search-cancel-button,
.wp-block-search .wp-block-search__input::-webkit-search-decoration,
.wp-block-search .wp-block-search__input::-webkit-search-results-button,
.wp-block-search .wp-block-search__input::-webkit-search-results-decoration {
    display: none;
    -webkit-appearance: none;
}

.wp-block-search .wp-block-search__input::-moz-search-clear-button {
    display: none;
}

.wp-block-search .wp-block-search__button {
    background: var(--petsure-accent);
    color: var(--petsure-white);
    border: none;
    border-radius: var(--petsure-border-radius);
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.wp-block-search .wp-block-search__button:hover {
    background: var(--petsure-primary);
}

.wp-block-tag-cloud a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    background: var(--petsure-accent);
    color: var(--petsure-white);
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: var(--petsure-border-radius);
    transition: all 0.3s ease-in-out;
}

.wp-block-tag-cloud a:hover {
    background: var(--petsure-primary);
}



/*=============================================
=            Search Results Page               =
=============================================*/

.search-page.single-post-article {
    padding: 80px 0;
}

.search-page.single-post-article .container>.row {
    gap: 20px;
}

.search-page.single-post-article .container>.row>.col-md-6 {
    flex: 0 0 50%;
    max-width: calc(calc(100% - 40px) / 2);
}

.search-page.single-post-article .container>.row>.col-lg-4 {
    flex: 0 0 33.3%;
    max-width: calc(calc(100% - 40px) / 3);
}

/* Tablet (768-991px): 2 columns via col-md-6 */
@media only screen and (max-width: 991px) {
    .search-page.single-post-article {
        padding: 60px 0;
    }

    .search-page.single-post-article .container>.row {
        gap: 16px;
    }

    .search-page.single-post-article .container>.row>.col-md-6 {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .search-page.single-post-article .container>.row>.col-lg-4 {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}

/* Mobile (< 768px): 1 column full width */
@media only screen and (max-width: 767px) {
    .search-page.single-post-article {
        padding: 40px 0;
    }

    .search-page.single-post-article .container>.row {
        gap: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .search-page.single-post-article .container>.row>.col-md-6,
    .search-page.single-post-article .container>.row>.col-md-6.col-lg-4,
    .search-page.single-post-article .container>.row>.col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.petsure-search-header {
    margin-bottom: 40px;
    text-align: center;
}

.petsure-search-form-wrapper {
    max-width: 560px;
    margin: 0 auto 20px;
}

.petsure-search-input-group {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--petsure-white);
    border: 2px solid var(--petsure-divider);
    border-radius: var(--petsure-border-radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.petsure-search-input-group:focus-within {
    box-shadow: 0 0 0 4px rgba(var(--petsure-accent-rgb), 0.1);
}

.petsure-search-field {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: var(--petsure-primary);
    outline: none;
    min-width: 0;
}

.petsure-search-field::placeholder {
    color: var(--petsure-text);
    opacity: 0.6;
}

.petsure-search-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    flex-shrink: 0;
    border: none;
    background: var(--petsure-accent);
    color: var(--petsure-white);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.petsure-search-submit:hover {
    background: var(--petsure-primary);
}

.petsure-search-count {
    font-size: 16px;
    color: var(--petsure-text);
    margin: 0;
}

.petsure-search-count strong {
    color: var(--petsure-primary);
}

.petsure-search-no-results {
    text-align: center;
}

.petsure-search-no-results .petsure-search-form-wrapper {
    margin-bottom: 40px;
}

.petsure-search-empty-card .petsure-no-products-card {
    margin: 0 auto;
}

.post-type-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--petsure-white);
    background: var(--petsure-accent);
    padding: 2px 10px;
    border-radius: 4px;
}

.search-page .post-item,
.search-page .search-result-item {
    background: var(--petsure-white);
    border: 1px solid var(--petsure-divider);
    border-radius: var(--petsure-border-radius-lg);
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.search-page .post-item:hover,
.search-page .search-result-item:hover {
    border-color: var(--petsure-accent);
    box-shadow: 0 8px 24px rgba(var(--petsure-accent-rgb), 0.08);
}

.search-page .post-item-content,
.search-page .search-result-content {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-page .post-item-content p,
.search-page .search-result-content p {
    color: var(--petsure-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.search-page .post-item-content h2,
.search-page .search-result-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.search-page .post-item .post-meta,
.search-page .search-result-item .post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--petsure-divider);
}

.search-page .post-item .post-meta span,
.search-page .search-result-item .post-meta span {
    margin-right: 0;
    font-size: 13px;
}

.search-page .post-item .read-more,
.search-page .search-result-item .read-more {
    align-self: flex-start;
    font-size: 14px;
    padding: 8px 0;
    gap: 8px;
}



.home .site-header:not(.header-scrolled) {
    padding-top: 12px;
}

.tutor-checkout-page .tutor-checkout-container {
    max-width: 100%;
}

.tutor-container,
.tutor-container-fluid,
.tutor-container-xxl,
.tutor-container-xl,
.tutor-container-lg,
.tutor-container-md,
.tutor-container-sm {
    width: 100%;
    padding-right: var(--tutor-gutter-x, .75rem);
    padding-left: var(--tutor-gutter-x, .75rem);
    margin-left: auto;
    margin-right: auto
}

@media (min-width:576px) {

    .tutor-container-sm,
    .tutor-container {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .tutor-container-lg,
    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .tutor-container-xl,
    .tutor-container-lg,
    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 1140px
    }
}

@media (min-width:1400px) {

    .tutor-container-xxl,
    .tutor-container-xl,
    .tutor-container-lg,
    .tutor-container-md,
    .tutor-container-sm,
    .tutor-container {
        max-width: 1320px
    }
}