/*
Theme Name: PetiChip Animal ID
Theme URI: https://animal-id.net.ph
Author: Plaridel Products and Services
Author URI: https://animal-id.net.ph
Description: Custom WordPress theme for Pet iChip Animal ID Management System
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: petichip
*/

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #333333;
    background-color: #ffffff;
    line-height: 1.7;
}

a {
    color: #2d6a9f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e5080;
    text-decoration: underline;
}

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

ul {
    list-style: none;
}

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

/* ===================== TOP BAR ===================== */
.top-bar {
    background-color: #1e5080;
    color: #ffffff;
    font-size: 12px;
    padding: 6px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
}

.top-bar-right a {
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a:hover {
    color: #ffdddd;
    text-decoration: none;
}

/* ===================== HEADER ===================== */
.site-header {
    background-color: #ffffff;
    border-bottom: 3px solid #2d6a9f;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
    flex-wrap: nowrap;
}

.site-logo {
    flex-shrink: 0;
}

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

.site-logo .site-title-text {
    font-size: 20px;
    font-weight: 700;
    color: #2d6a9f;
    line-height: 1.2;
}

.site-logo .site-tagline {
    font-size: 11px;
    color: #2d6a9f;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

/* ===================== NAVIGATION ===================== */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.main-nav ul li a {
    display: block;
    padding: 10px 13px;
    color: #2d6a9f;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 3px;
    transition: all 0.25s;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a {
    background-color: #2d6a9f;
    color: #ffffff;
    text-decoration: none;
}

/* Dropdown arrow indicator */
.main-nav ul li.menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.8;
}

/* Dropdown */
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    border-top: 3px solid #e63329;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: 0 0 5px 5px;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav ul li:hover > ul {
    display: flex;
}

.main-nav ul li ul li a {
    padding: 10px 16px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    color: #2d6a9f;
    border-bottom: 1px solid #f0f0f0;
    background-color: transparent;
    white-space: normal;
}

.main-nav ul li ul li a:hover {
    background-color: #2d6a9f;
    color: #ffffff;
    text-decoration: none;
}

/* Client Login Button - RED */
.btn-client-login {
    background-color: #e63329 !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: background-color 0.3s !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.btn-client-login:hover {
    background-color: #c0211a !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Mobile Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid #2d6a9f;
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #2d6a9f;
    transition: all 0.3s;
}


/* Dropdown menus */
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 240px;
    border-top: 3px solid #e63329;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: 0 0 5px 5px;
    flex-direction: column;
    gap: 0;
}

.main-nav ul li:hover > ul {
    display: flex;
}

.main-nav ul li ul li a {
    padding: 10px 16px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    color: #2d6a9f;
    border-bottom: 1px solid #f0f0f0;
}

.main-nav ul li ul li a:hover {
    background-color: #2d6a9f;
    color: #ffffff;
}


/* Dropdown arrow indicator */
.main-nav ul li.menu-item-has-children > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.8;
}

/* Dropdown */
.main-nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2d6a9f;
    min-width: 240px;
    border-top: 3px solid #e63329;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 100;
    border-radius: 0 0 5px 5px;
    flex-direction: column;
    gap: 0;
}

.main-nav ul li:hover > ul {
    display: flex;
}

.main-nav ul li ul li a {
    padding: 10px 16px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-nav ul li ul li a:hover {
    background-color: rgba(255,255,255,0.15);
    color: #ffffff;
}

/* Client Login Button - RED like original */
.btn-client-login {
    background-color: #e63329 !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: background-color 0.3s !important;
    text-decoration: none !important;
}

.btn-client-login:hover {
    background-color: #c0211a !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s;
}

/* ===================== HERO / BANNER SECTION ===================== */
.hero-section {
    background: linear-gradient(180deg, #2d6a9f 0%, #1e5080 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: left;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.hero-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
    font-style: italic;
}

.hero-content .hero-tagline {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    margin-bottom: 25px;
}

/* PET iCHIP red brand highlight */
.brand-highlight {
    color: #e63329;
    font-style: normal;
}

/* Chip Search Form */
.chip-search-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 22px 26px;
    margin-top: 10px;
}

.chip-search-box label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chip-search-form {
    display: flex;
    gap: 8px;
}

.chip-search-form input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #ffffff;
    color: #333;
    outline: none;
}

.chip-search-form input[type="text"]::placeholder {
    color: #aaa;
    font-style: italic;
    font-size: 13px;
}

.chip-search-form button {
    padding: 10px 20px;
    background-color: #e63329;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.chip-search-form button:hover {
    background-color: #c0211a;
}

