/* ProductDetailZip – hero + pricing redesign */

.pdz-page {
    --pdz-red: #B90F16;
    --pdz-red-dark: #8a0c12;
    --pdz-black: #050505;
    --pdz-charcoal: #1a1a1a;
    --pdz-gray: #6b6b6b;
    --pdz-gray-light: #f3f3f3;
    --pdz-border: #e5e5e5;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #111;
    overflow-x: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pdz-page + .tank-footer,
body:has(.pdz-page) .tank-footer {
    margin-top: 0 !important;
}

/* ── Hero ── */
.pdz-hero {
    position: relative;
    background: var(--pdz-black) url('../Images/mainhero.jpeg') center center / cover no-repeat;
    min-height: 560px;
    overflow: hidden;
}

.pdz-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.pdz-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 48px 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.pdz-hero--logged-in .pdz-hero-inner {
    padding-bottom: 40px;
}

.pdz-hero--guest .pdz-hero-inner {
    padding-bottom: 0;
}

@media (min-width: 992px) {
    .pdz-hero--guest .pdz-hero-inner {
        padding-bottom: 36px;
    }

    .pdz-hero--guest .pdz-order-card {
        border-radius: 12px;
        border-top: none;
        padding-top: 28px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    }
}

.pdz-hero-copy {
    flex: 1 1 52%;
    padding-top: 24px;
    padding-bottom: 32px;
}

.pdz-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pdz-red);
}

.pdz-hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--pdz-red);
    flex-shrink: 0;
}

.pdz-hero-title {
    margin: 0 0 20px;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #fff;
}

.pdz-hero-title .pdz-accent {
    color: var(--pdz-red);
    display: block;
}

.pdz-hero-desc {
    max-width: 480px;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.pdz-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.pdz-hero-phone i {
    color: var(--pdz-red);
    font-size: 14px;
}

.pdz-hero-phone a {
    color: #fff;
    text-decoration: none;
}

.pdz-hero-phone a:hover {
    color: var(--pdz-red);
}

/* ── Order card (guest + logged-in) ── */
.pdz-hero-card-wrap {
    flex: 0 1 420px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
}

.pdz-order-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.pdz-order-card--logged-in {
    border-top: 3px solid var(--pdz-red);
    padding-top: 26px;
}

.pdz-card-title {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pdz-red);
}

.pdz-card-title-bar {
    width: 36px;
    height: 3px;
    background: var(--pdz-red);
    margin-bottom: 20px;
}

.pdz-zip-field {
    position: relative;
    margin-bottom: 14px;
}

.pdz-zip-field i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
}

.pdz-zip-field input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 42px;
    border: 1px solid var(--pdz-border);
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #fff !important;
}

.pdz-zip-field input:focus {
    outline: none;
    border-color: var(--pdz-red);
    box-shadow: 0 0 0 3px rgba(185, 15, 22, 0.12);
}

.pdz-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: var(--pdz-red);
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.pdz-btn-primary:hover {
    background: var(--pdz-red-dark);
}

.pdz-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    padding-top: 4px;
}

.pdz-card-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #333;
}

.pdz-card-features i {
    color: var(--pdz-red);
    font-size: 12px;
}

/* Logged-in card */
.pdz-user-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pdz-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--pdz-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdz-user-greeting {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.pdz-sign-out {
    font-size: 12px;
    color: var(--pdz-gray);
    text-decoration: underline;
}

.pdz-sign-out:hover {
    color: var(--pdz-red);
}

.pdz-section-label {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
}

.pdz-address-list {
    margin-bottom: 12px;
}

.pdz-address-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 1px solid var(--pdz-border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.pdz-address-item.selected {
    border-color: var(--pdz-red);
    background: #fff5f5;
}

.pdz-address-item input[type="radio"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--pdz-red);
    flex-shrink: 0;
    cursor: pointer;
}

.pdz-address-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.45;
    color: #333;
    margin: 0;
}

