:root {
    --pet-primary: #0d9598;
    --pet-primary-dark: #075c68;
    --pet-primary-soft: #e7f8f8;
    --pet-accent: #ff7a1a;
    --pet-accent-dark: #e45f00;
    --pet-green: #20a968;
    --pet-blue: #2878df;
    --pet-purple: #7b5ce1;
    --pet-pink: #ed5d8f;
    --pet-ink: #12304b;
    --pet-text: #3d5266;
    --pet-muted: #718096;
    --pet-border: #dfe9ed;
    --pet-surface: #ffffff;
    --pet-background: #f4f8f9;
    --pet-danger: #dc3545;
    --pet-shadow: 0 18px 50px rgba(23, 57, 78, 0.10);
    --pet-shadow-soft: 0 10px 28px rgba(23, 57, 78, 0.08);
    --pet-radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--pet-background);
    color: var(--pet-text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.pet-container {
    width: min(1220px, calc(100% - 34px));
    margin-inline: auto;
}

.pet-topbar {
    background: linear-gradient(
        90deg,
        var(--pet-primary-dark),
        var(--pet-primary)
    );
    color: white;
    font-size: 13px;
}

.pet-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pet-topbar-items {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pet-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(223, 233, 237, 0.95);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.pet-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.pet-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pet-ink);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.pet-brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        var(--pet-primary),
        var(--pet-primary-dark)
    );
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(13, 149, 152, 0.24);
}

.pet-brand small {
    display: block;
    margin-top: -2px;
    color: var(--pet-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.pet-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--pet-ink);
    font-size: 14px;
    font-weight: 800;
}

.pet-nav a {
    position: relative;
    padding: 27px 0 24px;
}

.pet-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--pet-primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.pet-nav a:hover::after {
    transform: scaleX(1);
}

.pet-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pet-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 17px;
    border: 0;
    border-radius: 12px;
    background: var(--pet-primary);
    color: white;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 9px 22px rgba(13, 149, 152, 0.18);
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.pet-button:hover {
    transform: translateY(-1px);
    background: var(--pet-primary-dark);
    box-shadow: 0 13px 26px rgba(13, 149, 152, 0.25);
}

.pet-button--accent {
    background: var(--pet-accent);
    box-shadow: 0 9px 22px rgba(255, 122, 26, 0.22);
}

.pet-button--accent:hover {
    background: var(--pet-accent-dark);
}

.pet-button--light {
    border: 1px solid #b9e2e4;
    background: white;
    color: var(--pet-primary-dark);
    box-shadow: none;
}

.pet-button--danger {
    background: #fff0f1;
    color: var(--pet-danger);
    box-shadow: none;
}

.pet-button--full {
    width: 100%;
}

.pet-cart-button {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--pet-border);
    border-radius: 12px;
    background: white;
    color: var(--pet-ink);
    font-size: 20px;
}

.pet-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    padding: 0 5px;
    border: 2px solid white;
    border-radius: 99px;
    background: var(--pet-danger);
    color: white;
    font-size: 10px;
    font-weight: 900;
}

.pet-hero {
    position: relative;
    overflow: hidden;
    min-height: 555px;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(13, 149, 152, 0.14),
            transparent 24%
        ),
        radial-gradient(
            circle at 18% 80%,
            rgba(255, 122, 26, 0.12),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #f8ffff 0%,
            #e7f8f8 54%,
            #fdfaf4 100%
        );
}

.pet-hero::before,
.pet-hero::after {
    content: "🐾";
    position: absolute;
    color: rgba(13, 149, 152, 0.10);
    font-size: 62px;
    transform: rotate(-18deg);
}

.pet-hero::before {
    top: 90px;
    left: 42%;
}

.pet-hero::after {
    right: 4%;
    bottom: 38px;
    font-size: 84px;
    transform: rotate(14deg);
}

.pet-hero-inner {
    min-height: 555px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 38px;
}

