/*
Theme Name: Salient Child
Theme URI: https://themenectar.com
Description: Child theme for Salient
Author: Pets911
Template: salient
Version: 1.0
*/

/* =========================================================
   GLOBAL
========================================================= */

:root {
    --p911-red: #ed1c24;
    --p911-red-hover: #d71920;
    --p911-black: #111111;
    --p911-gray: #666666;
    --p911-light: #f7f9fa;
    --p911-border: #e5e5e5;
    --p911-blue: #eaf8fb;
}

html {
    scroll-behavior: smooth;
}

.pets911-product-page {
    width: 100%;
    margin: 0;
    padding: 0 !important;
    background: #ffffff;
    color: var(--p911-black);
}

/* =========================================================
   PRODUCT HERO
========================================================= */

.pets911-product-hero {
    width: 100%;
    padding: 45px 40px 55px;
    background: #ffffff;
}

.pets911-product-wrap {
    width: min(1250px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    align-items: center;
}

/* =========================================================
   CUSTOM PRODUCT GALLERY
========================================================= */

.pets911-product-gallery-custom {
    width: 100%;
    min-width: 0;
}

.pets911-gallery-main {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    box-sizing: border-box;
    background: var(--p911-light);
    border-radius: 18px;
    overflow: hidden;
}

.pets911-gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity .15s ease;
}

.pets911-gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding-bottom: 3px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.pets911-gallery-thumb {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    padding: 5px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 9px;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.pets911-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pets911-gallery-thumb.is-active {
    border-color: var(--p911-red);
    box-shadow: 0 0 0 1px var(--p911-red);
}

.pets911-gallery-thumb:hover {
    border-color: var(--p911-red);
    transform: translateY(-2px);
}

/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.pets911-product-info {
    width: 100%;
    max-width: 570px;
}

.pets911-eyebrow {
    margin: 0 0 14px;
    color: var(--p911-red);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pets911-product-title {
    margin: 0 0 14px !important;
    color: #111111;
    font-size: 52px !important;
    line-height: 1.02 !important;
    font-weight: 800;
    letter-spacing: -.045em;
}

.pets911-product-subtitle {
    max-width: 560px;
    margin: 0 0 25px !important;
    color: #5b5b5b;
    font-size: 17px;
    line-height: 1.55;
}

.pets911-reviews {
    margin: 12px 0;
}

.pets911-product-price {
    margin: 0 !important;
    color: #111111;
    font-size: 38px !important;
    line-height: 1;
    font-weight: 800;
}

.pets911-product-price del {
    font-size: 22px;
    opacity: .5;
}

.pets911-product-price ins {
    text-decoration: none;
}

.pets911-payment-note {
    margin-top: 6px;
    color: #777777;
    font-size: 14px;
}

/* HERO FEATURES */

.pets911-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin: 27px 0 !important;
}

.pets911-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222222;
    font-size: 15px;
    font-weight: 600;
}

.pets911-feature span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: var(--p911-red);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

/* ADD TO CART */

.pets911-add-to-cart {
    margin-top: 25px;
}

.pets911-add-to-cart form.cart {
    display: flex !important;
    align-items: stretch;
    gap: 10px;
    margin: 0 !important;
}

.pets911-add-to-cart .quantity {
    margin: 0 !important;
}

.pets911-add-to-cart .qty {
    min-height: 60px !important;
    border: 1px solid #dddddd !important;
    border-radius: 10px !important;
    font-size: 16px !important;
}

.pets911-add-to-cart .single_add_to_cart_button {
    flex: 1;
    min-height: 60px !important;
    margin: 0 !important;
    padding: 0 35px !important;
    background: var(--p911-red) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

.pets911-add-to-cart .single_add_to_cart_button:hover {
    background: var(--p911-red-hover) !important;
}

/* TRUST BOXES */

.pets911-purchase-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.pets911-purchase-trust > div {
    padding: 15px 8px;
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
    text-align: center;
}

.pets911-purchase-trust strong {
    display: block;
    color: #111111;
    font-size: 13px;
}

.pets911-purchase-trust span {
    display: block;
    margin-top: 3px;
    color: #777777;
    font-size: 11px;
}

/* =========================================================
   PRODUCT FEATURES SECTION
========================================================= */

.p911-features {
    width: 100%;
    padding: 75px 20px 80px;
    background: #ffffff;
    box-sizing: border-box;
}

.p911-features-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    text-align: center;
}