.pdz-address-name {
    display: block;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.pdz-address-remove {
    background: none;
    border: none;
    color: #bbb;
    font-size: 18px;
    line-height: 1;
    padding: 0 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.pdz-address-remove:hover {
    color: var(--pdz-red);
}

.pdz-add-address {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--pdz-red);
    text-decoration: none;
}

.pdz-add-address:hover {
    color: var(--pdz-red-dark);
    text-decoration: none;
}

.pdz-last-order-box {
    background: var(--pdz-gray-light);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.pdz-last-order-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.pdz-last-order-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.pdz-last-order-info i {
    color: #888;
    font-size: 18px;
    margin-top: 2px;
}

.pdz-last-order-items {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px;
}

.pdz-last-order-meta {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.pdz-last-order-price {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
}

.pdz-btn-reorder {
    margin-bottom: 10px;
}

.pdz-btn-reorder i {
    font-size: 16px;
}

.pdz-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid var(--pdz-border);
    border-radius: 8px;
    background: #fff;
    color: #111 !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s;
}

.pdz-btn-secondary:hover {
    border-color: #999;
}

.pdz-hidden-zip-form {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ── Stats bar ── */
.pdz-stats-bar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--pdz-black);
    border-top: 3px solid var(--pdz-red);
}

.pdz-stat {
    padding: 24px 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.pdz-stat:last-child {
    border-right: none;
}

.pdz-stat-value {
    display: block;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 800;
    color: var(--pdz-red);
    margin-bottom: 6px;
    line-height: 1.1;
}

.pdz-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
}

/* ── Process / Steps ── */
.pdz-process {
    background: #f6f2ea;
    padding: 72px 24px;
}

.pdz-process-inner {
    max-width: 1480px;
    margin: 0 auto;
}

.pdz-process-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.pdz-process-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.pdz-process-title {
    margin: 0;
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    color: #111;
    line-height: 1.05;
}

.pdz-process-title--single-line {
    max-width: 100%;
    font-size: clamp(0.95rem, 1.35vw + 0.7rem, 3.2rem);
    white-space: nowrap;
}

.pdz-process-link {
    margin-top: 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pdz-red);
    text-decoration: none;
    white-space: nowrap;
}

.pdz-process-link:hover {
    color: var(--pdz-red-dark);
    text-decoration: none;
}

.pdz-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    overflow: hidden;
}

.pdz-process-card {
    padding: 26px 22px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.25);
    min-height: 150px;
}

.pdz-process-card:last-child {
    border-right: none;
}

.pdz-process-step {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    color: rgba(0, 0, 0, 0.12);
    line-height: 1;
    margin-bottom: 14px;
}

.pdz-process-card-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 900;
    color: #111;
}

.pdz-process-card-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.62);
}

/* ── Pricing section ── */
.pdz-pricing {
    background: #fafafa;
    padding: 64px 24px 72px;
}

.pdz-pricing-inner {
    max-width: 1480px;
    margin: 0 auto;
}

.pdz-pricing-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.pdz-pricing-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pdz-red);
    margin-bottom: 8px;
}

.pdz-pricing-title {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #111;
}

.pdz-pricing-sub {
    margin: 0;
    max-width: 560px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--pdz-gray);
}

.pdz-tank-details-link {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pdz-red);
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 4px;
}

.pdz-tank-details-link:hover {
    color: var(--pdz-red-dark);
    text-decoration: none;
}