.pet-hero-copy {
    position: relative;
    z-index: 3;
    padding: 64px 0 86px;
}

.pet-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--pet-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--pet-shadow-soft);
}

.pet-hero h1 {
    max-width: 620px;
    margin: 0;
    color: var(--pet-ink);
    font-size: clamp(44px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.pet-hero h1 span {
    display: block;
    color: var(--pet-primary);
}

.pet-hero p {
    max-width: 590px;
    margin: 24px 0 30px;
    color: var(--pet-text);
    font-size: 18px;
    line-height: 1.75;
}

.pet-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pet-hero-visual {
    position: relative;
    min-height: 510px;
}

.pet-hero-blob {
    position: absolute;
    top: 55px;
    right: 12px;
    width: 86%;
    height: 410px;
    border-radius: 44% 56% 48% 52% / 48% 43% 57% 52%;
    background: linear-gradient(
        150deg,
        rgba(255, 255, 255, 0.95),
        rgba(208, 242, 243, 0.92)
    );
    box-shadow: 0 32px 80px rgba(13, 149, 152, 0.18);
}

.pet-hero-dog,
.pet-hero-cat {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    border: 7px solid white;
    border-radius: 34px;
    background: #dff4f4;
    object-fit: cover;
    box-shadow: var(--pet-shadow);
}

.pet-hero-dog {
    top: 76px;
    right: 5%;
    width: 62%;
    height: 390px;
}

.pet-hero-cat {
    right: 52%;
    bottom: 24px;
    width: 34%;
    height: 240px;
    border-radius: 28px;
}

.pet-hero-placeholder {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 7px solid white;
    border-radius: 34px;
    background: linear-gradient(
        145deg,
        #c8eeee,
        #fef2df
    );
    color: var(--pet-primary-dark);
    font-size: 76px;
    box-shadow: var(--pet-shadow);
}

.pet-hero-placeholder--dog {
    top: 76px;
    right: 5%;
    width: 62%;
    height: 390px;
}

.pet-hero-placeholder--cat {
    right: 52%;
    bottom: 24px;
    width: 34%;
    height: 240px;
    border-radius: 28px;
    font-size: 52px;
}

.pet-floating-card {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 48px;
    min-width: 220px;
    padding: 16px 18px;
    border: 1px solid rgba(223, 233, 237, 0.9);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--pet-ink);
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--pet-shadow);
}

.pet-floating-card strong {
    display: block;
    color: var(--pet-primary);
    font-size: 20px;
}

.pet-service-strip {
    position: relative;
    z-index: 6;
    margin-top: -58px;
}

.pet-service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.pet-service-card {
    min-height: 165px;
    padding: 23px 14px;
    border: 1px solid var(--pet-border);
    border-radius: 17px;
    background: white;
    text-align: center;
    box-shadow: var(--pet-shadow-soft);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pet-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pet-shadow);
}

.pet-service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin: 0 auto 13px;
    border-radius: 16px;
    background: var(--pet-primary-soft);
    color: var(--pet-primary);
    font-size: 27px;
}

.pet-service-card:nth-child(2) .pet-service-icon,
.pet-service-card:nth-child(5) .pet-service-icon {
    background: #fff1e6;
    color: var(--pet-accent);
}

.pet-service-card:nth-child(4) .pet-service-icon {
    background: #edf3ff;
    color: var(--pet-blue);
}

.pet-service-card:nth-child(6) .pet-service-icon {
    background: #e8f8ef;
    color: var(--pet-green);
}

.pet-service-card strong {
    display: block;
    color: var(--pet-ink);
    font-size: 14px;
}

.pet-service-card p {
    margin: 8px 0 0;
    color: var(--pet-muted);
    font-size: 12px;
    line-height: 1.5;
}

.pet-benefits {
    margin-top: 18px;
    background: linear-gradient(
        90deg,
        var(--pet-primary-dark),
        var(--pet-primary)
    );
    color: white;
}