.p911-features-label {
    margin: 0 0 11px;
    color: var(--p911-red);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.p911-features-title {
    margin: 0 0 55px !important;
    color: #111111;
    font-size: clamp(36px, 3.5vw, 48px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.035em;
}

.p911-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
    align-items: start;
}

.p911-feature-card {
    text-align: center;
}

.p911-feature-circle {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f6;
    border: 1px solid #ececec;
    border-radius: 50%;
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.p911-feature-circle i {
    color: var(--p911-red);
    font-size: 34px;
    line-height: 1;
    transition: transform .25s ease;
}

.p911-pet-id-svg {
    display: block;
    width: 53px;
    height: 53px;
    transition: transform .25s ease;
}

.p911-feature-card:hover .p911-feature-circle {
    transform: translateY(-6px);
    border-color: var(--p911-red);
    box-shadow: 0 12px 24px rgba(239,32,40,.12);
}

.p911-feature-card:hover .p911-feature-circle i,
.p911-feature-card:hover .p911-pet-id-svg {
    transform: scale(1.1);
}

.p911-feature-card h3 {
    margin: 0 0 8px !important;
    color: #111111;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.p911-feature-card p {
    max-width: 190px;
    margin: 0 auto !important;
    color: #666666;
    font-size: 14px;
    line-height: 1.55;
}

/* =========================================================
   HOW PETS911 WORKS
========================================================= */

.p911-process {
    width: 100%;
    padding: 60px 24px;
    background: linear-gradient(135deg, #ed1c24 0%, #e21921 100%);
    box-sizing: border-box;
}

.p911-process-inner {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}

.p911-process-heading {
    margin: 0 0 38px !important;
    color: #ffffff !important;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    text-align: center;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.p911-process-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        44px
        minmax(0, 1fr)
        44px
        minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.p911-process-card {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    min-height: 185px;
    padding: 28px 26px;
    color: #ffffff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 22px;
    box-sizing: border-box;
    transition:
        background-color .25s ease,
        transform .25s ease,
        border-color .25s ease;
}

.p911-process-card:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.65);
    transform: translateY(-4px);
}

.p911-process-icon-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p911-process-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p911-red);
    background: #ffffff;
    border-radius: 50%;
}

.p911-process-icon svg {
    display: block;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.p911-process-number {
    position: absolute;
    top: -13px;
    right: -5px;
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p911-red);
    background: #ffffff;
    border: 3px solid var(--p911-red);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
}

.p911-process-title {
    margin: 0 0 9px !important;
    color: #ffffff !important;
    font-size: clamp(19px, 1.6vw, 24px);
    line-height: 1.25;
    font-weight: 750;
}

.p911-process-text {
    margin: 0 !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 15px;
    line-height: 1.55;
}

.p911-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p911-process-arrow span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--p911-red);
    background: #ffffff;
    border-radius: 50%;
}

.p911-process-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =========================================================
   PETSMO DIGITAL PROFILE
========================================================= */

