/* =========================================================
   Custom Printed ID Cards Hero
   ========================================================= */

:root {
    --brand-navy: #020d22;
    --brand-gold: #d4a017;
    --brand-gold-hover: #bd8c10;
    --hero-heading: #111827;
    --hero-text: #596274;
    --hero-background: #f7f8fa;
    --hero-border: #e1e5eb;
    --hero-white: #ffffff;
}


/* Main hero
--------------------------------------------------------- */

.product-hero {
    position: relative;
    overflow: hidden;
    padding: 1.25rem 0 2rem;
    background:
        radial-gradient(
            circle at 82% 40%,
            rgba(218, 224, 232, 0.8) 0,
            rgba(247, 248, 250, 0) 34%
        ),
        linear-gradient(
            110deg,
            #ffffff 0%,
            #f8f9fb 52%,
            #eef1f5 100%
        );
}


/* Hero content
--------------------------------------------------------- */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 590px;
    padding: 0.5rem 0 1rem;
}


/* Breadcrumb
--------------------------------------------------------- */

.hero-breadcrumb {
    margin-bottom: 1.35rem;
    font-size: 0.8rem;
}

.hero-breadcrumb a {
    color: #697386;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-breadcrumb a:hover,
.hero-breadcrumb a:focus {
    color: var(--brand-gold);
}

.hero-breadcrumb .active {
    color: #333d4d;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #a0a7b3;
}


/* Heading and description
--------------------------------------------------------- */

.hero-title {
    margin-bottom: 0.65rem;
    color: var(--hero-heading);
    font-size: clamp(2.4rem, 4vw, 3.75rem);
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.045em;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    margin-bottom: 1rem;
    color: var(--brand-gold);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
}

.hero-description {
    max-width: 560px;
    margin-bottom: 1.25rem;
    color: var(--hero-text);
    font-size: 0.98rem;
    line-height: 1.7;
}


/* Hero feature list
--------------------------------------------------------- */

.hero-features {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #303949;
    font-size: 0.93rem;
    line-height: 1.45;
}

.hero-features i {
    flex: 0 0 auto;
    margin-top: 0.08rem;
    color: var(--brand-gold);
    font-size: 0.95rem;
}


/* Buttons
--------------------------------------------------------- */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.65rem;
}

.hero-actions .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 650;
    border-radius: 0.45rem;
}

.btn-brand {
    color: var(--brand-navy);
    background-color: var(--brand-gold);
    border-color: var(--brand-gold);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--brand-navy);
    background-color: var(--brand-gold-hover);
    border-color: var(--brand-gold-hover);
}


/* Right-side image and trust area
--------------------------------------------------------- */

.hero-media {
    max-width: 650px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
}

.hero-image-wrapper::before {
    position: absolute;
    content: "";
    width: 80%;
    height: 80%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(255,255,255,0.35) 0%,
        rgba(255,255,255,0.15) 45%,
        rgba(255,255,255,0) 80%
    );

    filter: blur(35px);
    z-index: 0;
}

.hero-image {

    display: block;
    width: 100%;
    max-width: 520px;   /* Adjust this */
    height: auto;
    margin: 0 auto;     /* Centres the image */
    object-fit: contain;
    position: relative;
    z-index: 2;
}


/* Trust bar beneath the image
--------------------------------------------------------- */

.hero-trust-bar {
    position: relative;
    z-index: 3;
    margin-top: 0.75rem;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid var(--hero-border);
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(2, 13, 34, 0.06);
}

.trust-item {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 0.65rem;
    padding: 0.75rem;
}

.hero-trust-bar .col-6:nth-child(odd) .trust-item {
    border-right: 1px solid var(--hero-border);
}

.hero-trust-bar .col-6:nth-child(-n + 2) .trust-item {
    border-bottom: 1px solid var(--hero-border);
}

.trust-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--brand-navy);
    background-color: #f8f9fb;
    border: 1px solid #d4dae3;
    border-radius: 50%;
    font-size: 1rem;
}

.trust-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}

.trust-content strong {
    color: #202938;
    font-size: 0.8rem;
    font-weight: 700;
}

