/* CASCADE-LAYER: intentionally-unlayered — page composition. See .planning/phases/01-foundation-activation/01-CONTEXT.md D-01. */
/* stylelint-disable media-feature-name-disallowed-list -- Phase 6: max-width media queries retained; mobile-first conversion deferred (D-08). Strict-value/!important/order cleaned. */

/**
 * Single Product Page Styles - Version 2.0
 * Modern, Conversion-Focused Design
 *
 * @package RhuarcsPetSupplies
 */

/* ===========================================
   PRODUCT PAGE CONTAINER
   =========================================== */

.product-page-container {
    max-width: 1400px;
    padding: var(--space-8) var(--space-4);
    margin: 0 auto;
}

/* ===========================================
   BREADCRUMBS
   =========================================== */

.product-breadcrumb {
    margin-bottom: var(--space-8);
    padding: var(--space-4) var(--space-6);
    background: var(--neutral-50);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- 8px sits between --radius-sm (6px) and --radius-md (12px); no byte-exact radius token */
    border-radius: 8px;
}

.product-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    padding: 0;
    margin: 0;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
    font-size: 0.9rem;
    list-style: none;
}

.product-breadcrumb li {
    display: inline;
}

.product-breadcrumb a {
    /* CONS-04 / D-10: 44px tap-target floor. These breadcrumb links use the
       page-scoped .product-breadcrumb / bare <li><a> markup, which is NOT in the
       spec's EXEMPT inline-text allow-list ('p a', '.entry-content a',
       '.breadcrumbs a', 'li p a') — so they ARE measured and must reach >=44x44.
       inline-flex + both min-sizes grow the short crumb links (rendered 26-57 x
       16) to a 44x44 hit area; sanctioned hit-area growth. */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    min-block-size: 44px;
    min-inline-size: 44px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 var(--space-1);
    color: var(--neutral-600);
}

/* ===========================================
   MAIN PRODUCT SECTION
   =========================================== */

.product-main-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

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

.product-gallery-wrapper {
    position: sticky;
    top: 100px;
    align-self: start;
}

.product-image-main {
    background: var(--background-primary);
    border-radius: var(--radius-md);
    overflow: hidden;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry (0 4px 20px / 8% alpha); no byte-exact --shadow-* token */
    box-shadow: 0 4px 20px rgb(0 0 0 / 8%);
    margin-bottom: var(--space-6);
}

.main-product-image {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.05);
}

.product-image-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    color: var(--neutral-600);
    background: linear-gradient(135deg, var(--neutral-50), var(--neutral-200));
}

.placeholder-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative icon size; 4rem has no canonical --text-* token */
    font-size: 4rem;
    margin-bottom: var(--space-4);
}

/* ===========================================
   TRUST BADGES
   =========================================== */

.trust-badges {
    display: grid;
    gap: var(--space-4);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgb(92 31 113 / 5%), rgb(123 43 133 / 5%)); /* token-exempt: compound rgba gradient tint — no token covers this 2-stop alpha variant */
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- 8px sits between --radius-sm (6px) and --radius-md (12px); no byte-exact radius token */
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.badge-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative icon size; 2rem has no canonical --text-* token */
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.95rem has no canonical --text-* token */
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.badge-text span {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.85rem has no canonical --text-* token */
    font-size: 0.85rem;
    color: var(--neutral-600);
}

/* ===========================================
   PRODUCT INFO
   =========================================== */

.product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.product-header {
    border-bottom: 2px solid var(--neutral-200);
    padding-bottom: var(--space-6);
}

.product-brand {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.product-title {
    margin: 0 0 var(--space-2);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative display size; 2.5rem outside the --text-* type scale */
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--neutral-900);
}

.product-sku {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* ===========================================
   PRICE AND STOCK
   =========================================== */

.product-price-stock {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-8);
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--neutral-50), var(--background-primary));
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
}

.product-price-container {
    display: flex;
    flex-direction: column;
}

.price-label {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.85rem has no canonical --text-* token */
    font-size: 0.85rem;
    color: var(--neutral-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-1);
}

.product-price {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative display size; 2.5rem outside the --text-* type scale */
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    line-height: 1;
    color: var(--primary-color);
}

.price-note {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.8rem has no canonical --text-* token */
    font-size: 0.8rem;
    color: var(--neutral-600);
    margin-top: var(--space-1);
}

.product-price-contact {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--primary-color);
}