.p911-profile-section {
    width: 100%;
    max-width: 1320px;
    margin: 70px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.p911-profile-inner {
    display: grid;
    grid-template-columns:
        minmax(340px, .85fr)
        minmax(520px, 1.15fr);
    align-items: center;
    gap: 36px;
}

.p911-profile-eyebrow {
    margin: 0 0 10px;
    color: var(--p911-red);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.p911-profile-title {
    max-width: 470px;
    margin: 0 0 16px !important;
    color: #111111;
    font-size: clamp(36px, 3.2vw, 52px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -.035em;
}

.p911-profile-description {
    max-width: 500px;
    margin: 0 0 24px !important;
    color: #5b5b5b;
    font-size: 16px;
    line-height: 1.58;
}

.p911-profile-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.p911-profile-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #252525;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
}

.p911-profile-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border: 2px solid var(--p911-red);
    border-radius: 50%;
    color: var(--p911-red);
    font-size: 14px;
    font-weight: 700;
}

.p911-profile-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.p911-profile-image {
    display: block;
    width: 100%;
    max-width: 1000px;
    max-height: 520px;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   COMPARISON SECTION
========================================================= */

.p911-compare-section {
    --compare-gray: #a3a7ab;
    width: 100%;
    margin: 0;
    padding: 85px 40px;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 50% 0%, rgba(237,28,36,.10), transparent 34%),
        linear-gradient(135deg, #111111 0%, #090909 100%);
    text-align: center;
}

.p911-compare-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 10px 20px;
    color: #222222;
    background: #f1f0ee;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.p911-compare-title {
    margin: 0 0 15px !important;
    color: #ffffff !important;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.04em;
}

.p911-compare-description {
    max-width: 800px;
    margin: 0 auto 38px;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.6;
}

.p911-compare-table-wrap {
    width: min(1320px, 100%);
    margin: 0 auto;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(0,0,0,.32);
    -webkit-overflow-scrolling: touch;
}

.p911-compare-table {
    width: 100%;
    min-width: 980px;
    margin: 0 !important;
    border: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    table-layout: fixed;
    background: transparent !important;
}

.p911-compare-table th,
.p911-compare-table td {
    padding: 0;
    border: 0 !important;
    border-right: 1px solid #e3e3e3 !important;
    border-bottom: 1px solid #e3e3e3 !important;
    vertical-align: middle !important;
}

.p911-compare-table th:last-child,
.p911-compare-table td:last-child {
    border-right: 0 !important;
}

.p911-compare-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.p911-compare-table thead th:first-child {
    width: 36%;
}

.p911-compare-table thead th:not(:first-child) {
    width: 21.333%;
}

.p911-compare-table thead th {
    height: 76px;
    padding: 18px 20px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 800;
    text-align: center !important;
}

.p911-compare-table thead th:first-child {
    padding-left: 28px;
    text-align: left !important;
}

.p911-compare-pets911-head {
    color: #ffffff !important;
    background: linear-gradient(135deg, #cf1118, #ed1c24) !important;
}

.p911-feature-cell {
    padding: 17px 24px !important;
    background: #ffffff !important;
    text-align: left !important;
}

.p911-feature-inner {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: center;
}

.p911-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--p911-red);
    background: rgba(237,28,36,.035);
    border: 1px solid rgba(237,28,36,.17);
    border-radius: 13px;
}

.p911-feature-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.p911-feature-copy strong {
    display: block;
    margin-bottom: 3px;
    color: #111111;
    font-size: 16px;
    font-weight: 800;
}

.p911-feature-copy span {
    display: block;
    color: #666b70;
    font-size: 13px;
    line-height: 1.4;
}

.p911-comparison-cell {
    padding: 16px !important;
    background: #ffffff !important;
    text-align: center !important;
}

.p911-pets911-cell {
    background:
        linear-gradient(180deg, rgba(237,28,36,.035), rgba(237,28,36,.065)) !important;
}

.p911-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.p911-status-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 29px;
    height: 29px;
    margin: 0 auto !important;
    border-radius: 50%;
    color: #ffffff !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 800;
}

.p911-status-icon.is-yes {
    background: var(--p911-red);
}

.p911-status-icon.is-no,
.p911-status-icon.is-neutral {
    background: var(--compare-gray);
}

.p911-status-text {
    display: block;
    color: #666b70;
    font-size: 12px;
    line-height: 1.3;
}

/* =========================================================
   FAQ
========================================================= */

.pets911-faq-section {
    width: 100%;
    padding: 90px 40px 100px;
    background: #ffffff;
}