.trust-content span {
    margin-top: 0.15rem;
    color: #747d8d;
    font-size: 0.68rem;
}

.section-title{
    font-size:1rem;
    font-weight:700;
    margin:0;
}

.option-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:1.5rem 1rem;
    border:1px solid #e8eaef;
    border-radius:10px;
    background:#fff;
    text-decoration:none;
    transition:.25s;
    height:100%;
}

.option-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    border-color:#d4a017;
}

.option-card img{
    width:58px;
    height:58px;
    object-fit:contain;
    margin-bottom:1rem;
}

.option-card h3{
    font-size:.92rem;
    color:#111827;
    font-weight:600;
    margin-bottom:.25rem;
}

.option-card span{
    color:#6b7280;
    font-size:.82rem;
}

.artwork-card{
    border-radius:12px;
}

.artwork-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#f3f5f8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.4rem;
    color:#020D22;
    margin-right:1rem;
    flex-shrink:0;
}

.artwork-card h3{
    font-size:1rem;
    font-weight:700;
    margin-bottom:.3rem;
}

.artwork-card p{
    margin:0;
    color:#6b7280;
    font-size:.9rem;
}


/* =========================================================
   Price and order panel
   ========================================================= */

.order-summary-section {
    background-color: #f7f8fa;
}

.order-summary-card {
    padding: 1.25rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(2, 13, 34, 0.04);
}

.order-price {
    display: flex;
    flex-direction: column;
}

.order-price-label {
    margin-bottom: 0.2rem;
    color: #596274;
    font-size: 0.8rem;
    font-weight: 600;
}

.order-price-value {
    color: #111827;
    font-size: 2rem;
    font-weight: 750;
    line-height: 1;
}

.order-price-value small {
    font-size: 0.75rem;
    font-weight: 600;
}

.order-benefits {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.order-benefits li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #424b5c;
    font-size: 0.85rem;
}

.order-benefits i {
    color: #596274;
    font-size: 0.9rem;
}

