h1:focus {
    outline: none;
}

/* =====================================================
   HOME PAGE – Hero
   ===================================================== */
.pa-hero {
    position: relative;
    min-height: 88vh;
    background:
        linear-gradient(135deg, rgba(10, 16, 35, 0.82) 0%, rgba(26, 37, 64, 0.70) 100%),
        linear-gradient(160deg, #1a2540 0%, #2e3f6e 50%, #1a2540 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* decorative gold accent line */
.pa-hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, transparent, #b8a96a 25%, #b8a96a 75%, transparent);
}

/* subtle diagonal pattern */
.pa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(184, 169, 106, 0.03) 0px,
        rgba(184, 169, 106, 0.03) 1px,
        transparent 1px,
        transparent 28px
    );
    pointer-events: none;
}

.pa-hero-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 6rem 0 4rem;
}

.pa-hero-eyebrow {
    color: #b8a96a;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pa-hero-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.4rem;
    max-width: 680px;
}

.pa-hero-subtitle {
    color: rgba(240, 240, 240, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.2rem;
}

.pa-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.pa-btn-primary-hero {
    background-color: #b8a96a;
    color: #1a2540 !important;
    border: 2px solid #b8a96a;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s, transform 0.15s;
}

.pa-btn-primary-hero:hover {
    background-color: #a8965a;
    border-color: #a8965a;
    transform: translateY(-1px);
    color: #1a2540 !important;
    text-decoration: none;
}

.pa-btn-outline-hero {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.55);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.8rem;
    border-radius: 3px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.pa-btn-outline-hero:hover {
    border-color: #b8a96a;
    background: rgba(184, 169, 106, 0.12);
    color: #ffffff !important;
    transform: translateY(-1px);
    text-decoration: none;
}

/* =====================================================
   HOME PAGE – Trust bar
   ===================================================== */
.pa-trust-bar {
    background-color: #1a2540;
    border-top: 3px solid #b8a96a;
    border-bottom: 1px solid rgba(184, 169, 106, 0.25);
    padding: 1.4rem 0;
}

.pa-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    border-right: 1px solid rgba(184, 169, 106, 0.2);
}

.pa-trust-item:last-child {
    border-right: none;
}

.pa-trust-number {
    color: #b8a96a;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.pa-trust-plus {
    font-size: 1.1rem;
    vertical-align: super;
}