.pets911-faq-wrap {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.pets911-faq-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.pets911-faq-header h2 {
    margin: 6px 0 18px !important;
    color: #111111;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -.04em;
}

.pets911-faq-header p {
    max-width: 680px;
    margin: 0 auto;
    color: #686868;
    font-size: 17px;
    line-height: 1.6;
}

.pets911-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.pets911-faq-column {
    display: grid;
    gap: 14px;
}

.pets911-faq-item {
    width: 100%;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    box-shadow: 0 14px 34px rgba(0,0,0,.08);
    overflow: hidden;
}

.pets911-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    padding: 22px 26px;
    color: #222222;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.pets911-faq-item summary::-webkit-details-marker {
    display: none;
}

.pets911-faq-item summary:hover {
    background: #fafafa;
}

.pets911-faq-toggle {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 1.5px solid #111111;
    border-radius: 50%;
}

.pets911-faq-toggle::before,
.pets911-faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1.5px;
    background: #111111;
    transform: translate(-50%, -50%);
}

.pets911-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.pets911-faq-item[open] .pets911-faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.pets911-faq-answer {
    padding: 0 26px 26px;
    color: #4e4e4e;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   FINAL CTA
========================================================= */

.p911-cta {
    width: 100%;
    padding: 70px 20px 85px;
    background: #ffffff;
    box-sizing: border-box;
}

.p911-cta-box {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 40px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    background: var(--p911-red);
    border-radius: 22px;
    box-sizing: border-box;
}

.p911-cta-left {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    min-width: 0;
}

.p911-cta-icon {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
}

.p911-cta-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.p911-cta-text h2 {
    margin: 0 0 10px !important;
    color: #ffffff !important;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.02em;
}

.p911-cta-text p {
    margin: 0 !important;
    color: rgba(255,255,255,.88) !important;
    font-size: 18px;
    line-height: 1.6;
}

.p911-cta-price {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,.25);
    flex-shrink: 0;
}

.p911-price-number {
    white-space: nowrap;
}

.p911-price-number,
.p911-price-number .woocommerce-Price-amount,
.p911-price-number .woocommerce-Price-currencySymbol {
    color: #ffffff !important;
    font-size: 58px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -3px;
}

.p911-price-number ins {
    text-decoration: none !important;
}

.p911-price-number del {
    display: none;
}

.p911-price-info {
    display: flex;
    flex-direction: column;
}

.p911-price-title {
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.p911-price-note {
    margin-top: 7px;
    color: rgba(255,255,255,.88) !important;
    font-size: 14px;
    line-height: 1.4;
}

.p911-cta-button,
body .p911-cta .p911-cta-button {
    min-width: 190px;
    height: 58px;
    padding: 0 30px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: #ffffff !important;
    color: #222222 !important;
    border: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
    flex-shrink: 0;
}

.p911-cta-button:hover,
body .p911-cta .p911-cta-button:hover {
    background: #222222 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =========================================================
   CHECKOUT
   IMPORTANT: NO CUSTOM COLUMN WIDTHS OR FLOATS
========================================================= */

body.woocommerce-checkout,
body.woocommerce-checkout .container-wrap {
    background: #f7f9fa !important;
}

/* Preserve Salient/WooCommerce's native checkout structure */
body.woocommerce-checkout form.checkout,
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #order_review_heading {
    width: auto !important;
    max-width: none;
}

/* Main checkout area */
body.woocommerce-checkout .woocommerce {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Hide only the added-to-cart success notice */
body.woocommerce-checkout .woocommerce-message {
    display: none !important;
}

/* Notices / coupon */
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error {
    margin-bottom: 18px !important;
    padding: 16px 20px !important;
    background: #ffffff !important;
    color: #333333 !important;
    border: 1px solid #e6e6e6 !important;
    border-left: 4px solid var(--p911-red) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
}

body.woocommerce-checkout .checkout_coupon {
    margin-bottom: 22px !important;
    padding: 20px !important;
    background: #ffffff;
    border: 1px solid #e8e8e8 !important;
    border-radius: 10px !important;
}

/* Customer details card */
body.woocommerce-checkout #customer_details {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    box-sizing: border-box;
}

/* Order review card */
body.woocommerce-checkout #order_review {
    background: #ffffff !important;
    padding: 28px !important;
    border: 1px solid #e9e9e9 !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 35px rgba(0,0,0,.05) !important;
    box-sizing: border-box;
}