.pet-benefits-inner {
    min-height: 58px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 15px;
}

.pet-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
}

.pet-section {
    padding: 74px 0;
}

.pet-section--white {
    background: white;
}

.pet-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 32px;
}

.pet-section-label {
    color: var(--pet-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.pet-section-title {
    margin: 6px 0 0;
    color: var(--pet-ink);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.pet-section-description {
    max-width: 540px;
    color: var(--pet-muted);
}

.pet-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.pet-category {
    padding: 9px 14px;
    border: 1px solid var(--pet-border);
    border-radius: 999px;
    background: white;
    color: var(--pet-primary-dark);
    font-size: 13px;
    font-weight: 800;
}

.pet-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.pet-product-card {
    overflow: hidden;
    border: 1px solid var(--pet-border);
    border-radius: 18px;
    background: white;
    box-shadow: var(--pet-shadow-soft);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pet-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pet-shadow);
}

.pet-product-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.88;
    background: #eef7f7;
}

.pet-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.pet-product-card:hover .pet-product-image {
    transform: scale(1.045);
}

.pet-product-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(255, 122, 26, 0.15),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #dff4f4,
            #f9f3e9
        );
    color: var(--pet-primary);
    font-size: 48px;
}

.pet-product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--pet-accent);
    color: white;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pet-product-content {
    padding: 18px;
}

.pet-product-category {
    color: var(--pet-primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pet-product-title {
    min-height: 52px;
    margin: 8px 0;
    color: var(--pet-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.38;
}

.pet-price {
    color: var(--pet-primary-dark);
    font-size: 22px;
    font-weight: 900;
}

.pet-product-actions {
    display: flex;
    gap: 9px;
    margin-top: 16px;
}

.pet-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pet-feature-card {
    padding: 28px;
    border: 1px solid var(--pet-border);
    border-radius: 20px;
    background: white;
    box-shadow: var(--pet-shadow-soft);
}

.pet-feature-card .pet-service-icon {
    margin: 0 0 18px;
}

.pet-feature-card h3 {
    margin: 0 0 10px;
    color: var(--pet-ink);
    font-size: 21px;
}

.pet-feature-card p {
    margin: 0;
    color: var(--pet-muted);
}

.pet-contact-panel {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 255, 255, 0.15),
            transparent 22%
        ),
        linear-gradient(
            135deg,
            var(--pet-primary-dark),
            var(--pet-primary)
        );
    color: white;
    box-shadow: var(--pet-shadow);
}

.pet-contact-copy {
    padding: 48px;
}

.pet-contact-copy h2 {
    margin: 0 0 14px;
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.pet-contact-copy p {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.88);
}

.pet-contact-details {
    padding: 48px;
    background: rgba(255, 255, 255, 0.10);
}

.pet-contact-details strong {
    display: block;
    margin-bottom: 5px;
}

.pet-page-hero {
    padding: 58px 0;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 122, 26, 0.12),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ecfbfb,
            #ffffff
        );
}

.pet-page-hero h1 {
    margin: 0;
    color: var(--pet-ink);
    font-size: clamp(38px, 5vw, 56px);
    letter-spacing: -0.05em;
}

.pet-page-hero p {
    max-width: 620px;
    color: var(--pet-muted);
    font-size: 17px;
}

.pet-card {
    padding: 26px;
    border: 1px solid var(--pet-border);
    border-radius: 20px;
    background: white;
    box-shadow: var(--pet-shadow-soft);
}

.pet-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.pet-product-detail-media {
    overflow: hidden;
    border-radius: 20px;
    background: #eef7f7;
}

.pet-product-detail-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pet-field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.pet-field label {
    color: var(--pet-ink);
    font-weight: 800;
}

.pet-field input,
.pet-field select,
.pet-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid #cad9de;
    border-radius: 11px;
    background: white;
    color: var(--pet-text);
    outline: none;
}

.pet-field textarea {
    min-height: 110px;
    resize: vertical;
}