.stock-availability {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.95rem has no canonical --text-* token */
    font-size: 0.95rem;
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.stock-availability.in-stock {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
}

.stock-availability.low-stock {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.stock-availability.critical-stock {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: pulse 2s infinite;
}

.stock-availability.out-of-stock {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.stock-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 1.2rem has no canonical --text-* token */
    font-size: 1.2rem;
}

/* ===========================================
   PRODUCT CATEGORIES
   =========================================== */

.product-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.category-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.category-label {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
    color: var(--neutral-700);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.category-tag {
    /* CONS-04 / D-10: 44px tap-target floor on the animal/product category tags
       (rendered ~53x36 — height short). inline-flex + min-block-size lift the box
       to >=44 tall; min-inline-size guards any narrower tag. Sanctioned hit-area
       growth (boundingBox gate measures the <a>). */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
    min-block-size: 44px;
    min-inline-size: 44px;
    padding: var(--space-2) var(--space-4);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.85rem has no canonical --text-* token */
    font-size: 0.85rem;
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    text-decoration: none;
}

.animal-tag {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgb(92 31 113 / 10%), rgb(123 43 133 / 10%)); /* token-exempt: compound rgba gradient tint — no token covers this 2-stop alpha variant */
    border: 2px solid var(--primary-color);
}

.animal-tag:hover {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
}

.product-tag {
    color: var(--emerald-600);
    background: linear-gradient(135deg, rgb(16 185 129 / 10%), rgb(5 150 105 / 10%)); /* token-exempt: compound rgba gradient tint — no token covers this 2-stop emerald alpha variant */
    border: 2px solid var(--emerald-500);
}

.product-tag:hover {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    transform: translateY(-2px);
}

/* ===========================================
   PRODUCT SUMMARY
   =========================================== */

.product-summary {
    padding: var(--space-6);
    line-height: 1.6;
    color: var(--neutral-700);
    background: linear-gradient(135deg, rgb(92 31 113 / 2%), rgb(123 43 133 / 2%)); /* token-exempt: compound rgba gradient tint — no token covers this 2-stop alpha variant */
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- 8px sits between --radius-sm (6px) and --radius-md (12px); no byte-exact radius token */
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.product-summary p {
    margin: 0;
}

/* ===========================================
   CTA SECTION
   =========================================== */

.product-cta-section {
    padding: var(--space-8);
    color: var(--text-on-purple);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-md);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke shadow geometry differs from --shadow-purple-* tokens (different offsets/spread) */
    box-shadow: 0 8px 24px rgb(92 31 113 / 30%);
}

.cta-heading {
    margin: 0 0 var(--space-2);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}

.cta-subheading {
    margin: 0 0 var(--space-6);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.95rem has no canonical --text-* token */
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.cta-button {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-6);
    background: white;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- 8px sits between --radius-sm (6px) and --radius-md (12px); no byte-exact radius token */
    border-radius: 8px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 8px 20px rgb(0 0 0 / 15%);
    transform: translateY(-3px);
}

.cta-primary {
    border: 2px solid var(--primary-color);
}

.cta-secondary {
    border: 2px solid var(--secondary-color);
}

.cta-icon {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative icon size; 2rem has no canonical --text-* token */
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.cta-text strong {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 1.1rem has no canonical --text-* token */
    font-size: 1.1rem;
    color: var(--neutral-900);
}

.cta-text small {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.85rem has no canonical --text-* token */
    font-size: 0.85rem;
    color: var(--neutral-600);
}

.cta-link-secondary {
    /* CONS-04 / D-10: 44px tap-target floor on the secondary CTA link (rendered
       ~296x22 — full-width but short). flex-centering + min-block-size give it a
       >=44 tall hit area while keeping the text centred; sanctioned hit-area
       growth. */
    display: flex;
    justify-content: center;
    align-items: center;
    min-block-size: 44px;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
    font-size: 0.9rem;
    color: var(--text-on-purple);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-align: center;
    text-decoration: underline;
}

.cta-link-secondary:hover {
    color: var(--text-on-purple);
    opacity: 1;
}

/* ===========================================
   STORE INFO
   =========================================== */

.product-store-info {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--neutral-50);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- 8px sits between --radius-sm (6px) and --radius-md (12px); no byte-exact radius token */
    border-radius: 8px;
}

.store-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.info-icon {
    font-size: var(--text-2xl);
    flex-shrink: 0;
}

.info-content strong {
    display: block;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
    font-size: 0.9rem;
    color: var(--neutral-900);
    margin-bottom: var(--space-1);
}

.info-content p {
    margin: 0;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.85rem has no canonical --text-* token */
    font-size: 0.85rem;
    color: var(--neutral-700);
}

/* ===========================================
   PRODUCT DETAILS SECTION
   =========================================== */

.product-details-section {
    margin-bottom: var(--space-16);
    padding: var(--space-8);
    background: white;
    border-radius: var(--radius-md);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 2px 12px rgb(0 0 0 / 5%);
}

.section-heading {
    margin: 0 0 var(--space-6);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative heading size; 2rem has no canonical --text-* token */
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--neutral-900);
    padding-bottom: var(--space-4);
    border-bottom: 3px solid var(--primary-color);
}

.product-content {
    line-height: 1.8;
    color: var(--neutral-700);
}

.product-content h2,
.product-content h3,
.product-content h4 {
    color: var(--primary-color);
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
}

.product-content ul,
.product-content ol {
    padding-left: var(--space-6);
    margin: var(--space-4) 0;
}

.product-content li {
    margin-bottom: var(--space-2);
}

/* ===========================================
   RELATED PRODUCTS
   =========================================== */

.related-products-section {
    margin-bottom: var(--space-16);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.related-product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 4px 12px rgb(0 0 0 / 8%);
    transition: all 0.3s ease;
}

.related-product-card:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 8px 24px rgb(0 0 0 / 12%);
    transform: translateY(-5px);
}