/* Headings */
body.woocommerce-checkout h3,
body.woocommerce-checkout #order_review_heading {
    margin: 0 0 24px !important;
    color: #111111 !important;
    font-size: 26px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

/* Fields */
body.woocommerce-checkout .form-row {
    margin-bottom: 18px !important;
}

body.woocommerce-checkout label {
    display: block;
    margin-bottom: 7px !important;
    color: #333333;
    font-size: 14px;
    font-weight: 600;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout textarea,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container .select2-selection--single {
    min-height: 52px !important;
    background: #ffffff !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 9px !important;
    box-shadow: none !important;
    font-size: 15px !important;
}

body.woocommerce-checkout input.input-text {
    padding: 0 14px !important;
}

body.woocommerce-checkout textarea {
    padding: 13px 14px !important;
}

body.woocommerce-checkout .select2-container .select2-selection--single {
    display: flex !important;
    align-items: center !important;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout .select2-container--open .select2-selection--single {
    border-color: var(--p911-red) !important;
    outline: none !important;
}

/* Order table */
body.woocommerce-checkout .woocommerce-checkout-review-order-table {
    width: 100% !important;
    margin: 0 0 22px !important;
    border: 0 !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 16px 8px !important;
    border: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
    vertical-align: middle !important;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
    display: none;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
    color: #222222;
    font-weight: 700;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
    text-align: right;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
    color: #333333;
    font-weight: 700;
}

body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
    text-align: right;
    font-weight: 700;
}

body.woocommerce-checkout .order-total th,
body.woocommerce-checkout .order-total td {
    padding-top: 20px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
}

body.woocommerce-checkout .order-total .amount {
    color: #111111 !important;
    font-size: 22px !important;
}

/* Payment */
body.woocommerce-checkout #payment {
    margin-top: 18px;
    padding: 18px !important;
    background: #f8f8f8 !important;
    border-radius: 12px !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    padding: 0 !important;
    border: 0 !important;
}

body.woocommerce-checkout #payment .payment_box {
    background: #ffffff !important;
    border-radius: 8px !important;
}

body.woocommerce-checkout #payment .payment_box::before {
    display: none !important;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: #777777;
    font-size: 13px;
    line-height: 1.5;
}

body.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 58px;
    margin-top: 18px !important;
    background: var(--p911-red) !important;
    color: #ffffff !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    text-transform: none !important;
}

body.woocommerce-checkout #place_order:hover {
    background: #cf1118 !important;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 1100px) {
    .pets911-product-wrap {
        gap: 40px;
    }

    .p911-feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 30px;
    }

    .p911-profile-section {
        margin: 60px auto;
    }

    .p911-profile-inner {
        grid-template-columns:
            minmax(300px, .9fr)
            minmax(430px, 1.1fr);
        gap: 28px;
    }

    .p911-profile-title {
        font-size: 42px;
    }

    .p911-profile-image {
        max-height: 360px;
    }

    .p911-cta-box {
        flex-wrap: wrap;
    }

    .p911-cta-left {
        flex-basis: 100%;
    }

    .p911-cta-price {
        margin-left: 116px;
    }
}

@media screen and (max-width: 1050px) {
    .p911-process-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .p911-process-card {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
    }

    .p911-process-arrow {
        transform: rotate(90deg);
    }
}

@media screen and (max-width: 900px) {
    .p911-cta-box {
        flex-direction: column;
        padding: 45px 35px;
        text-align: center;
    }

    .p911-cta-left {
        flex-direction: column;
    }

    .p911-cta-price {
        width: 100%;
        max-width: 420px;
        margin-left: 0;
        padding-left: 0;
        padding-top: 25px;
        justify-content: center;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.25);
    }

    .p911-price-info {
        text-align: left;
    }
}