.order-summary-action {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.order-button {
    width: 100%;
    padding: 0.8rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.order-account-note {
    margin-top: 0.45rem;
    color: #71798a;
    font-size: 0.68rem;
    text-align: center;
}


/* =========================================================
   Product information tabs
   ========================================================= */

.product-information-section {
    background-color: #f7f8fa;
}

.product-information-card {
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(2, 13, 34, 0.04);
}

.product-tabs-wrapper {
    overflow-x: auto;
    border-bottom: 1px solid #e1e5eb;
    scrollbar-width: thin;
}

.product-tabs {
    min-width: max-content;
    padding: 0 1rem;
    border-bottom: 0;
    flex-wrap: nowrap;
}

.product-tabs .nav-item {
    flex: 0 0 auto;
}

.product-tabs .nav-link {
    position: relative;
    padding: 1rem 0.85rem;
    color: #4d586a;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.product-tabs .nav-link:hover,
.product-tabs .nav-link:focus {
    color: #020d22;
    border: 0;
}

.product-tabs .nav-link::after {
    position: absolute;
    right: 0.85rem;
    bottom: 0;
    left: 0.85rem;
    height: 2px;
    content: "";
    background-color: #d4a017;
    opacity: 0;
    transform: scaleX(0);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.product-tabs .nav-link.active {
    color: #020d22;
    background: transparent;
    border: 0;
}

.product-tabs .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.product-tab-content {
    padding: 2rem;
}

.tab-pane {
    min-height: 350px;
}

.tab-copy {
    max-width: 760px;
}

.tab-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: #d4a017;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tab-copy h2 {
    margin-bottom: 0.75rem;
    color: #111827;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 750;
    letter-spacing: -0.025em;
}

.tab-copy > p {
    max-width: 760px;
    margin-bottom: 1.25rem;
    color: #596274;
    font-size: 0.92rem;
    line-height: 1.7;
}

.tab-feature-list {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tab-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #343e4f;
    font-size: 0.88rem;
    line-height: 1.45;
}

.tab-feature-list i {
    flex: 0 0 auto;
    margin-top: 0.05rem;
    color: #d4a017;
}

.two-column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tab-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 1rem;
}

.tab-image {
    display: block;
    width: 100%;
    max-width: 430px;
    max-height: 330px;
    margin: 0 auto;
    object-fit: contain;
}


/* Information option cards
--------------------------------------------------------- */

.information-option {
    height: 100%;
    padding: 1.25rem;
    background-color: #f8f9fb;
    border: 1px solid #e4e8ee;
    border-radius: 0.65rem;
}

.information-option > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 0.9rem;
    color: #020d22;
    background-color: #ffffff;
    border: 1px solid #dce1e8;
    border-radius: 50%;
    font-size: 1.1rem;
}

.information-option h3 {
    margin-bottom: 0.45rem;
    color: #172033;
    font-size: 0.95rem;
    font-weight: 700;
}

.information-option p {
    margin: 0;
    color: #667085;
    font-size: 0.8rem;
    line-height: 1.55;
}


/* FAQ
--------------------------------------------------------- */

.product-faq {
    margin-top: 1.25rem;
}

.product-faq .accordion-item {
    border-color: #e1e5eb;
}

.product-faq .accordion-button {
    color: #172033;
    font-size: 0.9rem;
    font-weight: 650;
    box-shadow: none;
}

.product-faq .accordion-button:not(.collapsed) {
    color: #020d22;
    background-color: #f7f8fa;
}

.product-faq .accordion-button:focus {
    border-color: #d4a017;
    box-shadow: 0 0 0 0.2rem rgba(212, 160, 23, 0.15);
}

.product-faq .accordion-body {
    color: #596274;
    font-size: 0.86rem;
    line-height: 1.65;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991.98px) {

    .product-tab-content {
        padding: 1.5rem;
    }

    .tab-pane {
        min-height: auto;
    }

    .tab-image-wrapper {
        min-height: auto;
        padding-top: 1.5rem;
    }

    .tab-image {
        max-width: 380px;
        max-height: 280px;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767.98px) {

    .order-summary-card {
        padding: 1.25rem;
        text-align: center;
    }

    .order-price {
        align-items: center;
    }

    .order-benefits {
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }

    .order-summary-action {
        max-width: 420px;
        margin-right: auto;
        margin-left: auto;
    }

    .product-tabs {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .product-tabs .nav-link {
        padding: 0.9rem 0.65rem;
        font-size: 0.74rem;
    }

    .product-tabs .nav-link::after {
        right: 0.65rem;
        left: 0.65rem;
    }

    .product-tab-content {
        padding: 1.25rem;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   Small mobile
   ========================================================= */

@media (max-width: 575.98px) {

    .order-price-value {
        font-size: 1.8rem;
    }

    .product-tab-content {
        padding: 1.1rem;
    }

    .tab-copy h2 {
        font-size: 1.4rem;
    }

    .tab-copy > p {
        font-size: 0.86rem;
    }

    .tab-image {
        max-width: 280px;
        max-height: 230px;
    }

}

/* Tablet
--------------------------------------------------------- */

@media (max-width: 991.98px) {

    .hero-media {
        max-width: 680px;
        margin-top: 0.5rem;
    }

    .hero-image-wrapper {
        min-height: auto;
    }

    .hero-image{
        max-width:500px;
        max-height:360px;
    }

}


/* Mobile
--------------------------------------------------------- */

@media (max-width: 575.98px) {

    .hero-media {
        max-width: 100%;
    }

    .hero-image-wrapper {
        padding: 0.25rem 0;
    }

    .hero-image{
        max-width:320px;
        max-height:250px;
    }

    .hero-trust-bar {
        margin-top: 0.5rem;
        border-radius: 0.55rem;
    }

    .trust-item {
        min-height: 90px;
        flex-direction: column;
        justify-content: center;
        gap: 0.35rem;
        padding: 0.6rem 0.25rem;
        text-align: center;
    }

    .trust-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .trust-content strong {
        font-size: 0.72rem;
    }

    .trust-content span {
        font-size: 0.62rem;
    }

}