.related-product-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.related-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--neutral-50);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.1);
}

.related-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative placeholder icon size; 4rem has no canonical --text-* token */
    font-size: 4rem;
    color: var(--neutral-600);
}

.related-stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid badge padding (0.4rem 0.8rem); no byte-exact --space-* token */
    padding: 0.4rem 0.8rem;
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.related-stock-badge.out {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.related-stock-badge.critical {
    color: var(--text-on-purple);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: pulse 2s infinite;
}

.related-product-info {
    padding: var(--space-5);
}

.related-product-title {
    margin: 0 0 var(--space-2);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 1.1rem has no canonical --text-* token */
    font-size: 1.1rem;
    font-weight: var(--font-semibold);
    line-height: 1.3;
    color: var(--neutral-900);
}

.related-product-price {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
}

/* ===========================================
   STICKY CTA BAR
   =========================================== */

.sticky-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke upward shadow geometry (negative offset); no byte-exact --shadow-* token */
    box-shadow: 0 -4px 12px rgb(0 0 0 / 15%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    padding: var(--space-4);
    margin: 0 auto;
}

.sticky-product-info {
    display: flex;
    flex-direction: column;
    color: var(--text-on-purple);
}

.sticky-product-name {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
}

.sticky-product-price {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
}

.sticky-cta-buttons {
    display: flex;
    gap: var(--space-3);
}

.sticky-btn-phone,
.sticky-btn-email {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: var(--text-2xl);
    background: white;
    border-radius: var(--radius-circle);
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-btn-phone:hover,
.sticky-btn-email:hover {
    /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- bespoke neutral shadow geometry; no byte-exact --shadow-* token */
    box-shadow: 0 4px 12px rgb(0 0 0 / 25%);
    transform: scale(1.1);
}

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

@media (width <= 1024px) {
    .product-main-section {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .product-gallery-wrapper {
        position: static;
    }

    .product-title {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative display size; 2rem has no canonical --text-* token */
        font-size: 2rem;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }
}

@media (width <= 768px) {
    .product-page-container {
        padding: var(--space-4) var(--space-2);
    }

    .product-breadcrumb {
        padding: var(--space-3);
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.8rem has no canonical --text-* token */
        font-size: 0.8rem;
    }

    .product-price-stock {
        flex-direction: column;
        gap: var(--space-4);
    }

    .product-title {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 1.75rem has no canonical --text-* token */
        font-size: 1.75rem;
    }

    .product-price {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- decorative display size; 2rem has no canonical --text-* token */
        font-size: 2rem;
    }

    .product-cta-section {
        padding: var(--space-6);
    }

    .cta-heading {
        font-size: var(--text-xl);
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .sticky-product-name {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.9rem has no canonical --text-* token */
        font-size: 0.9rem;
    }

    .sticky-product-price {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 1.1rem has no canonical --text-* token */
        font-size: 1.1rem;
    }

    .sticky-btn-phone,
    .sticky-btn-email {
        width: 45px;
        height: 45px;
        font-size: var(--text-xl);
    }
}

@media (width <= 480px) {
    .product-title {
        font-size: var(--text-2xl);
    }

    .related-products-grid {
        grid-template-columns: 1fr;
    }

    .category-tag {
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- off-grid chip padding (0.4rem 0.8rem); no byte-exact --space-* token */
        padding: 0.4rem 0.8rem;
        /* stylelint-disable-next-line scale-unlimited/declaration-strict-value -- type-scale extension; 0.8rem has no canonical --text-* token */
        font-size: 0.8rem;
    }

    .trust-badge {
        padding: var(--space-3);
    }

    .badge-icon {
        font-size: var(--text-2xl);
    }
}

/* ===========================================
   ANIMATIONS
   =========================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}