@media screen and (max-width: 767px) {
    .pets911-product-hero {
        padding: 20px 16px 40px;
    }

    .pets911-product-wrap {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pets911-gallery-main {
        height: 390px;
        padding: 20px;
        border-radius: 14px;
    }

    .pets911-gallery-thumbs {
        gap: 8px;
        margin-top: 10px;
    }

    .pets911-gallery-thumb {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .pets911-product-title {
        font-size: 40px !important;
    }

    .pets911-product-subtitle {
        font-size: 17px;
    }

    .pets911-features {
        grid-template-columns: 1fr;
    }

    .pets911-purchase-trust {
        grid-template-columns: 1fr;
    }

    .p911-features {
        padding: 60px 18px 65px;
    }

    .p911-features-title {
        margin-bottom: 42px !important;
        font-size: 34px;
    }

    .p911-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .p911-profile-section {
        margin: 50px auto;
        padding: 0 20px;
    }

    .p911-profile-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .p911-profile-title {
        max-width: none;
        font-size: 34px;
    }

    .p911-profile-description {
        max-width: none;
        font-size: 15px;
    }

    .p911-profile-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 16px;
    }

    .p911-profile-image {
        width: 106%;
        max-width: none;
        max-height: 300px;
        margin-left: -3%;
    }

    .p911-compare-section {
        padding: 60px 14px;
    }

    .p911-compare-title {
        font-size: 36px;
    }

    .p911-compare-description {
        margin-bottom: 28px;
        font-size: 15px;
    }

    .p911-compare-table {
        min-width: 880px;
    }

    .pets911-faq-section {
        padding: 65px 18px 75px;
    }

    .pets911-faq-header {
        margin-bottom: 34px;
    }

    .pets911-faq-header h2 {
        font-size: 38px;
    }

    .pets911-faq-header p {
        font-size: 15px;
    }

    .pets911-faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pets911-faq-column {
        gap: 12px;
    }

    .pets911-faq-item summary {
        min-height: 70px;
        padding: 20px;
        font-size: 14px;
    }

    .pets911-faq-answer {
        padding: 0 20px 22px;
        font-size: 13px;
    }

    body.woocommerce-checkout .woocommerce {
        width: calc(100% - 28px);
    }

    body.woocommerce-checkout #customer_details,
    body.woocommerce-checkout #order_review {
        padding: 20px !important;
    }
}

@media screen and (max-width: 620px) {
    .p911-process {
        padding: 50px 16px;
    }

    .p911-process-heading {
        margin-bottom: 30px !important;
        font-size: 28px;
    }

    .p911-process-card {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 16px;
        min-height: 0;
        padding: 23px 20px;
        border-radius: 18px;
    }

    .p911-process-icon {
        width: 64px;
        height: 64px;
    }

    .p911-process-icon svg {
        width: 28px;
        height: 28px;
    }

    .p911-process-number {
        top: -10px;
        right: -6px;
        width: 27px;
        height: 27px;
        font-size: 12px;
    }

    .p911-process-title {
        font-size: 19px;
    }

    .p911-process-text {
        font-size: 14px;
    }

    .p911-process-arrow span {
        width: 34px;
        height: 34px;
    }

    .p911-cta {
        padding: 55px 15px;
    }

    .p911-cta-box {
        padding: 35px 25px;
        gap: 28px;
        border-radius: 18px;
    }

    .p911-cta-icon {
        width: 74px;
        height: 74px;
        flex-basis: 74px;
    }

    .p911-cta-icon svg {
        width: 34px;
        height: 34px;
    }

    .p911-cta-text h2 {
        font-size: 28px;
    }

    .p911-cta-text p {
        font-size: 16px;
    }

    .p911-cta-price {
        gap: 16px;
    }

    .p911-price-number,
    .p911-price-number .woocommerce-Price-amount,
    .p911-price-number .woocommerce-Price-currencySymbol {
        font-size: 50px !important;
    }

    .p911-price-title {
        font-size: 15px;
    }

    .p911-price-note {
        font-size: 13px;
    }

    .p911-cta-button,
    body .p911-cta .p911-cta-button {
        width: 100%;
        min-width: 0;
    }
}

