/* =============================
   Peri AU Main Store Styles
   
   Note: Header & footer styles are loaded from base-parts/
   (enqueued automatically for all page types)
   ============================= */

/* =============================
   Layout & Containers
   ============================= */

.peri-au-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 2rem;
}

/* =============================
   Hero Section
   ============================= */

.peri-au-hero {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding-top: 1rem;
}

.peri-au-hero-left {
    flex: 1;
}

.peri-au-hero-title {
    font-weight: 700 !important;
    color: #031530;
}

.peri-au-hero-description {
    font-weight: 500;
    font-size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--solera-mako-base);
    margin-bottom: 1.5rem;
    line-height: 1.25rem;
}

.peri-au-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.peri-au-hero-right img {
    max-height: 240px;
    max-width: 100%;
    width: auto;
}

/* =============================
   Pricing Section
   ============================= */

.peri-au-product-container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.peri-au-product-card {
    background: var(--solera-white);
    border: 1px solid var(--cobalt-50);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow: visible;
    position: relative;
    padding: 1rem;
}

.peri-au-image-column {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.peri-au-content-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.5rem;
    justify-content: flex-start;
}


.peri-au-product-prices {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.peri-au-product-price-only {
    font-size: 2rem;
    line-height: 1.2rem;
    font-weight: bold;
    color: var(--solera-jacarta);
}

.peri-au-annual-value {
    font-size: 1rem;
    color: var(--solera-silver);
    font-weight: 500;
    margin-top: 0.25rem;
}
.peri-au-price-period{
    font-size: 1rem;
    color: var(--solera-silver);
    font-weight: 500;
}
.peri-au-product-short-description {
    color: var(--solera-silver);
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0.25rem;
}
.peri-au-lease-label {
    color: var(--solera-sun);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.375rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.peri-au-product-title{
    font-weight: 600 !important;
    margin: 0 !important;
    color:var(--solera-shark);
    font-size: 1.5rem !important;
}
.peri-au-secure-payment {
    color: var(--solera-shark);
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    margin: 0.625rem auto;
}

.peri-au-button-wrapper {
    display: block;
    width: 100%;
}

.peri-au-product-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.peri-au-product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.peri-au-top-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.peri-au-price {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
}
.peri-au-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 1rem;
    color: var(--solera-silver);
    line-height: 1.2;
}

.peri-au-features-list li::before {
    content: '✓ ';
    color: var(--solera-success);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* =============================
   Info Section
   ============================= */

.peri-au-info-section {
    color: var(--solera-mako-base);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.75rem;
}

.peri-au-info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border: 2px solid #333;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    margin-right: 8px;
    line-height: 0;
    top: -5px;
    padding-top: 2px;
    vertical-align: text-bottom;
}

/* =============================
   Mobile Responsive
   ============================= */

@media (max-width: 768px) {
    .peri-au-main-container {
        padding-bottom: 1.5rem;
    }

    .peri-au-hero {
        flex-direction: column;
        gap: 1rem;
        padding-top: 0.5rem;
    }

    .peri-au-hero-left {
        width: 100%;
    }

    .peri-au-hero-title {
        font-size: 1.5rem;
    }

    .peri-au-hero-description {
        font-size: 0.9rem;
        line-height: 1.2rem;
    }

    .peri-au-hero-right {
        display: none;
    }

    .peri-au-secure-payment {
        font-size: 1.5rem;
        margin: 0.75rem auto;
    }

    .peri-au-product-container {
        flex-direction: column;
    }

    .peri-au-product-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .peri-au-image-column {
        flex: 1;
        min-width: 100%;
        min-height: 180px;
    }

    .peri-au-content-column {
        flex: 1;
        gap: 0.5rem;
        padding: 1rem;
    }

    .peri-au-product-title {
        font-size: 1.25rem !important;
    }

    .peri-au-product-short-description {
        font-size: 0.9rem;
    }

    .peri-au-product-price-only {
        font-size: 1.5rem;
        line-height: 1rem;
    }

    .peri-au-price-period {
        font-size: 0.9rem;
    }

    .peri-au-annual-value {
        font-size: 0.9rem;
    }

    .peri-au-lease-label {
        font-size: 0.9rem;
    }

    .peri-au-info-section {
        font-size: 0.75rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .peri-au-hero-title {
        font-size: 1.25rem;
    }

    .peri-au-hero-description {
        font-size: 0.85rem;
    }

    .peri-au-secure-payment {
        font-size: 1.25rem;
    }

    .peri-au-product-card {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .peri-au-image-column {
        min-height: 150px;
    }

    .peri-au-content-column {
        padding: 0.75rem;
    }

    .peri-au-product-title {
        font-size: 1.1rem !important;
    }

    .peri-au-product-price-only {
        font-size: 1.25rem;
    }
}