.chip-example {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 8px;
    font-style: italic;
}

/* Hero Right Image */
.hero-image img {
    border-radius: 8px;
    width: 100%;
    max-height: 340px;
    object-fit: cover;
}

/* ===================== QUICK ACTIONS BAR ===================== */
.quick-actions {
    background-color: #f5f5f5;
    border-top: 3px solid #e63329;
    border-bottom: 1px solid #e0e0e0;
    padding: 22px 0;
}

.quick-actions .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.quick-action-card {
    background: #ffffff;
    border-left: 4px solid #2d6a9f;
    padding: 18px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}

.quick-action-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

.quick-action-card h4 {
    font-size: 14px;
    color: #1e5080;
    margin-bottom: 6px;
    font-weight: 700;
}

.quick-action-card p {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
    line-height: 1.5;
}

.quick-action-card a {
    font-size: 12px;
    color: #e63329;
    font-weight: 600;
}

.quick-action-card a:hover {
    color: #c0211a;
    text-decoration: underline;
}

/* ===================== ABOUT / INTRO SECTION ===================== */
.about-section {
    padding: 55px 0;
    background-color: #ffffff;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 14px;
    color: #e63329;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* "What is PET iCHIP?" label style like original */
.about-content .what-label {
    font-size: 14px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-content .what-label .brand-highlight {
    color: #e63329;
}

.about-content p {
    color: #444444;
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 14px;
}

/* "How is PET iCHIP implanted?" heading - blue link style */
.about-content .section-link-heading {
    font-size: 16px;
    color: #2d6a9f;
    font-weight: 600;
    margin: 20px 0 12px;
    cursor: pointer;
}

.about-content .section-link-heading:hover {
    text-decoration: underline;
}

.about-features {
    margin: 14px 0 20px;
    padding-left: 4px;
}

.about-features li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.about-features li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #2d6a9f;
    font-weight: 700;
    font-size: 16px;
    top: 4px;
}

/* Learn More button - gray like original */
.btn-learn-more {
    display: inline-block;
    padding: 10px 24px;
    background-color: #cccccc;
    color: #333333;
    border-radius: 3px;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.3s;
    text-decoration: none;
    margin-top: 8px;
}

.btn-learn-more:hover {
    background-color: #b0b0b0;
    color: #222;
    text-decoration: none;
}

/* Printer friendly / Send by email links */
.utility-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.utility-links a {
    font-size: 12px;
    color: #2d6a9f;
    display: flex;
    align-items: center;
    gap: 5px;
}

.utility-links a:hover {
    text-decoration: underline;
}

/* About image */
.about-image img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===================== PARTNERS SECTION ===================== */
.partners-section {
    background-color: #f9f9f9;
    border-top: 1px solid #e8e8e8;
    padding: 40px 0;
    text-align: center;
}

.partners-section h2 {
    font-size: 20px;
    color: #2d6a9f;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.3s;
    max-width: 130px;
    max-height: 60px;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===================== BLOG SECTION ===================== */
.blog-section {
    padding: 55px 0;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
}

.section-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #2d6a9f;
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 20px;
    color: #2d6a9f;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-card-image {
    height: 165px;
    overflow: hidden;
    background-color: #eef3f7;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-content {
    padding: 16px;
}

.blog-card-date {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-content h3 a {
    color: #2d6a9f;
}

.blog-card-content h3 a:hover {
    color: #e63329;
    text-decoration: underline;
}

.blog-card-content p {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background-color: #1e3a52;
    color: #aab8c2;
    padding: 45px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about p {
    font-size: 13px;
    line-height: 1.8;
    color: #8fa5b5;
    margin-bottom: 14px;
}

.footer-widget h4 {
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2d6a9f;
    display: inline-block;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: #8fa5b5;
    font-size: 13px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-widget ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact-item {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    align-items: flex-start;
    color: #8fa5b5;
}

.footer-contact-item i {
    color: #2d6a9f;
    margin-top: 3px;
    min-width: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background-color: #2d6a9f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 13px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #e63329;
}

/* ===================== FOOTER BOTTOM ===================== */
.footer-bottom {
    padding: 14px 0;
    text-align: center;
    font-size: 11px;
    color: #4a6070;
    background-color: #152a3a;
}

.footer-bottom a {
    color: #2d6a9f;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #e63329;
}

/* ===================== PAGE HEADER BANNER ===================== */
.page-header-banner {
    background: linear-gradient(180deg, #2d6a9f 0%, #1e5080 100%);
    color: #fff;
    padding: 40px 0;
}

.page-header-banner h1 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.page-header-banner .breadcrumb {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.page-header-banner .breadcrumb a {
    color: rgba(255,255,255,0.8);
}

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

/* ===================== RESPONSIVE - TABLET ===================== */
@media (max-width: 992px) {
    .about-section .container {
        grid-template-columns: 1fr;
    }
    .hero-section .container {
        grid-template-columns: 1fr;
    }
    .hero-image {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-content h2 {
        font-size: 22px;
    }
    .main-nav ul li a {
        padding: 10px 10px;
        font-size: 12px;
    }
}

/* ===================== RESPONSIVE - MOBILE ===================== */
@media (max-width: 768px) {

    /* Show hamburger button */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: 2px solid #2d6a9f;
        border-radius: 4px;
        padding: 8px 10px;
        cursor: pointer;
        flex-shrink: 0;
        margin-left: auto;
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background-color: #2d6a9f;
    }

    /* Header layout on mobile */
    .header-inner {
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 0;
        gap: 10px;
    }

    .site-logo {
        flex: 1;
    }

    /* Hide nav by default on mobile */
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background-color: #f4f8fc;
        border-top: 2px solid #dce8f0;
        order: 3;
    }

    /* Show nav when toggled */
    .main-nav.open {
        display: flex !important;
    }

    /* Stack nav items vertically */
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav ul li a {
        border-radius: 0;
        border-bottom: 1px solid #dce8f0;
        color: #2d6a9f;
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        background-color: transparent;
    }

    .main-nav ul li a:hover {
        background-color: #2d6a9f;
        color: #ffffff;
    }

    /* Client Login button on mobile */
    .btn-client-login {
        margin: 10px 16px !important;
        display: inline-block !important;
        width: calc(100% - 32px) !important;
        text-align: center !important;
        border-radius: 4px !important;
    }

    /* Dropdown on mobile */
    .main-nav ul li ul {
        position: static !important;
        border-top: none !important;
        border-left: 4px solid #e63329 !important;
        box-shadow: none !important;
        background-color: #eaf1f8 !important;
        display: none !important;
        width: 100% !important;
        min-width: unset !important;
        flex-direction: column !important;
    }

    .main-nav ul li.open > ul {
        display: flex !important;
    }

    .main-nav ul li ul li a {
        color: #2d6a9f !important;
        padding-left: 28px !important;
        font-size: 12px !important;
        border-bottom: 1px solid #dce8f0 !important;
        background-color: transparent !important;
    }

    .main-nav ul li ul li a:hover {
        background-color: #2d6a9f !important;
        color: #ffffff !important;
    }

    /* Other mobile fixes */
    .chip-search-form {
        flex-direction: column;
    }

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

    .top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .partners-grid {
        gap: 25px;
    }

    .quick-actions .container {
        grid-template-columns: 1fr;
    }
}

/* ===== PetiChip Pet Detail Page ===== */
.petichip-detail-wrapper {
  max-width: 860px;
  margin: 40px auto;
  padding: 0 20px 60px;
}
.petichip-detail-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  overflow: hidden;
}
.petichip-detail-header {
  background: #003087;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 36px;
}
.chip-icon { font-size: 48px; }
.pet-name-heading {
  margin: 0 0 6px;
  font-size: 2rem;
  color: #fff;
}
.chip-number-label {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.80;
  color: #fff;
}
.petichip-detail-body { padding: 30px 36px; }
.detail-section { margin-bottom: 32px; }
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #003087;
  border-bottom: 2px solid #e8f0fe;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.detail-table { width: 100%; border-collapse: collapse; }
.detail-table th,
.detail-table td {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid #f0f0f0;
}
.detail-table th {
  width: 38%;
  color: #555;
  font-weight: 600;
  background: #f8faff;
}
.detail-table td { color: #222; }
.petichip-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 36px 36px;
  border-top: 1px solid #f0f0f0;
  background: #f8faff;
}
.btn-action {
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary  { background: #003087; color: #fff; }
.btn-primary:hover  { background: #0047c8; color: #fff; }
.btn-secondary { background: #0096d6; color: #fff; }
.btn-secondary:hover { background: #007bb8; color: #fff; }
.btn-outline { background: #fff; color: #003087; border: 2px solid #003087; }
.btn-outline:hover { background: #003087; color: #fff; }
@media (max-width: 600px) {
  .petichip-detail-header { flex-direction: column; text-align: center; padding: 24px 20px; }
  .petichip-detail-body,
  .petichip-detail-actions { padding: 20px; }
  .detail-table th,
  .detail-table td { display: block; width: 100%; }
  .detail-table th { background: none; color: #003087; padding-bottom: 2px; }
}

/* ===== PRODUCTS PAGE ===== */
.prod-hero{background:linear-gradient(135deg,#003087 0%,#0056b3 100%);color:#fff;text-align:center;padding:60px 20px 50px;}
.prod-hero h1{font-size:2.4em;margin:0 0 10px;font-weight:800;letter-spacing:1px;}
.prod-hero p{font-size:1.1em;opacity:.9;max-width:600px;margin:0 auto;}
.prod-container{max-width:1100px;margin:0 auto;padding:50px 20px;}
.prod-intro{text-align:center;margin-bottom:40px;}
.prod-intro h2{color:#003087;font-size:1.8em;margin-bottom:10px;}
.prod-intro p{color:#555;font-size:1.05em;max-width:700px;margin:0 auto;}
.prod-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(480px,1fr));gap:35px;margin-bottom:50px;}
.prod-card{background:#fff;border-radius:16px;box-shadow:0 6px 30px rgba(0,0,0,.1);overflow:hidden;border:1px solid #e8ecf0;transition:transform .2s,box-shadow .2s;}
.prod-card:hover{transform:translateY(-5px);box-shadow:0 12px 40px rgba(0,0,0,.15);}
.prod-card-header{padding:28px 28px 20px;color:#fff;position:relative;}
.prod-card-header.blue{background:linear-gradient(135deg,#003087,#0056b3);}
.prod-card-header.red{background:linear-gradient(135deg,#c0392b,#e74c3c);}
.prod-card-header.green{background:linear-gradient(135deg,#1a7a4a,#27ae60);}
.prod-card-header.purple{background:linear-gradient(135deg,#6c3483,#8e44ad);}
.prod-card-header .prod-tag{font-size:.75em;font-weight:700;letter-spacing:2px;text-transform:uppercase;opacity:.8;margin-bottom:8px;}
.prod-card-header h3{font-size:1.5em;font-weight:800;margin:0 0 6px;}
.prod-card-header p{font-size:.92em;opacity:.9;margin:0;line-height:1.5;}
.prod-card-body{padding:24px 28px;}
.prod-card-body p{color:#444;font-size:.97em;line-height:1.7;margin-bottom:16px;}
.prod-features{list-style:none;padding:0;margin:0 0 22px;}
.prod-features li{display:flex;align-items:flex-start;gap:10px;padding:8px 0;border-bottom:1px solid #f0f0f0;color:#444;font-size:.93em;line-height:1.5;}
.prod-features li:last-child{border-bottom:none;}
.prod-features li .feat-icon{font-size:1.1em;flex-shrink:0;margin-top:1px;}
.prod-badge{display:inline-block;padding:4px 12px;border-radius:20px;font-size:.78em;font-weight:700;margin:0 4px 8px 0;}
.prod-badge.iso{background:#e8f0fe;color:#003087;}
.prod-badge.temp{background:#fde8e8;color:#c0392b;}
.prod-badge.scan{background:#e8f5e9;color:#1a7a4a;}
.prod-badge.fdx{background:#f3e8ff;color:#6c3483;}
.prod-btn{display:inline-block;padding:11px 28px;border-radius:8px;font-weight:700;font-size:.95em;text-decoration:none;margin-top:6px;transition:opacity .2s;}
.prod-btn:hover{opacity:.85;}
.prod-btn.blue{background:#003087;color:#fff;}
.prod-btn.red{background:#c0392b;color:#fff;}
.prod-btn.green{background:#1a7a4a;color:#fff;}
.prod-btn.purple{background:#6c3483;color:#fff;}
.prod-cta-banner{background:#003087;color:#fff;text-align:center;padding:50px 20px;border-radius:16px;margin-bottom:20px;}
.prod-cta-banner h2{font-size:1.9em;margin:0 0 10px;}
.prod-cta-banner p{font-size:1.05em;opacity:.9;max-width:600px;margin:0 auto 25px;}
.prod-cta-banner a{display:inline-block;padding:12px 30px;border-radius:8px;font-weight:700;font-size:1em;text-decoration:none;margin:5px;}
.prod-cta-banner .cta-white{background:#fff;color:#003087;}
.prod-cta-banner .cta-outline{background:transparent;color:#fff;border:2px solid rgba(255,255,255,0.8);}
@media(max-width:768px){.prod-grid{grid-template-columns:1fr;}.prod-hero h1{font-size:1.7em;}}