.pet-field input:focus,
.pet-field select:focus,
.pet-field textarea:focus {
    border-color: var(--pet-primary);
    box-shadow: 0 0 0 4px rgba(13, 149, 152, 0.10);
}

.pet-cart-row {
    display: grid;
    grid-template-columns: 82px 1fr 110px 130px auto;
    gap: 16px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--pet-border);
}

.pet-cart-image {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    object-fit: cover;
    background: #edf7f7;
}

.pet-summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--pet-border);
    color: var(--pet-ink);
    font-size: 23px;
    font-weight: 900;
}

.pet-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 28px;
    align-items: start;
}

.pet-alert {
    margin: 18px auto;
    padding: 14px 18px;
    border-radius: 12px;
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
}

.pet-alert--error {
    background: #fee2e2;
    color: #991b1b;
}

.pet-footer {
    margin-top: 58px;
    background: #082f3b;
    color: #d7eef0;
}

.pet-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 38px;
    padding: 52px 0;
}

.pet-footer h3 {
    margin-top: 0;
    color: white;
}

.pet-footer a,
.pet-footer p {
    color: #bad6d9;
}

.pet-footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: #91b8bc;
    font-size: 13px;
}

.pet-mobile-bar {
    display: none;
}

@media (max-width: 1040px) {
    .pet-nav {
        display: none;
    }

    .pet-hero-inner {
        grid-template-columns: 1fr 0.95fr;
    }

    .pet-service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pet-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pet-benefits-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 13px 0;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: 72px;
    }

    .pet-container {
        width: min(100% - 24px, 1220px);
    }

    .pet-topbar-items span:nth-child(2),
    .pet-header-actions .pet-button {
        display: none;
    }

    .pet-header-inner {
        min-height: 68px;
    }

    .pet-brand {
        font-size: 16px;
    }

    .pet-brand-mark {
        width: 40px;
        height: 40px;
    }

    .pet-hero {
        min-height: auto;
    }

    .pet-hero-inner {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .pet-hero-copy {
        padding: 48px 0 22px;
        text-align: center;
    }

    .pet-hero p {
        margin-inline: auto;
        font-size: 16px;
    }

    .pet-hero-actions {
        justify-content: center;
    }

    .pet-hero-visual {
        min-height: 390px;
    }

    .pet-hero-blob {
        top: 24px;
        right: 8%;
        width: 84%;
        height: 310px;
    }

    .pet-hero-dog,
    .pet-hero-placeholder--dog {
        top: 38px;
        right: 8%;
        width: 62%;
        height: 290px;
    }

    .pet-hero-cat,
    .pet-hero-placeholder--cat {
        right: 55%;
        bottom: 24px;
        width: 33%;
        height: 175px;
    }

    .pet-floating-card {
        right: 4%;
        bottom: 32px;
        min-width: 190px;
    }

    .pet-service-strip {
        margin-top: -22px;
    }

    .pet-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pet-benefits-inner {
        grid-template-columns: 1fr;
        justify-items: start;
        padding: 16px 8px;
    }

    .pet-benefit {
        justify-content: flex-start;
    }

    .pet-section {
        padding: 52px 0;
    }

    .pet-section-heading {
        display: block;
    }

    .pet-product-grid,
    .pet-feature-grid,
    .pet-product-detail,
    .pet-checkout-grid,
    .pet-contact-panel,
    .pet-footer-grid {
        grid-template-columns: 1fr;
    }

    .pet-product-grid {
        gap: 16px;
    }

    .pet-contact-copy,
    .pet-contact-details {
        padding: 30px 24px;
    }

    .pet-cart-row {
        grid-template-columns: 68px 1fr;
    }

    .pet-cart-row > *:nth-child(n + 3) {
        grid-column: 2;
    }

    .pet-mobile-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 70;
        height: 66px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border-top: 1px solid var(--pet-border);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(18px);
    }

    .pet-mobile-bar a {
        display: grid;
        place-items: center;
        align-content: center;
        gap: 2px;
        color: var(--pet-muted);
        font-size: 10px;
        font-weight: 800;
    }

    .pet-mobile-bar a span {
        font-size: 19px;
    }
}
/* IWASHIMA PROFESSIONAL SVG ICONS */