@media screen and (max-width: 480px) {
    .p911-feature-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .p911-feature-card p {
        max-width: 260px;
    }

    .p911-profile-title {
        font-size: 30px;
    }

    .p911-profile-benefits {
        grid-template-columns: 1fr;
    }

    .p911-profile-image {
        width: 110%;
        margin-left: -5%;
    }
}
/* =========================================================
   PETS911 CART PAGE
========================================================= */

body.woocommerce-cart {
    background: #f7f9fa;
}

body.woocommerce-cart .container-wrap {
    background: #f7f9fa !important;
}


/* MAIN WIDTH */

body.woocommerce-cart .woocommerce {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* TOP MESSAGES */

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info,
body.woocommerce-cart .woocommerce-error {
    margin-bottom: 20px !important;
    padding: 16px 20px !important;

    background: #ffffff !important;
    color: #333333 !important;

    border: 1px solid #e6e6e6 !important;
    border-left: 4px solid #ed1c24 !important;
    border-radius: 10px !important;

    box-shadow: none !important;
}


/* CART TABLE */

body.woocommerce-cart table.shop_table {
    width: 100% !important;

    margin: 0 0 24px !important;

    background: #ffffff !important;

    border: 1px solid #e8e8e8 !important;
    border-radius: 16px !important;

    border-collapse: separate !important;
    border-spacing: 0 !important;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0,0,0,.05);
}


/* TABLE HEADER */

body.woocommerce-cart table.shop_table thead th {
    padding: 18px 16px !important;

    background: #f8f8f8 !important;

    color: #555555 !important;

    border-bottom: 1px solid #e9e9e9 !important;

    font-size: 13px !important;
    font-weight: 800 !important;

    text-transform: uppercase;
    letter-spacing: .03em;
}


/* TABLE CELLS */

body.woocommerce-cart table.shop_table td {
    padding: 22px 16px !important;

    background: #ffffff !important;

    border: 0 !important;
    border-bottom: 1px solid #eeeeee !important;

    vertical-align: middle !important;
}

body.woocommerce-cart table.shop_table tr:last-child td {
    border-bottom: 0 !important;
}


/* PRODUCT IMAGE */

body.woocommerce-cart td.product-thumbnail img {
    width: 74px !important;
    height: 74px !important;

    padding: 6px;

    object-fit: contain;

    background: #f7f9fa;

    border: 1px solid #eeeeee;
    border-radius: 10px;
}


/* PRODUCT NAME */

body.woocommerce-cart td.product-name a {
    color: #111111 !important;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;
}

body.woocommerce-cart td.product-name a:hover {
    color: #ed1c24 !important;
}


/* REMOVE ICON */

body.woocommerce-cart td.product-remove a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: #777777 !important;

    background: #f5f5f5;

    border-radius: 50%;

    font-size: 18px !important;
    line-height: 1 !important;

    text-decoration: none !important;
}

body.woocommerce-cart td.product-remove a:hover {
    background: #ed1c24;

    color: #ffffff !important;
}


/* PRICE / SUBTOTAL */

body.woocommerce-cart td.product-price,
body.woocommerce-cart td.product-subtotal {
    color: #333333;

    font-weight: 700;
}


/* QUANTITY */

body.woocommerce-cart .quantity {
    margin: 0 !important;
}

body.woocommerce-cart .quantity .qty {
    min-height: 44px !important;

    border: 1px solid #dddddd !important;
    border-radius: 8px !important;

    background: #ffffff !important;
}


/* COUPON + UPDATE CART ROW */

body.woocommerce-cart .actions {
    padding: 18px !important;

    background: #ffffff !important;
}

body.woocommerce-cart .coupon {
    display: flex !important;
    gap: 10px;
}

body.woocommerce-cart .coupon input.input-text {
    min-height: 48px !important;
    min-width: 260px;

    padding: 0 14px !important;

    border: 1px solid #dcdcdc !important;
    border-radius: 8px !important;

    background: #ffffff !important;
}

body.woocommerce-cart .coupon button,
body.woocommerce-cart button[name="update_cart"] {
    min-height: 48px !important;

    padding: 0 22px !important;

    border: 0 !important;
    border-radius: 8px !important;

    background: #ed1c24 !important;
    color: #ffffff !important;

    font-weight: 700 !important;

    text-transform: none !important;

    box-shadow: none !important;
}

