/* Product detail */
.product-detail {
    display: block;
}

.product-detail__hero {
    position: relative;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

.product-detail__hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.product-detail__hero-inner {
    position: relative;
    z-index: 1;
}
.product-detail__hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.product-detail__hero-content .heading__title {
    margin-bottom: 0;
}

.product-detail__hero-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 5rem 0 2.5rem;
    color: var(--color-white );
}
.product-detail__hero-image img {
    display: block;
    border-radius: 2.5rem;
    border: 2px solid #FFFFFF;
}
.product-detail__hero-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-detail__title {
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
}

.product-detail__title:before{
    content: "";
    width: 100%;
    max-width: 135px;
    height: 3px;
    border-radius: 3px;
    background-color: #FAB700;
    position: absolute;
    left: 0px;
    bottom: -10px;
    z-index: 1;
}

.product-detail__tags {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.product-detail__tag {
    padding: 0.5rem 0.75rem;
    border-radius: 0.625rem;
    background: #F9FFFB80;
    border: 0.0625rem solid rgba(255, 255, 255, 0.18);
    font-size: 0.9375rem;
}

.product-detail__features {
    padding: 5rem 0 4rem;
    background: var(--bg-body, #ffffff);
}

.product-detail__section-lead {
    margin: 0;
    color: var(--color-body, #484F56);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.product-detail__features .heading__title {
    display: flex;
    justify-content: center;
}
.product-detail__features .heading__title--left h2{
    justify-content: center;
}
.product-detail__features .heading__title--left h2:before{
    left: 50%;
    transform: translateX(-50%);
}

.product-detail__feature-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-detail__feature {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: var(--bg-secondary, #FFF5DA);
    min-height: 300px;
    border: 0.0625rem solid rgba(4, 134, 41, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.product-detail__feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: var(--color-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail__feature-title {
    margin: 0;
    color: var(--color-green);
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
}

.product-detail__feature-text {
    margin: 0.5rem 0 0;
    color: var(--color-black, #2D3136);
    font-size: 1rem;
    line-height: 1.6;
}

.product-detail__specs {
    padding: 4rem 0;
    background: var(--bg-body, #ffffff);
}

.product-detail__section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-detail__section-heading {
    margin: 0;
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--bg-footer, #048629);
}

.product-detail__richtext {
    margin-top: 1.5rem;
    color: var(--color-body, #484F56);
}

.product-detail__richtext :where(p) {
    margin: 0 0 1rem;
    line-height: 1.7;
}

.product-detail__richtext :where(h1, h2, h3) {
    color: var(--bg-footer, #048629);
    line-height: 1.25;
}

.product-detail__richtext :where(img) {
    max-width: 100%;
    height: auto;
}

.product-detail__spec-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.product-detail__spec-nav-col {
    width: 100%;
    max-width: 19.8125rem; /* 317px */
    display: flex;
    flex-direction: column;
    gap: 0.625rem; /* 10px */
    text-decoration: none;
    color: inherit;
}

.product-detail__spec-nav-col--next {
    align-items: flex-end;
    text-align: right;
}

.product-detail__spec-nav-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* 8px */
}

.product-detail__spec-nav-top--disabled {
    opacity: 0.25;
}

.product-detail__spec-nav-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

.product-detail__spec-nav-label {
    font-weight: 600;
    font-size: 1.25rem; /* 20px */
    line-height: 1.2;
    color: #000;
}

.product-detail__spec-nav-title {
    font-weight: 400;
    font-size: 1rem; /* 16px */
    line-height: 1.5;
    color: #000;
}

@media (max-width: 767px) {
    .product-detail__spec-nav {
        align-items: stretch;
    }

    .product-detail__spec-nav-col {
        max-width: none;
    }

    .product-detail__spec-nav-col--next {
        align-items: flex-start;
        text-align: left;
    }
}

.product-detail__market {
    padding: 3rem 0 4rem;
    background: #FFFBEF;
}

.product-detail__market-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4.5rem;
    align-items: start;
}

.product-detail__market-content,
.product_detail__market-content {
    width: 100%;
    min-width: 0;
}

.product-detail__market-map {
    overflow: hidden;
}

.product-detail__market-map img {
    display: block;
    width: 100%;
    height: auto;
}

.product-detail__market-note {
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    background: rgba(250, 183, 0, 0.25);
    color: #6b4a00;
    font-weight: 600;
}

.product-detail__market-list {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--color-body, #484F56);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-detail__market-list li {
    position: relative;
    padding-left: 2.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;  
    list-style: none;
}


.product-detail__market-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M12%2022C17.5%2022%2022%2017.5%2022%2012C22%206.5%2017.5%202%2012%202C6.5%202%202%206.5%202%2012C2%2017.5%206.5%2022%2012%2022Z%22%20stroke%3D%22%23048629%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3Cpath%20d%3D%22M7.75%2012L10.58%2014.83L16.25%209.17004%22%20stroke%3D%22%23048629%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}

.product-detail__richtext table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    max-width: 100%;
}

.product-detail__richtext table th,
.product-detail__richtext table td {
    padding: 0.75rem 1rem;
    border: 0.0625rem solid #8B6600;
}

.product-detail__richtext table th {
    background: var(--bg-secondary);
    color: var(--color-green);
    font-weight: 700;
    text-align: left;
}

@media (max-width: 1199px) {
    .product-detail__hero {
        padding: 2.5rem 0 3.5rem;
    }

    .product-detail__hero-card {
        padding-top: 4rem;
        gap: 1.5rem;
    }

    .product-detail__title {
        font-size: 1.75rem;
    }

    .product-detail__features {
        padding: 4.5rem 0 3.5rem;
    }

    .product-detail__feature {
        min-height: 17rem;
    }

    .product-detail__specs {
        padding: 3.5rem 0;
    }

    .product-detail__market-inner {
        gap: 2.5rem;
    }
}

@media (max-width: 991px) {
    .product-detail__hero-card {
        flex-direction: column;
        align-items: stretch;
        padding-top: 3.5rem;
    }

    .product-detail__hero-image img {
        width: 100%;
    }

    .product-detail__hero-content {
        gap: 2rem;
    }

    .product-detail__title {
        font-size: 1.625rem;
    }

    .product-detail__tags {
        gap: 0.5rem;
    }

    .product-detail__tag {
        font-size: 0.875rem;
    }

    .product-detail__feature-grid {
        grid-template-columns: 1fr;
    }

    .product-detail__feature {
        min-height: 0;
    }

    .product-detail__market-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail__market-list {
        gap: 1.25rem;
    }

    .product-detail__market-list li {
        margin-bottom: 0;
    }

    .product-detail__spec-nav {
        margin-top: 2.5rem;
    }

    .product-detail__spec-nav-label {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .product-detail__hero {
        padding: 2.25rem 0 3rem;
    }

    .product-detail__hero-card {
        padding: 0;
        gap: 0.75rem;
    }

    .product-detail__hero-content {
        gap: 1.5rem;
    }

    .product-detail__title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .product-detail__features {
        padding: 3rem 0;
    }

    .product-detail__feature {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .product-detail__feature-title {
        font-size: 1.0625rem;
    }

    .product-detail__feature-text {
        font-size: 0.9375rem;
    }

    .product-detail__specs {
        padding: 3rem 0;
    }

    .product-detail__section-heading {
        font-size: 1.5rem;
    }

    .product-detail__richtext :where(p) {
        margin-bottom: 0.875rem;
    }

    .product-detail__richtext table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-detail__spec-nav {
        gap: 1rem;
    }

    .product-detail__spec-nav-label {
        font-size: 1.0625rem;
    }

    .product-detail__spec-nav-title {
        font-size: 0.9375rem;
    }

    .product-detail__market {
        padding: 2.5rem 0 3rem;
    }

    .product-detail__market-note {
        font-size: 0.9375rem;
    }

    .product-detail__market-list li {
        padding-left: 2rem;
    }

    .product-detail__market-list li::before {
        width: 1.25rem;
        height: 1.25rem;
    }
    .product-detail__tag {
        background-color: var(--color-green);
        color: #FFFFFF;
    }

    .product-detail__features .heading__title--left h2 {
        justify-content: flex-start;
    }

    .product-detail__features .heading__title--left h2:before {
        left: 0;
        transform: none;
    }
}

@media (max-width: 374px) {
    .product-detail__hero-card {
        padding-top: 2.75rem;
    }

    .product-detail__title {
        font-size: 1.375rem;
    }

    .product-detail__tag {
        padding: 0.4375rem 0.625rem;
    }

    .product-detail__feature {
        padding: 1.125rem;
    }

    .product-detail__section-heading {
        font-size: 1.375rem;
    }
}