.pet-icon {
    display: block;
    flex: 0 0 auto;
}

.pet-brand-mark .pet-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.pet-cart-button .pet-icon {
    width: 22px;
    height: 22px;
}

.pet-button .pet-icon {
    width: 19px;
    height: 19px;
    stroke-width: 2;
}

.pet-service-icon {
    position: relative;
    overflow: hidden;
}

.pet-service-icon::after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -13px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.08;
}

.pet-service-icon .pet-icon {
    position: relative;
    z-index: 2;
    width: 31px;
    height: 31px;
    stroke-width: 1.8;
}

.pet-benefit .pet-icon {
    width: 20px;
    height: 20px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 6px;
}

.pet-mobile-bar .pet-icon {
    width: 20px;
    height: 20px;
    color: var(--pet-primary);
}

.pet-feature-card .pet-service-icon {
    box-shadow: inset 0 0 0 1px rgba(13, 149, 152, 0.08);
}

@media (prefers-reduced-motion: no-preference) {
    .pet-service-card:hover .pet-service-icon .pet-icon {
        animation: pet-icon-float 0.65s ease;
    }
}

@keyframes pet-icon-float {
    0%,
    100% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-4px);
    }
}

/* DIMYPET-PUBLIC-UI-2.0 */
:root {
    --dimy-pink: #ed4f82;
    --dimy-pink-strong: #dc356d;
    --dimy-pink-soft: #fff0f5;
    --dimy-green: #168a3b;
    --dimy-green-strong: #0e7130;
    --dimy-green-soft: #eef9f1;
    --dimy-ink: #172238;
    --dimy-muted: #6b7a90;
}

body {
    background:
        radial-gradient(circle at 8% 8%, rgba(237,79,130,.07), transparent 26%),
        radial-gradient(circle at 92% 10%, rgba(22,138,59,.05), transparent 22%),
        #fff !important;
    color: var(--dimy-ink);
}

header,
.site-header,
.store-header {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(237,79,130,.10) !important;
}

.hero,
.store-hero,
.home-hero {
    background:
        radial-gradient(circle at 78% 34%, rgba(237,79,130,.13), transparent 25%),
        radial-gradient(circle at 15% 80%, rgba(22,138,59,.08), transparent 25%),
        linear-gradient(135deg, #fff7fa 0%, #fff 55%, #f7fcf8 100%) !important;
}

h1,
h2,
h3 {
    color: var(--dimy-ink);
}

a {
    color: var(--dimy-green);
}

.btn-primary,
.button-primary,
.cta-primary,
button[type="submit"] {
    background:
        linear-gradient(135deg, var(--dimy-pink), var(--dimy-pink-strong)) !important;
    border-color: transparent !important;
    color: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 22px rgba(229,62,117,.20);
}

.btn-secondary,
.button-secondary,
.cta-secondary {
    background: #fff !important;
    color: var(--dimy-green) !important;
    border: 1px solid rgba(22,138,59,.26) !important;
    border-radius: 12px !important;
}

.card,
.product-card,
.service-card {
    border: 1px solid #edf0f3 !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(76,34,55,.06) !important;
    background: #fff !important;
}

.badge,
.tag {
    border-radius: 999px !important;
}

.price,
.product-price {
    color: var(--dimy-green) !important;
    font-weight: 800 !important;
}

.whatsapp,
.whatsapp-button,
a[href*="wa.me"] {
    background: var(--dimy-green) !important;
    color: #fff !important;
}

footer {
    background: #fff8fb !important;
    border-top: 1px solid rgba(237,79,130,.10);
}