From a6d5c1bbfaee2e41491164aef25afecfedd34802 Mon Sep 17 00:00:00 2001 From: Myron Blair Date: Tue, 26 May 2026 12:47:17 +0000 Subject: [PATCH] Update pricing: half day $80, full day $150, weekend to 3 Day Adventure $449 --- index.html | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/index.html b/index.html index ce7a40b..df96b76 100644 --- a/index.html +++ b/index.html @@ -79,7 +79,7 @@ "description": "4-hour Polaris Slingshot rental — perfect for a quick thrill around Parker County." }, "priceCurrency": "USD", - "price": "99.00" + "price": "80.00" }, { "@type": "Offer", @@ -89,17 +89,17 @@ "description": "8-hour Polaris Slingshot rental — explore Weatherford, Mineral Wells, and beyond." }, "priceCurrency": "USD", - "price": "169.00" + "price": "150.00" }, { "@type": "Offer", "itemOffered": { "@type": "Product", - "name": "Weekend Slingshot Rental", - "description": "48-hour weekend Polaris Slingshot rental — the ultimate Texas road trip experience." + "name": "3 Day Adventure Slingshot Rental", + "description": "72-hour Polaris Slingshot rental — the ultimate Texas road trip experience." }, "priceCurrency": "USD", - "price": "299.00" + "price": "449.00" } ] } @@ -602,7 +602,7 @@

Half Day

-

$99

+

$80

4 hours of freedom

  • Polaris Slingshot SL
  • @@ -617,7 +617,7 @@
    -

    Weekend

    -

    $299

    -

    48-hour getaway

    +

    3 Day Adventure

    +

    $449

    +

    72-hour adventure

    • Polaris Slingshot SL
    • DOT helmets included
    • @@ -641,7 +641,7 @@
    • Proof of insurance required
    • 24/7 roadside assistance
    - Book Weekend + Book 3 Day Adventure

Must be 25+ with valid driver's license. Security deposit required. Prices include tax.

@@ -658,7 +658,7 @@
1

Choose Your Package

-

Half day, full day, or weekend — pick the adventure that fits your schedule and budget.

+

Half day, full day, or 3 day adventure — pick the rental that fits your schedule and budget.

2
@@ -796,7 +796,7 @@
Unavailable
-

Click a date to select it — click again to deselect. Weekend package shows both days automatically.

+

Click a date to select it — click again to deselect. 3 Day Adventure shows all three days automatically.

@@ -807,9 +807,9 @@ @@ -893,7 +893,7 @@ function getEndDateStr(startDate, pkg) { if (!startDate || pkg !== 'weekend') return startDate; const d = new Date(startDate + 'T12:00:00'); - d.setDate(d.getDate() + 1); + d.setDate(d.getDate() + 2); return d.toISOString().split('T')[0]; } @@ -929,7 +929,7 @@ const isWknd = selectedPackage === 'weekend'; if (rangeItem) rangeItem.style.display = isWknd ? 'flex' : 'none'; if (hint) hint.textContent = isWknd - ? 'Click your start date — both weekend days highlight automatically.' + ? 'Click your start date — all three days highlight automatically.' : 'Click any available date to select it.'; } @@ -1067,7 +1067,7 @@ } // ── Balance-due display ─────────────────────────────────────────────────────── - const PACKAGE_PRICES = { 'half-day': 99, 'full-day': 169, 'weekend': 299 }; + const PACKAGE_PRICES = { 'half-day': 80, 'full-day': 150, 'weekend': 449 }; const DEPOSIT = 45; const pkgSelect = document.querySelector('select[name="package"]'); const balLabel = document.getElementById('balance-due-label');