/* ============================================================
   STR Technologies — Product Page D (Conversion-Optimized)
   Extends style.css and product.css
   ============================================================ */

/* ─── Cart Drawer & Overlay ─────────────────────── */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cart-drawer-count {
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    padding: 4px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.cart-drawer-close:hover {
    color: var(--color-text-primary);
    background: rgba(0, 0, 0, 0.05);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    color: var(--color-text-muted);
    gap: 12px;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: 2px;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.cart-qty-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cart-qty-value {
    width: 36px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    line-height: 32px;
}

.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-decoration: underline;
    transition: color 0.15s;
}

.cart-remove-btn:hover {
    color: #dc2626;
}

.cart-drawer-footer {
    border-top: 1px solid var(--color-border);
    padding: 20px 28px 24px;
    background: #fafafa;
}

.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-total-label {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total-amount {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text-primary);
}

.cart-drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.cart-btn-view {
    padding: 14px 16px;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.cart-btn-view:hover {
    background: var(--color-primary-tint);
}

.cart-btn-checkout {
    padding: 14px 16px;
    border: none;
    background: var(--color-text-primary);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cart-btn-checkout:hover {
    background: #000;
}

/* Cart Badge on Header Icon */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}


/* ─── Hero Layout D ─────────────────────────────── */

.hero-layout-d {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: flex-start;
    padding-top: 0;
}

@media (max-width: 1024px) {
    .hero-layout-d {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.hero-left-d {
    padding-top: 16px;
}

.hero-editorial-d {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.35;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

/* Key Specs Bar */
.key-specs-bar {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 28px;
}

.key-spec {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
    border-right: 1px solid var(--color-border);
    flex: 1;
}

.key-spec:first-child {
    padding-left: 0;
}

.key-spec:last-child {
    border-right: none;
    padding-right: 0;
}

.key-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.key-spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: var(--font-mono);
}

/* Trust Badges Inline */
.trust-badges-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: #166534;
    white-space: nowrap;
}

.trust-badge-sm .material-symbols-outlined {
    font-size: 16px;
}

/* Molecule (smaller in hero) */
.molecule-hero-d {
    margin-top: 16px;
}

.molecule-hero-d img {
    max-width: 100%;
    width: 480px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.06));
    animation: float 7s ease-in-out infinite;
}


/* ─── Order Panel ────────────────────────────────── */

.order-panel {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 120px;
}

.order-panel-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--color-border);
    background: #fafbfc;
}

.order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.order-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.order-meta-value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.order-availability {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-trust);
}

.order-availability .material-symbols-outlined {
    font-size: 18px;
}

/* Pack Size Radio Selector */
.pack-selector {
    padding: 0;
}

.pack-selector-title {
    padding: 16px 24px 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pack-option {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-border);
    transition: background 0.15s;
    position: relative;
}

.pack-option:last-child {
    border-bottom: none;
}

.pack-option:hover {
    background: #f9fbfd;
}

.pack-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s;
}

.pack-option input[type="radio"]:checked {
    border-color: var(--color-primary);
}

.pack-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
}

.pack-option.is-selected {
    background: var(--color-primary-tint);
}

.pack-option-label {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    flex: 1;
}

.pack-option-price {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.pack-option-contact {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Order Panel Footer */
.order-panel-footer {
    padding: 20px 24px;
    background: #fafbfc;
    border-top: 1px solid var(--color-border);
}

.order-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.order-cta-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(10, 95, 138, 0.25);
}

.order-cta-primary:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 16px rgba(10, 95, 138, 0.35);
    transform: translateY(-1px);
}

.order-cta-primary:active {
    transform: translateY(0);
}

/* Button loading/success states */
.order-cta-primary.is-adding {
    background: var(--color-primary-dark);
    pointer-events: none;
}

.order-cta-primary.is-added {
    background: var(--color-trust);
    pointer-events: none;
}

.order-cta-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: none;
}

.order-cta-secondary:hover {
    background: var(--color-primary-tint);
}

.order-panel-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.order-link {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.order-link:hover {
    text-decoration: underline;
}

.order-link .material-symbols-outlined {
    font-size: 16px;
}


/* ─── Value Strip ────────────────────────────────── */

.value-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0;
}

@media (max-width: 768px) {
    .value-strip {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0;
    }
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-soft-gray);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--color-primary-tint), #fff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-dark-blue);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}


/* ─── Product Tab Navigation ─────────────────────── */

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 32px;
    gap: 0;
    overflow-x: auto;
}

.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--color-text-primary);
}

.tab-btn.is-active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tab-panel {
    display: none;
}

.tab-panel.is-active {
    display: block;
}


/* ─── Related Products ───────────────────────────── */

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

.related-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary-light);
}

.related-card-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.related-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
}

.related-card-price {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.related-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}


/* ─── Contact Strip ──────────────────────────────── */

.contact-strip {
    background: var(--color-primary);
    color: #fff;
    padding: 48px 0;
    text-align: center;
}

.contact-strip h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.contact-strip p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 1rem;
}