.pdz-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.pdz-tank-card {
    background: #fff;
    border: 1px solid var(--pdz-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pdz-tank-card.featured {
    background: var(--pdz-charcoal);
    border-color: var(--pdz-charcoal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.pdz-tank-popular {
    background: var(--pdz-red);
    color: #fff;
    text-align: center;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pdz-tank-card-body {
    padding: 28px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pdz-tank-card.featured .pdz-tank-card-body {
    padding-top: 20px;
}

.pdz-tank-size {
    margin: 0 0 4px;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.pdz-tank-card.featured .pdz-tank-size {
    color: #fff;
}

.pdz-tank-subtitle {
    margin: 0 0 20px;
    font-size: 13px;
    color: var(--pdz-gray);
}

.pdz-tank-card.featured .pdz-tank-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.pdz-price-rows {
    margin-top: auto;
}

.pdz-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    margin-bottom: 6px;
    border-radius: 4px;
    background: var(--pdz-gray-light);
}

.pdz-tank-card.featured .pdz-price-row {
    background: rgba(255, 255, 255, 0.06);
}

.pdz-price-row-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #555;
    line-height: 1.3;
}

.pdz-price-row-label small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    text-transform: none;
    color: #888;
    letter-spacing: 0;
    margin-top: 2px;
}

.pdz-tank-card.featured .pdz-price-row-label {
    color: rgba(255, 255, 255, 0.55);
}

.pdz-tank-card.featured .pdz-price-row-label small {
    color: rgba(255, 255, 255, 0.4);
}

.pdz-price-row-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--pdz-red);
    white-space: nowrap;
}

.pdz-price-row-value.dark {
    color: #111;
}

.pdz-tank-card.featured .pdz-price-row-value.dark {
    color: #fff;
}

.pdz-pricing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.pdz-pricing-disclaimer {
    margin: 0;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.pdz-pricing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    background: var(--pdz-red);
    color: #fff !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.pdz-pricing-cta:hover {
    background: var(--pdz-red-dark);
    color: #fff;
    text-decoration: none;
}

/* ── Tank Exchange / Spare Tank ── */
.pdz-tank-options {
    background: #f6f2ea;
    padding: 48px 0;
}

.pdz-tank-options-banner {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 360px;
    background-color: var(--pdz-black);
    background-image: url('../Images/backyardgrill.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.pdz-tank-options-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    pointer-events: none;
}

.pdz-tank-options-inner {
    position: relative;
    z-index: 1;
    max-width: 1480px;
    margin: 0 auto;
    padding: 64px 56px;
}

.pdz-tank-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 64px;
}

.pdz-tank-options-card {
    max-width: 520px;
}

.pdz-tank-options-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--pdz-red);
    color: #fff;
    font-size: 16px;
}

.pdz-tank-options-title {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
}

.pdz-tank-options-desc {
    margin: 0;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

/* ── Delivery Options ── */
.pdz-delivery {
    background: #f6f2ea;
    padding: 64px 24px 72px;
}

.pdz-delivery-inner {
    max-width: 1480px;
    margin: 0 auto;
}

.pdz-delivery-header {
    margin-bottom: 26px;
}

.pdz-delivery-eyebrow {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.pdz-delivery-title {
    margin: 0;
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    color: #111;
    line-height: 1.05;
}

.pdz-delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
}

.pdz-delivery-card {
    padding: 26px 26px 24px;
    background: rgba(255, 255, 255, 0.45);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    min-height: 160px;
}

.pdz-delivery-card:last-child {
    border-right: none;
}

.pdz-delivery-card--featured {
    background: #0f0f10;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pdz-delivery-icon {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
}

.pdz-delivery-card--featured .pdz-delivery-icon {
    background: rgba(255, 255, 255, 0.08);
}

.pdz-delivery-icon i {
    color: var(--pdz-red);
    font-size: 16px;
}

.pdz-delivery-card-title {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 900;
    color: #111;
}

.pdz-delivery-card--featured .pdz-delivery-card-title {
    color: #fff;
}

.pdz-delivery-price {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
    color: var(--pdz-red);
}

.pdz-delivery-card--featured .pdz-delivery-price {
    color: var(--pdz-red);
}

.pdz-delivery-desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.62);
}

.pdz-delivery-card--featured .pdz-delivery-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ── Customer Reviews ── */
.pdz-reviews {
    background: var(--pdz-black);
    padding: 64px 24px 56px;
}

.pdz-reviews-inner {
    max-width: 1480px;
    margin: 0 auto;
}

.pdz-reviews-header {
    margin-bottom: 32px;
}

.pdz-reviews-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pdz-gray);
}