body.woocommerce-cart .coupon button:hover,
body.woocommerce-cart button[name="update_cart"]:hover {
    background: #cf1118 !important;
}


/* DISABLED UPDATE CART */

body.woocommerce-cart button[name="update_cart"]:disabled {
    opacity: .45 !important;
    cursor: not-allowed;
}


/* =========================================================
   CART TOTALS
========================================================= */

body.woocommerce-cart .cart-collaterals {
    margin-top: 34px;
}

body.woocommerce-cart .cart_totals {
    width: min(520px, 100%) !important;

    float: right !important;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 16px;

    box-shadow: 0 12px 35px rgba(0,0,0,.05);

    box-sizing: border-box;
}

body.woocommerce-cart .cart_totals h2 {
    margin: 0 0 22px !important;

    color: #111111;

    font-size: 28px !important;
    font-weight: 800 !important;
}


/* TOTALS TABLE */

body.woocommerce-cart .cart_totals table {
    margin: 0 0 22px !important;

    border: 0 !important;
}

body.woocommerce-cart .cart_totals th,
body.woocommerce-cart .cart_totals td {
    padding: 16px 0 !important;

    border: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
}

body.woocommerce-cart .cart_totals th {
    color: #444444;

    font-weight: 700 !important;
}

body.woocommerce-cart .cart_totals td {
    text-align: right;

    font-weight: 700 !important;
}

body.woocommerce-cart .cart_totals .order-total th,
body.woocommerce-cart .cart_totals .order-total td {
    padding-top: 20px !important;

    color: #111111;

    font-size: 20px !important;
    font-weight: 800 !important;
}


/* CHECKOUT BUTTON */

body.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0 !important;
}

body.woocommerce-cart .checkout-button {
    width: 100%;

    min-height: 58px;

    display: flex !important;
    align-items: center;
    justify-content: center;

    margin: 0 !important;

    background: #ed1c24 !important;
    color: #ffffff !important;

    border: 0 !important;
    border-radius: 10px !important;

    box-shadow: none !important;

    font-size: 17px !important;
    font-weight: 800 !important;

    text-transform: none !important;

    transition:
        background .2s ease,
        transform .2s ease;
}

body.woocommerce-cart .checkout-button:hover {
    background: #cf1118 !important;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media screen and (max-width: 767px) {

    body.woocommerce-cart .woocommerce {
        width: calc(100% - 28px);
    }

    body.woocommerce-cart table.shop_table {
        border-radius: 12px !important;
    }

    body.woocommerce-cart table.shop_table thead {
        display: none;
    }

    body.woocommerce-cart table.shop_table tr {
        display: block;

        padding: 18px;

        border-bottom: 1px solid #eeeeee;
    }

    body.woocommerce-cart table.shop_table td {
        display: flex;

        align-items: center;
        justify-content: space-between;

        gap: 20px;

        width: 100% !important;

        padding: 10px 0 !important;

        border: 0 !important;

        text-align: right !important;
    }

    body.woocommerce-cart table.shop_table td::before {
        color: #666666;

        font-weight: 700;
    }

    body.woocommerce-cart td.product-thumbnail {
        justify-content: center;
    }

    body.woocommerce-cart td.product-thumbnail::before {
        display: none;
    }

    body.woocommerce-cart td.product-remove {
        justify-content: flex-end;
    }

    body.woocommerce-cart td.product-remove::before {
        display: none;
    }

    body.woocommerce-cart .actions {
        display: block !important;
    }

    body.woocommerce-cart .coupon {
        display: grid !important;
        grid-template-columns: 1fr;

        gap: 10px;

        margin-bottom: 10px;
    }

    body.woocommerce-cart .coupon input.input-text {
        width: 100% !important;
        min-width: 0;
    }

    body.woocommerce-cart .coupon button,
    body.woocommerce-cart button[name="update_cart"] {
        width: 100%;
    }

    body.woocommerce-cart .cart_totals {
        width: 100% !important;

        float: none !important;

        padding: 22px;
    }

}