.contact-strip-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-contact-white {
    padding: 14px 28px;
    background: #fff;
    color: var(--color-primary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-contact-white:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.btn-contact-ghost {
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-contact-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}


/* ─── Sticky Bar D ───────────────────────────────── */

.product-sticky-bar-d {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    padding: 32px 0 16px 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-bottom: 1px solid transparent;
}

.product-sticky-bar-d.is-pinned {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.bar-inner-d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: all 0.4s ease;
}

.bar-title-group-d {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bar-title-d {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    line-height: 1.1;
    margin: 0 0 4px 0;
    transition: font-size 0.4s ease;
    letter-spacing: -0.02em;
}

.product-sticky-bar-d.is-pinned .bar-title-d {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.bar-subtitle-d {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 400;
    transition: all 0.4s ease;
}

.product-sticky-bar-d.is-pinned .bar-subtitle-d {
    font-size: 0.8rem;
    opacity: 0.6;
}

.bar-actions-d {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 8px;
    transition: padding 0.4s ease;
}

.product-sticky-bar-d.is-pinned .bar-actions-d {
    padding-top: 0;
}

.bar-btn-d {
    height: 44px;
    padding: 0 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.bar-btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid transparent;
}

.bar-btn-ghost:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--color-primary);
}

.bar-btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
}

.bar-btn-outline:hover {
    border-color: var(--color-primary);
    background: var(--color-primary-tint);
}

.bar-btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 5px rgba(10, 95, 138, 0.2);
}

.bar-btn-primary:hover {
    background: var(--color-primary-dark);
}

/* Hide contact CTA by default, show when bar is pinned */
.contact-cta-wrap {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.product-sticky-bar-d.is-pinned .contact-cta-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ─── Contact CTA & Dropdown Panel ──────────────── */

.contact-cta-wrap {
    position: relative;
}

.bar-btn-contact {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(10, 95, 138, 0.22);
    gap: 0;
}

.bar-btn-contact:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 4px 14px rgba(10, 95, 138, 0.32);
}

.contact-cta-chevron {
    transition: transform 0.25s ease;
}

.contact-panel.is-open~.bar-btn-contact .contact-cta-chevron,
.contact-cta-wrap:has(.contact-panel.is-open) .contact-cta-chevron {
    transform: rotate(180deg);
}

/* Dropdown Panel */
.contact-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 340px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1001;
    overflow: hidden;
}

.contact-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-panel-header {
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-panel-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
}

/* Option Rows */
.contact-panel-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.contact-panel-option:last-child {
    border-bottom: none;
}

.contact-panel-option:not(.is-disabled):hover {
    background: rgba(10, 95, 138, 0.04);
}

.contact-panel-option.is-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.contact-panel-icon {
    font-size: 22px;
    color: var(--color-primary);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-tint);
    border-radius: 8px;
}

.contact-panel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-panel-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.contact-panel-desc {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Coming Soon Badge */
.contact-panel-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    color: #5b21b6;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}


/* ─── Trusted Globally Section ───────────────────── */

.trusted-globally-section {
    background: #0f1923;
    padding: 80px 0;
    text-align: center;
}

.tg-header {
    margin-bottom: 56px;
}

.tg-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4db8c7;
    margin-bottom: 16px;
}

.tg-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8ecef;
    margin-bottom: 16px;
    line-height: 1.15;
}

.tg-subtitle {
    font-size: 1.05rem;
    color: rgba(232, 236, 239, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stats Row */
.tg-stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .tg-stats-row {
        gap: 32px;
        flex-wrap: wrap;
    }

    .tg-title {
        font-size: 2rem;
    }
}

.tg-stat {
    text-align: center;
}

.tg-stat-number {
    font-size: 3.25rem;
    font-weight: 700;
    color: #3da5b5;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tg-stat-label {
    font-size: 0.85rem;
    color: rgba(232, 236, 239, 0.55);
    font-weight: 500;
    text-transform: capitalize;
}

/* Testimonial Card */
.tg-testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px 48px;
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tg-testimonial-card {
        padding: 24px;
    }
}

.tg-testimonial-text {
    font-size: 0.95rem;
    color: rgba(232, 236, 239, 0.65);
    line-height: 1.7;
    margin: 0;
}

.tg-highlight-link {
    color: #4db8c7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.tg-highlight-link:hover {
    color: #6dd0de;
    text-decoration: underline;
}

/* ─── Section Divider ────────────────────────────── */

.section-divider {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 0;
}

/* ─── Responsive Overrides ───────────────────────── */

@media (max-width: 768px) {
    .key-specs-bar {
        gap: 16px;
        flex-wrap: wrap;
    }

    .trust-badges-inline {
        gap: 8px;
    }

    .bar-actions-d {
        display: none;
    }

    .order-panel {
        position: static;
    }

    .hero-editorial-d {
        font-size: 1.5rem;
    }

    .bar-title-d {
        font-size: 2rem;
    }

    .product-sticky-bar-d.is-pinned .bar-title-d {
        font-size: 1.32rem;
    }

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