        /* Enhanced Product Page Styling */
        .beautified-product {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        @media (max-width: 768px) {
            .beautified-product {
                padding: 0 20px;
                margin-top: 0;
            }
        }

        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            background: transparent;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .product-gallery {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .main-image {
            width: 100%;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            padding: 20px;
            background: #fafafa;
            margin-bottom: 20px;
        }

        .main-image img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: contain;
            display: block;
        }

        .thumbnail-images {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 10px;
        }

        .thumbnail {
            border: 2px solid #e5e7eb;
            border-radius: 6px;
            padding: 8px;
            cursor: pointer;
            transition: all 0.2s;
            background: #fff;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .thumbnail:hover, .thumbnail.active {
            border-color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37,99,235,0.15);
        }

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

        .product-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: transparent;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
        }

        .product-title {
            font-size: 32px;
            font-weight: 700;
            color: #111827;
            line-height: 1.2;
            margin: 0;
            flex: 1;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
        }

        .product-sku {
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
        }

        .price-section {
            padding: 0 24px 24px 24px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 10px;
            border: 2px solid #0ea5e9;
        }

        .price-section .affirm_badge {
            margin-top: 15px;
        }

        .price-section .affirm_badge .affirm-modal-trigger {
            display: block !important;
            color: #0000ef !important;
        }

        .price-section .affirm_badge .affirm-modal-trigger:hover {
            text-decoration: underline !important;
            color: #0000ef !important;
        }

        .price-label {
            font-size: 14px;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .price-value {
            font-size: 42px;
            font-weight: 800;
            color: #0c4a6e;
            line-height: 1;
            text-shadow: 2px 2px 4px rgba(12, 74, 110, 0.3);
        }

        .price-savings {
            margin-top: 12px;
            padding: 8px 16px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border-radius: 20px;
            display: inline-block;
            font-weight: 700;
            font-size: 14px;
        }

        .core-tooltip:hover .core-tooltip-text {
            visibility: visible !important;
            opacity: 1 !important;
        }

        @media (max-width: 768px) {
            .core-tooltip-text {
                left: calc(50% - 40px) !important;
                right: auto !important;
                transform: translateX(-50%) !important;
            }
            .core-tooltip-text span[style*="right: 10px"] {
                left: 50% !important;
                right: auto !important;
                transform: translateX(-50%) !important;
            }
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .features-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f3f4f6;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color: #374151;
            text-align: left;
        }

        .features-list li:before {
            content: "✓";
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: #10b981;
            color: white;
            border-radius: 50%;
            font-weight: bold;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .add-to-cart-section {
            padding: 24px;
            background: #f9fafb;
            border-radius: 10px;
        }

        .add-to-cart-section .add-to-cart {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            box-sizing: border-box !important;
        }

        .btn-add-to-cart {
            flex: 1 !important;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 14px rgba(37,99,235,0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            float: none !important;
        }

        .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,99,235,0.5);
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
        }

        .trust-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            padding: 24px;
            background: #d1fae5;
            border-radius: 10px;
            border: 2px solid #10b981;
        }

        .badge {
            text-align: center;
            padding: 12px;
        }

        .badge-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .badge-text {
            font-size: 13px;
            font-weight: 600;
            color: #065f46;
            line-height: 1.4;
        }

        .warranty-box {
            padding: 20px;
            background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
            border-radius: 8px;
            border: 2px solid #10b981;
        }

        .warranty-box h3 {
            margin: 0 0 12px 0;
            color: #065f46;
            font-size: 18px;
            font-weight: 700;
        }

        .warranty-box p {
            margin: 0;
            color: #047857;
            line-height: 1.6;
        }

        .product-tabs {
            margin-top: 30px;
        }

        /* Updated tab buttons */
        .tab-buttons {
            display: flex;
            gap: 8px;
            margin-bottom: 0;
            justify-content: center;
            border-bottom: 2px solid #e5e7eb;
        }
        .tab-button.expert-guide-tab {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
            color: #1e3a8a !important;
            border-radius: 8px 8px 0 0;
            animation: garageTabPulse 2.5s ease-in-out infinite;
        }
        .tab-button.expert-guide-tab:hover {
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%) !important;
            color: #1e3a8a !important;
            animation: none;
        }
        .tab-button.expert-guide-tab.active {
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%) !important;
            border-bottom-color: #2563eb;
            animation: none;
        }
        .tab-button.expert-guide-tab .tab-icon {
            margin-right: 3px;
        }
        @keyframes garageTabPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
            50% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25); }
        }

        .tab-button {
            padding: 12px 16px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            margin-bottom: -2px;
        }

        .tab-button::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: transparent;
            transition: background 0.2s;
        }

        .tab-button.active::after {
            background: #2563eb;
        }

        @media (max-width: 768px) {
            .tab-button {
                padding: 12px 8px;
                font-size: 14px;
            }

            /* Keep the tab bar + content within the body's left/right
               padding so it visually aligns with the other panels.
               The previous -20px negative margins pushed it edge-to-edge,
               which felt unaligned from the other body content. */
            .product-tabs {
                max-width: none;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 0;
                padding-right: 0;
            }

            .tab-content {
                padding: 20px;
            }
        }

        .tab-button:hover {
            color: #2563eb;
        }

        .tab-content {
            display: none;
            padding: 30px;
            background: #f9fafb;
            border-radius: 0 0 8px 8px;
            text-align: left;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
            border-top: none;
            margin-top: 0;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1f2937;
        }

        .tab-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: #374151;
        }

        .tab-content ul {
            list-style-type: disc;
            padding-left: 40px;
        }

        .tab-content li {
            margin-bottom: 8px;
        }

        .fitment-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            overflow: hidden;
        }

        .fitment-table th,
        .fitment-table td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        .fitment-table th {
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
            font-weight: 600;
            color: white;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        .fitment-table th:first-child {
            border-top-left-radius: 8px;
        }

        .fitment-table th:last-child {
            border-top-right-radius: 8px;
        }

        .fitment-table tbody tr {
            transition: all 0.2s ease;
        }

        .fitment-table tbody tr:nth-child(odd) {
            background: #ffffff;
        }

        .fitment-table tbody tr:nth-child(even) {
            background: #f8fafc;
        }

        .fitment-table tbody tr:hover {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            transform: scale(1.01);
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
        }

        .fitment-table tbody tr:last-child td:first-child {
            border-bottom-left-radius: 8px;
        }

        .fitment-table tbody tr:last-child td:last-child {
            border-bottom-right-radius: 8px;
        }

        .fitment-table tbody tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 1024px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .product-gallery {
                position: relative;
            }

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

        .product-nav-buttons-mobile {
            display: none; /* Hide on desktop */
        }

        @media (max-width: 768px) {
            .product-container {
                padding: 0;
                margin-top: 0;
                background: transparent;
                box-shadow: none;
                border-radius: 0;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            /* Hide desktop buttons, show mobile buttons */
            .product-nav-buttons {
                display: none !important;
            }

            .product-nav-buttons-mobile {
                display: flex !important;
                order: -2; /* First - appears before everything */
                margin-bottom: 0;
                margin-top: 10px;
                flex-wrap: nowrap !important;
                gap: 12px !important;
                justify-content: center;
            }

            .product-nav-buttons-mobile .nav-btn {
                display: inline-flex !important;
                margin-top: 0;
                flex: 0 0 auto;
            }

            .product-gallery {
                order: -1; /* Second - image appears after buttons */
                margin-bottom: 20px;
            }

            .product-info {
                order: 0; /* Third - product info appears after image */
            }

            .main-image {
                padding: 10px !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .main-image img {
                width: 100% !important;
                max-width: 100% !important;
                height: auto !important;
            }

            .nav-btn {
                padding: 8px 12px !important;
                font-size: 12px !important;
                white-space: normal !important;
                text-align: center;
                line-height: 1.3;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Fitment table mobile layout */
            .fitment-table {
                border: 0;
                box-shadow: none;
            }

            .fitment-table thead {
                display: block;
                background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
                border-radius: 8px;
                margin-bottom: 12px;
            }

            .fitment-table thead tr {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4px;
                padding: 8px;
            }

            .fitment-table th {
                padding: 6px 8px !important;
                border-radius: 4px;
                font-size: 11px;
                border-bottom: none !important;
            }

            /* Make Attributes header span both columns on mobile */
            .fitment-table th:nth-child(7) {
                grid-column: 1 / -1;
            }

            .fitment-table tbody tr {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4px;
                margin-bottom: 12px;
                padding: 8px;
                background: white !important;
                border: 1px solid #e5e7eb;
                border-radius: 8px;
            }

            .fitment-table tbody tr:hover {
                transform: none;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            .fitment-table td {
                padding: 6px 8px !important;
                border: none !important;
                font-size: 13px;
                background: #f8fafc;
                border-radius: 4px;
            }

            /* Make Attributes column span both columns on mobile */
            .fitment-table td:nth-child(7) {
                grid-column: 1 / -1;
            }

            /* Hide empty Attributes cells on mobile */
            .fitment-table td:nth-child(7):empty {
                display: none;
            }
        }

        /* Vehicle Search Modal */
        .vehicle-search-modal {
            display: flex !important;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0);
            align-items: center !important;
            justify-content: center !important;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }

        .vehicle-search-modal.modal-visible {
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 1;
            visibility: visible;
        }

        .vehicle-search-modal-content {
            background-color: white;
            padding: 20px;
            border-radius: 12px;
            width: 90%;
            max-width: 500px;
            position: relative !important;
            transform: scale(0.7);
            opacity: 0;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
            margin: 0 !important;
        }

        .vehicle-search-modal.modal-visible .vehicle-search-modal-content {
            transform: scale(1);
            opacity: 1;
        }

        .vehicle-search-modal-close {
            position: absolute;
            right: 15px;
            top: 15px;
            font-size: 28px;
            font-weight: bold;
            color: #999;
            cursor: pointer;
            transition: color 0.2s;
        }

        .vehicle-search-modal-close:hover {
            color: #333;
        }

        /* ── v2 Filter-by-Vehicle trigger + modal (PS) ──────────────── */
        .fbv-actions { display: flex; gap: 10px; align-items: center; }
        .fbv-cta {
            display: inline-flex !important; align-items: center; gap: 8px;
            padding: 10px 18px !important; border-radius: 10px !important;
            font-weight: 700 !important; font-size: 14px !important;
            text-decoration: none !important; cursor: pointer !important;
            border: 0 !important;
            transition: filter .15s ease, transform .15s ease, background .15s ease, border-color .15s ease;
        }
        .fbv-cta-open {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
            color: #fff !important;
            box-shadow: 0 6px 16px -8px rgba(29,78,216,.5), inset 0 1px 0 rgba(255,255,255,.2) !important;
        }
        .fbv-cta-open:hover { filter: brightness(1.08); transform: translateY(-1px); color: #fff !important; }
        .fbv-cta-clear {
            display: none !important;
            background: #fff !important;
            color: #b91c1c !important;
            border: 1px solid #fecaca !important;
            box-shadow: none !important;
        }
        .fbv-cta-clear.is-shown { display: inline-flex !important; }
        .fbv-cta-clear:hover { background: #fef2f2 !important; border-color: #fca5a5 !important; color: #991b1b !important; }
        @media (max-width: 600px) {
            .fbv-actions { width: 100%; }
            .fbv-cta { flex: 1 1 auto; justify-content: center; }
        }

        /* ── Modal shell — glass-panel feel matching v2 design ─────── */
        .modal {
            display: none;
            position: fixed !important;
            z-index: 2147483647 !important; /* max int — beat any sticky chrome */
            inset: 0 !important;
            width: 100vw !important; height: 100vh !important; height: 100dvh !important;
            background: rgba(13, 20, 36, 0.55);
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
            align-items: center !important;
            justify-content: center !important;
            padding: 16px;
            box-sizing: border-box;
            overflow-y: auto;
        }
        .modal[style*="display: flex"],
        .modal[style*="display:flex"] { display: flex !important; }
        body.fbv-modal-open { overflow: hidden !important; }

        .modal-content {
            background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            margin: auto !important;
            padding: 28px 32px;
            border-radius: 22px;
            width: 100%;
            max-width: 640px;
            max-height: 90vh;
            overflow-y: auto;
            border: 1px solid rgba(148,163,184,.25);
            box-shadow:
                0 40px 80px -30px rgba(26,61,176,.3),
                0 0 0 1px rgba(26,61,176,.04),
                inset 0 1px 0 rgba(255,255,255,.9);
            animation: fbvSlideDown .28s cubic-bezier(.25,.9,.3,1);
        }
        @keyframes fbvSlideDown {
            from { opacity: 0; transform: translateY(-12px) scale(.98); }
            to   { opacity: 1; transform: translateY(0)    scale(1); }
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .filter-grid .filter-group { margin-bottom: 0; }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 14px;
            margin-bottom: 18px;
            border-bottom: 1px solid rgba(148,163,184,.18);
        }
        .modal-header h2 {
            margin: 0;
            color: #0d1424;
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.01em;
        }
        .close-modal {
            background: rgba(148,163,184,.12);
            border: 0;
            font-size: 22px;
            cursor: pointer;
            color: #475569;
            line-height: 1;
            padding: 0;
            width: 36px; height: 36px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background .15s, color .15s;
        }
        .close-modal:hover { background: #fee2e2; color: #dc2626; }

        .filter-group { margin-bottom: 0; }
        .filter-group label {
            display: block;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .04em;
            color: #475569;
            margin-bottom: 6px;
            text-align: left;
        }
        .filter-group select,
        .filter-group input {
            width: 100%;
            padding: 11px 14px;
            border: 1px solid rgba(148,163,184,.4);
            border-radius: 10px;
            font: inherit;
            font-size: 15px;
            background: #fff;
            color: #0d1424;
            outline: none;
            transition: border-color .15s, box-shadow .15s;
            box-sizing: border-box;
        }
        .filter-group select:focus,
        .filter-group input:focus {
            border-color: #1d4ed8;
            box-shadow: 0 0 0 3px rgba(29,78,216,.12);
        }
        .filter-group select:disabled {
            background: #f3f4f6 !important;
            color: #9ca3af !important;
            cursor: not-allowed !important;
        }

        .modal-buttons-container {
            margin-top: 22px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
        .modal-buttons-container .search-button,
        .modal-buttons-container .reset-button {
            display: inline-flex; align-items: center; justify-content: center;
            gap: 8px;
            padding: 12px 22px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 10px;
            border: 0;
            cursor: pointer;
            transition: filter .15s, transform .15s, background .15s, border-color .15s;
        }
        .modal-buttons-container .search-button {
            background: linear-gradient(135deg, #1d4ed8, #3b82f6);
            color: #fff;
            box-shadow: 0 6px 16px -8px rgba(29,78,216,.5), inset 0 1px 0 rgba(255,255,255,.2);
        }
        .modal-buttons-container .search-button:hover { filter: brightness(1.08); transform: translateY(-1px); }
        .modal-buttons-container .reset-button {
            background: #fff;
            color: #0d1424;
            border: 1px solid rgba(148,163,184,.4);
        }
        .modal-buttons-container .reset-button:hover { border-color: #1d4ed8; }
        @media (max-width: 600px) {
            .modal { padding: 12px; }
            .modal-content { padding: 22px 18px; border-radius: 18px; }
            .filter-grid { grid-template-columns: 1fr; gap: 10px; }
            .filter-group select, .filter-group input { font-size: 16px; /* iOS no-zoom */ }
            .modal-buttons-container { flex-direction: column-reverse; }
            .modal-buttons-container .search-button,
            .modal-buttons-container .reset-button { width: 100%; }
        }

        /* Modal responsive styling */
        @media (max-width: 600px) {
            .modal-header h2 {
                font-size: 22px;
            }
        }

        /* Price formatting - make cents and dollar sign smaller */
        .price-cents {
            font-size: 0.65em !important;
            vertical-align: super;
            font-weight: normal !important;
        }

        .price-sign {
            font-size: 0.7em !important;
            vertical-align: super;
            font-weight: normal !important;
        }

        .price-number {
            font-size: 1em !important;
        }

        /* Bolt Product Page Checkout Button Styling */
        .product-page-buttons-wrapper {
            display: flex;
            gap: 12px;
            align-items: stretch;
            width: 100% !important;
            float: none !important;
            clear: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .bolt-product-checkout-button {
            flex: 1 !important;
            min-height: 54px;
            --bolt-primary-action-color: rgba(245, 158, 11, 1) !important;
            --bolt-primary-action-box-shadow-color: rgba(245, 158, 11, 0.4) !important;
            --bolt-button-hover-color: rgba(206, 132, 8, 1) !important;
        }

        .bolt-product-checkout-button .bolt-checkout-button,
        .bolt-product-checkout-button [data-tid="bolt-checkout-button"],
        .bolt-product-checkout-button div {
            width: 100% !important;
            min-width: 0 !important;
            max-width: none !important;
        }

        .bolt-product-checkout-button [data-tid="bolt-checkout-button"] {
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4) !important;
        }

        .bolt-product-checkout-button [data-tid="bolt-checkout-button"]:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 24px rgba(245, 158, 11, 0.6) !important;
        }

        /* Change button text from "Continue to Payment" to "Buy Now" */
        .bolt-product-checkout-button [data-tid="bolt-checkout-button-text"] {
            visibility: hidden !important;
            position: relative !important;
        }

        .bolt-product-checkout-button [data-tid="bolt-checkout-button-text"]::after {
            content: "Buy Now" !important;
            visibility: visible !important;
            position: absolute !important;
            left: 50% !important;
            top: 50% !important;
            transform: translate(-50%, -50%) !important;
            font-size: 16px !important;
            font-weight: 700 !important;
            white-space: nowrap !important;
        }

        @media only screen and (max-width: 749px) {
            .product-page-buttons-wrapper {
                flex-direction: column;
                gap: 12px;
            }

            .btn-add-to-cart {
                width: 100%;
                font-size: 16px;
                padding: 14px 24px;
            }

            .bolt-product-checkout-button {
                width: 100%;
            }

            /* Mobile: center-align the Meet Wrenchy heading, paragraph,
               and Ask Wrenchy button in the .wrenchy-band collapsed state. */
            .wrenchy-band { text-align: center !important; justify-items: center !important; }
            .wrenchy-band > div { text-align: center !important; }
            .wrenchy-band .ask-btn { justify-self: center !important; }

            /* Verify-before-ordering icon: prevent the warning triangle
               SVG from being shrunk to a thin sliver by the flex parent. */
            .fit-notice svg {
                flex: none !important;
                width: 22px !important;
                height: 22px !important;
            }
        }