.pdz-reviews-title {
    margin: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.pdz-reviews-carousel.owl-carousel {
    display: block;
}

.pdz-reviews-carousel.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

.pdz-reviews-carousel.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.pdz-reviews-carousel.owl-carousel .owl-item {
    display: flex;
    height: auto;
}

.pdz-review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 240px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.pdz-review-accent {
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 22px;
    background: var(--pdz-red);
    flex-shrink: 0;
}

.pdz-review-quote {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.65;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
    flex: 1 1 auto;
}

.pdz-review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.pdz-review-stars .fa-star,
.pdz-review-stars .fa-star-half-o {
    color: gold;
    font-size: 14px;
}

.pdz-review-stars .fa-star-o {
    color: rgba(255, 255, 255, 0.28);
    font-size: 14px;
}

.pdz-review-author {
    margin-top: auto;
    flex-shrink: 0;
}

.pdz-review-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.pdz-review-location {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.pdz-reviews-carousel.owl-carousel .owl-dots {
    margin-top: 28px;
    line-height: 1;
}

.pdz-reviews-carousel.owl-carousel button.owl-dot span {
    width: 8px;
    height: 8px;
    margin: 4px;
    background: rgba(255, 255, 255, 0.28);
}

.pdz-reviews-carousel.owl-carousel button.owl-dot.active span,
.pdz-reviews-carousel.owl-carousel button.owl-dot:hover span {
    background: var(--pdz-red);
}

/* ── About Us ── */
.pdz-about {
    background: #f6f2ea;
    padding: 64px 24px 0;
}

.pdz-about-inner {
    max-width: 1480px;
    margin: 0 auto;
}

.pdz-about-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    overflow: hidden;
}

.pdz-about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 52px 56px;
}

.pdz-about-eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.pdz-about-title {
    margin: 0 0 22px;
    max-width: 100%;
    font-size: clamp(0.92rem, 1.35vw + 0.7rem, 3.2rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #111;
    white-space: nowrap;
}

.pdz-about-text {
    margin: 0 0 14px;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.62);
}

.pdz-about-text:last-of-type {
    margin-bottom: 0;
}

.pdz-about-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 28px;
    padding: 14px 24px;
    border-radius: 4px;
    background: var(--pdz-red-dark);
    color: #fff !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.pdz-about-cta:hover {
    background: var(--pdz-red);
    color: #fff;
    text-decoration: none;
}

/* ── Help CTA bar ── */
.pdz-help-cta {
    width: 100vw;
    max-width: 100vw;
    margin-top: 64px;
    margin-bottom: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--pdz-red-dark);
}

.pdz-help-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 56px;
}

.pdz-help-cta-copy {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-width: 0;
}