.pa-trust-label {
    color: rgba(240, 240, 240, 0.75);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* =====================================================
   HOME PAGE – Section shared styles
   ===================================================== */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pa-section-eyebrow {
    color: #b8a96a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.pa-section-title {
    color: #1a2540;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

.pa-section-subtitle {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 560px;
    margin-inline: auto;
}

/* =====================================================
   HOME PAGE – Service cards
   ===================================================== */
.pa-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 1.75rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    cursor: pointer;
}

.pa-service-card:hover {
    border-color: #b8a96a;
    box-shadow: 0 8px 32px rgba(26, 37, 64, 0.10);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.pa-service-card--featured {
    border-color: #b8a96a;
    background: linear-gradient(160deg, #fdfbf4 0%, #fff 100%);
}

.pa-service-icon {
    width: 48px;
    height: 48px;
    color: #b8a96a;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.pa-service-icon svg {
    width: 100%;
    height: 100%;
}

.pa-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2540;
    margin-bottom: 0.65rem;
}

.pa-service-text {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.2rem;
}

.pa-service-link {
    color: #b8a96a;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: auto;
}

/* =====================================================
   HOME PAGE – Why Choose Us
   ===================================================== */
.pa-why-section {
    background-color: #f8f8f5;
}

.pa-why-text {
    color: #444;
    font-size: 0.97rem;
    line-height: 1.75;
}

.pa-btn-primary {
    background-color: #1a2540;
    color: #b8a96a !important;
    border: 2px solid #1a2540;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.15s;
    display: inline-block;
}

.pa-btn-primary:hover {
    background-color: #0f1628;
    border-color: #0f1628;
    transform: translateY(-1px);
    text-decoration: none;
}

.pa-pillar-card {
    background: #ffffff;
    border: 1px solid #e4e4e0;
    border-radius: 6px;
    padding: 1.4rem 1.25rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pa-pillar-card:hover {
    border-color: #b8a96a;
    box-shadow: 0 4px 18px rgba(26, 37, 64, 0.08);
}

.pa-pillar-icon {
    width: 36px;
    height: 36px;
    color: #b8a96a;
    margin-bottom: 0.85rem;
}

.pa-pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pa-pillar-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a2540;
    margin-bottom: 0.4rem;
}

.pa-pillar-card p {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   HOME PAGE – Products strip
   ===================================================== */
.pa-products-strip {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

.pa-product-chip {
    background: #f4f2ec;
    border: 1px solid #ddd9cd;
    color: #1a2540;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    padding: 0.7rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s, border-color 0.2s;
}

.pa-product-chip:hover {
    background: #ede9d9;
    border-color: #b8a96a;
}

.pa-btn-outline-dark {
    color: #1a2540 !important;
    border: 2px solid #1a2540;
    background: transparent;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.6rem;
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, transform 0.15s;
    display: inline-block;
}

.pa-btn-outline-dark:hover {
    background-color: #1a2540;
    color: #b8a96a !important;
    transform: translateY(-1px);
    text-decoration: none;
}

/* =====================================================
   HOME PAGE – CTA Banner
   ===================================================== */
.pa-cta-banner {
    background: linear-gradient(135deg, #1a2540 0%, #2e3f6e 100%);
    border-top: 3px solid #b8a96a;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
}

.pa-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(184, 169, 106, 0.04) 0px,
        rgba(184, 169, 106, 0.04) 1px,
        transparent 1px,
        transparent 28px
    );
    pointer-events: none;
}

.pa-cta-title {
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.pa-cta-subtitle {
    color: rgba(240, 240, 240, 0.8);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.pa-cta-btn {
    font-size: 0.95rem;
    padding: 0.85rem 2.2rem;
}

.pa-main-content {
    padding-top: 1.5rem;
}

/* ── Supplier table ───────────────────────────────────── */
.pa-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.pa-table thead th {
    background-color: #1a2540;
    color: #b8a96a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    padding: 0.75rem 1rem;
}

.pa-table tbody tr {
    transition: background-color 0.15s ease;
}

.pa-table tbody tr:hover {
    background-color: rgba(184, 169, 106, 0.07);
}

.pa-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

/* ── Cards (AddEditSupplier) ──────────────────────────── */
.pa-card {
    border: 1px solid rgba(26, 37, 64, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.pa-card-header {
    background-color: #1a2540;
    color: #f0f0f0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.6rem 1rem;
}

/* ── Modal header ─────────────────────────────────────── */
.pa-modal-header {
    background-color: #1a2540;
    color: #f0f0f0;
}

/* ── In-modal add/edit form strip ─────────────────────── */
.pa-modal-form-section {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
}

/* =====================================================
   Peter Allison Double Glazing – Navbar Styles
   Primary dark  : #1a2540  (deep navy)
   Accent gold   : #b8a96a  (warm brushed gold)
   Text on dark  : #f0f0f0
   ===================================================== */

.pa-navbar {
    background-color: #1a2540 !important;
    border-bottom: 3px solid #b8a96a;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.pa-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.pa-nav-link {
    color: #d6d6d6 !important;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem !important;
    position: relative;
    transition: color 0.2s ease;
}

.pa-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background-color: #b8a96a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.pa-nav-link:hover,
.pa-nav-link.active {
    color: #ffffff !important;
}

.pa-nav-link:hover::after,
.pa-nav-link.active::after {
    transform: scaleX(1);
}

.pa-toggler {
    border-color: #b8a96a;
}

.pa-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23b8a96a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.pa-auth-actions {
    flex-shrink: 0;
    margin-left: 1.25rem;
}

.pa-username {
    color: #b8a96a;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    max-width: 160px;
    display: inline-block;
    vertical-align: middle;
}

.pa-btn-register {
    color: #b8a96a !important;
    border: 1.5px solid #b8a96a;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.pa-btn-register:hover {
    background-color: #b8a96a;
    color: #1a2540 !important;
    text-decoration: none;
}

.pa-btn-login {
    color: #1a2540 !important;
    background-color: #b8a96a;
    border: 1.5px solid #b8a96a;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.pa-btn-login:hover {
    background-color: #a8965a;
    border-color: #a8965a;
    color: #1a2540 !important;
    text-decoration: none;
}

.pa-btn-logout {
    color: #b8a96a !important;
    border: 1.5px solid #b8a96a;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.pa-btn-logout:hover {
    background-color: #b8a96a;
    color: #1a2540 !important;
}

@media (max-width: 991.98px) {
    .pa-navbar .navbar-collapse {
        background-color: #1a2540;
        padding: 0.5rem 0.5rem 1rem;
        border-top: 1px solid rgba(184, 169, 106, 0.35);
    }

    .pa-nav-link::after {
        display: none;
    }

    .pa-nav-link:hover,
    .pa-nav-link.active {
        background-color: rgba(184, 169, 106, 0.15);
        border-radius: 4px;
    }

    .pa-auth-actions {
        flex-direction: row;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(184, 169, 106, 0.2);
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* =====================================================
   PRODUCTS PAGE – Page Hero
   ===================================================== */
.pa-page-hero {
    background: linear-gradient(135deg, #1a2540 0%, #2e3f6e 100%);
    border-bottom: 3px solid #b8a96a;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.pa-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(184, 169, 106, 0.04) 0px,
        rgba(184, 169, 106, 0.04) 1px,
        transparent 1px,
        transparent 28px
    );
    pointer-events: none;
}

.pa-page-hero-title {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.pa-page-hero-subtitle {
    color: rgba(240, 240, 240, 0.82);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 540px;
    margin: 0;
}

/* =====================================================
   PRODUCTS PAGE – Jump nav
   ===================================================== */
.pa-product-nav {
    background: #ffffff;
    border-bottom: 1px solid #e4e4e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(26, 37, 64, 0.07);
}

.pa-product-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.pa-product-nav-list::-webkit-scrollbar {
    display: none;
}

.pa-product-nav-list a {
    display: block;
    color: #444;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1rem;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.pa-product-nav-list a:hover {
    color: #1a2540;
    border-bottom-color: #b8a96a;
}

/* =====================================================
   PRODUCTS PAGE – Product sections
   ===================================================== */
.pa-products-page {
    background: #ffffff;
}

.pa-product-section {
    scroll-margin-top: 56px;
    padding: 3rem 0;
}

.pa-product-divider {
    border: none;
    border-top: 1px solid #eceae3;
    margin: 0;
}

.pa-product-title {
    color: #1a2540;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.pa-product-description {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 1.25rem;
}

.pa-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.pa-product-features li {
    color: #444;
    font-size: 0.9rem;
    padding-left: 1.4rem;
    position: relative;
}

.pa-product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #b8a96a;
    flex-shrink: 0;
}

/* =====================================================
   PRODUCTS PAGE – Image placeholder
   ===================================================== */
.pa-product-image-placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(145deg, #f4f2ec 0%, #eceae3 100%);
    border: 2px dashed #c8c0a0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pa-image-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #b8a96a;
}

.pa-image-inner svg {
    width: 64px;
    height: 64px;
    opacity: 0.6;
}

.pa-image-inner span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a8965a;
}

@media (max-width: 991.98px) {
    .pa-product-nav {
        position: static;
    }

    .pa-product-section {
        padding: 2rem 0;
    }
}
}