.pdz-help-cta-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.pdz-help-cta-title {
    margin: 0 0 6px;
    font-size: clamp(1.05rem, 1.8vw, 1.55rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.pdz-help-cta-sub {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.pdz-help-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-height: 52px;
    padding: 12px 28px;
    border-radius: 6px;
    background: #fff;
    color: var(--pdz-red-dark) !important;
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.pdz-help-cta-phone:hover {
    background: #f3f3f3;
    color: var(--pdz-red-dark) !important;
    text-decoration: none;
}

.pdz-about-media {
    min-height: 360px;
    background: #ddd;
}

.pdz-about-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

/* ── Banner (promotional) ── */
.pdz-banner-wrap {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px 48px;
}

.pdz-banner-wrap .banner-container {
    border-radius: 8px;
    overflow: hidden;
}

/* ── Special offer modal (preserved) ── */
.pdz-page .special-offer-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.pdz-page .special-offer-modal.active {
    display: flex;
}

.pdz-page .special-offer-modal .modal-content {
    position: relative;
    background-color: #fff;
    margin: auto;
    width: 100vw;
    max-width: 120% !important;
    max-height: 90% !important;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pdz-page .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

/* ── Unavailable modal (preserved) ── */
.pdz-page .unavail-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(185, 15, 23, 0.15);
    overflow: hidden;
    background-color: #fff;
}

.pdz-page .unavail-header {
    background-color: var(--pdz-red) !important;
    border-bottom: none;
    padding: 1.5rem;
    color: white;
}

/* ── System update modal ── */
.pdz-page .modal-header-custom {
    border-bottom: none;
}

/* ── Responsive: tablet ── */
@media (max-width: 1199px) {
    .pdz-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pdz-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pdz-process-card:nth-child(3) {
        border-right: none;
    }

    .pdz-process-card:nth-child(1),
    .pdz-process-card:nth-child(2),
    .pdz-process-card:nth-child(3) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 991px) {
    .pdz-hero-inner {
        flex-direction: column;
        padding-top: 32px;
        gap: 0;
    }

    .pdz-hero-copy {
        padding-top: 0;
        padding-bottom: 24px;
    }

    .pdz-hero-card-wrap {
        max-width: 100%;
        margin: 0;
    }

    .pdz-hero--logged-in .pdz-hero-inner {
        padding-bottom: 28px;
    }

    .pdz-hero--guest .pdz-hero-inner {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .pdz-hero--guest .pdz-hero-copy {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pdz-hero--guest .pdz-hero-card-wrap {
        max-width: 100%;
        margin-top: 8px;
    }

    .pdz-hero--guest .pdz-order-card {
        border-radius: 16px 16px 0 0;
        margin-top: 0;
        border-top: 3px solid var(--pdz-red);
        padding-top: 26px;
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
    }

    .pdz-hero--guest .pdz-order-card .pdz-card-title-bar {
        display: none;
    }

    .pdz-order-card--logged-in {
        border-radius: 12px;
        margin-top: 0;
        border-top: 3px solid var(--pdz-red);
        padding-top: 26px;
    }

    .pdz-hero {
        min-height: auto;
    }

    .pdz-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .pdz-stat:nth-child(2) {
        border-right: none;
    }

    .pdz-stat:nth-child(1),
    .pdz-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .pdz-about-card {
        grid-template-columns: 1fr;
    }

    .pdz-about-copy {
        padding: 40px 36px;
    }

    .pdz-about-media,
    .pdz-about-media img {
        min-height: 300px;
    }

    .pdz-tank-options {
        padding: 40px 0;
    }

    .pdz-tank-options-inner {
        padding: 52px 36px;
    }

    .pdz-tank-options-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Responsive: mobile ── */
@media (max-width: 767px) {
    .pdz-hero::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.35) 100%);
    }

    .pdz-hero-inner {
        padding: 28px 16px 0;
    }

    .pdz-hero--guest .pdz-hero-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .pdz-hero--guest .pdz-hero-copy {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pdz-hero-desc {
        font-size: 14px;
    }

    .pdz-hero-phone {
        font-size: 12px;
    }

    .pdz-order-card {
        padding: 22px 20px 20px;
    }

    .pdz-pricing {
        padding: 40px 16px 48px;
    }

    .pdz-pricing-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pdz-pricing-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pdz-tank-options {
        padding: 32px 0;
    }

    .pdz-tank-options-inner {
        padding: 40px 24px;
    }

    .pdz-tank-options-banner {
        min-height: 300px;
    }

    .pdz-tank-options-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pdz-delivery {
        padding: 48px 16px 56px;
    }

    .pdz-delivery-grid {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .pdz-delivery-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .pdz-delivery-card:last-child {
        border-bottom: none;
    }

    .pdz-reviews {
        padding: 48px 16px 40px;
    }

    .pdz-about {
        padding: 48px 16px 0;
    }

    .pdz-about-card {
        grid-template-columns: 1fr;
    }

    .pdz-about-copy {
        padding: 32px 24px 28px;
        order: 1;
    }

    .pdz-about-media {
        order: 2;
        min-height: 260px;
    }

    .pdz-about-media img {
        min-height: 260px;
    }

    .pdz-help-cta {
        margin-top: 48px;
    }

    .pdz-help-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .pdz-help-cta-phone {
        width: 100%;
    }

    .pdz-process {
        padding: 48px 16px;
    }

    .pdz-process-header {
        margin-bottom: 18px;
    }

    .pdz-process-link {
        margin-top: 0;
    }

    .pdz-process-grid {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .pdz-process-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .pdz-process-card:last-child {
        border-bottom: none;
    }

    .pdz-pricing-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .pdz-pricing-cta {
        justify-content: center;
        width: 100%;
    }

    .pdz-stat {
        padding: 16px 12px;
    }

    .pdz-stat-value {
        font-size: 1rem;
    }

    .pdz-stat-label {
        font-size: 11px;
    }
}

@media (max-width: 400px) {
    .pdz-hero-title {
        font-size: 2rem;
    }
}
