/* ==================================
   PRODUCT DETAIL HERO
================================== */

.product-detail-container {
    overflow-x: clip;
}

.product-hero{
    position: relative;
    margin-top: 30px;
}


.product-hero .product-hero-dots{
    display: none;
}

.product-hero-inner{
    max-width: 1280px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    padding: 15px 24px;
    box-sizing: border-box;
}

/* LEFT IMAGE */

.product-image-wrap {
    width: 100%;
    max-width: 600px;
    flex: 1 1 auto;
    flex-shrink: 0;
}

.product-gallery {
    position: relative;
    width: 100%;
}

.product-gallery-slider {
    overflow: hidden;
    border-radius: 32px;
}

.product-gallery-slider .swiper-slide {
    height: auto;
}

.product-image-card{
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.product-image-card img{
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;

    transition: opacity .25s ease, transform .4s ease;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: #2D2A7B;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(45, 42, 123, 0.15);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

.product-gallery-arrow:hover:not(.swiper-button-disabled) {
    background: #2D2A7B;
    color: #fff;
}

.product-gallery-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.product-gallery-prev {
    left: 14px;
}

.product-gallery-next {
    right: 14px;
}

.product-image-card:hover img{
    transform: scale(1.04);
}

/* RIGHT CONTENT */

.product-content{
    width: 48%;
    flex: 1 1 auto;
}

.product-category{
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;
    margin-bottom: 24px;

    border-radius: 6px;
    background: #E8FDF0;
    border: none;

    color: #00B050;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-category i{
    font-size: 13px;
    color: #00B050;
}

.product-content h1{
    font-family: 'Poppins', sans-serif;
    font-style: normal;

    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.15;
    letter-spacing: -1px;
    font-weight: 700;

    margin-bottom: 24px;
}

.product-title-lead{
    display: block;
    color: #0F172A;
}

.product-title-accent{
    display: block;
    color: #002A7C;
}

.product-content p{
    color: #5A6A85;

    font-size: 16px;
    line-height: 1.75;

    max-width: 520px;

    margin-bottom: 36px;
}

/* BUTTONS */

.product-actions{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.product-hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 32px;
    border-radius: 100px;

    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;

    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.product-hero-btn--quote{
    background: #00B050;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 176, 80, 0.15);
}

.product-hero-btn--quote:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 176, 80, 0.25);
    color: #fff;
    background: #009945;
}

.product-hero-btn--quote i{
    transition: transform 0.3s ease;
}

.product-hero-btn--quote:hover i{
    transform: translateX(5px);
}

.product-hero-btn--outline{
    background: #fff;
    color: #0F172A;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.product-hero-btn--outline:hover{
    background: #F8FAFC;
    border-color: #CBD5E1;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    color: #0F172A;
}

.product-hero-tagline{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    max-width: 1280px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.product-hero-tagline__line{
    flex: 1;
    height: 1.5px;
    max-width: 250px;
    background: linear-gradient(90deg, #2D2A7B, #108948);
}

.product-hero-tagline__text{
    margin: 0;
    text-align: center;
    font-size: clamp(18px, 2.2vw, 26px);
    line-height: 1.4;
    font-weight: 700;
    
    background: linear-gradient(90deg, #2D2A7B 0%, #108948 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #2D2A7B;
    
    max-width: 45ch;
}

.btn-outline{
    min-width: 190px;

    height: 54px;

    border-radius: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1.5px solid #8d96ad;

    color: #2D2A7B;

    font-size: 14px;
    font-weight: 600;

    transition: .3s;
}

.btn-outline:hover{
    background: #fff;
    color: #2D2A7B;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

    .product-hero-inner {
        gap: 48px;
        padding: 40px 24px;
    }

    .product-hero .product-hero-dots {
        left: 24px;
        grid-template-columns: repeat(7, 22px);
        gap: 12px;
    }

    .product-image-card {
        height: 380px;
    }

    .product-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {

    .product-hero {
        margin-top: 12px;
    }

    .product-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 32px 20px;
    }

    .product-image-wrap {
        max-width: 100%;
        width: 100%;
    }

    .product-content {
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .product-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .product-actions {
        justify-content: center;
    }

    .product-content h1 {
        font-size: 42px;
    }

    .product-image-card {
        height: 360px;
    }

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

@media (max-width: 767px) {

    .product-hero .product-hero-dots {
        display: none;
    }

    .product-hero-inner {
        padding: 24px 16px;
        gap: 24px;
    }

    .product-image-card {
        height: 300px;
        border-radius: 14px;
    }

    .product-gallery-slider {
        border-radius: 14px;
    }

    .product-category {
        margin-bottom: 12px;
    }

    .product-content h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .product-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .product-hero-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .product-hero-inner {
        padding: 20px 16px;
    }

    .product-image-card {
        height: 260px;
    }

    .product-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .product-gallery-prev {
        left: 8px;
    }

    .product-gallery-next {
        right: 8px;
    }

    .product-content h1 {
        font-size: 28px;
    }

    .product-actions {
        flex-direction: column;
        width: 100%;
    }

    .product-hero-btn {
        width: 100%;
        min-width: 0;
    }
}

/* ==================================
   PRODUCT FEATURES
================================== */

.product-features{
    padding: 80px 0;
    background: transparent;
    position: relative;
}

.features-heading{
    text-align: center;
    margin-bottom: 48px;
}

.features-kicker{
    display: block;
    color: #00B050;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-heading h2{
    color: #0F172A;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.25;
    font-weight: 700;
    max-width: 100%;
    margin: auto;
    letter-spacing: -0.5px;
}

/* GRID */

.features-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
}

/* CARD */

.feature-card{
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 28px 24px;
    min-height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(45, 42, 123, 0.08);
}

/* ICON */

.feature-icon{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0A1128;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i{
    font-size: 18px;
}

/* TITLE */

.feature-card h3{
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 12px;
}

/* TEXT */

.feature-card p{
    font-size: 14px;
    line-height: 1.6;
    color: #5A6A85;
    max-width: 100%;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

    .features-heading h2 {
        font-size: 46px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {

    .product-hero-tagline{
        margin-top: 32px;
        gap: 14px;
    }

    .product-hero-tagline__line{
        max-width: 70px;
    }



    .product-features {
        padding: 70px 0 90px;
    }

    .features-heading {
        margin-bottom: 40px;
        padding: 0 8px;
    }

    .features-heading h2 {
        font-size: 38px;
    }

    .feature-card p {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .product-features {
        padding: 56px 0 64px;
    }

    .features-heading {
        margin-bottom: 32px;
    }

    .features-kicker {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .features-heading h2 {
        font-size: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 18px;
        min-height: 0;
    }

    .feature-card h3 {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {

    .features-heading h2 {
        font-size: 26px;
    }
}

/* ==================================
   OUR WORK
================================== */

.our-work{
    padding: 90px 0 110px;
    background: #fff;
}

.our-work-heading{
    text-align: center;
    margin-bottom: 55px;
}

.our-work-kicker{
    display: block;

    color: #18a24d;

    font-size: 16px;
    font-weight: 600;

    margin-bottom: 14px;
}

.our-work-heading h2{
    color: #2D2A7B;

    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;

    max-width: 700px;
    margin: auto;
}

.our-work-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.our-work-item{
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(45, 42, 123, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.our-work-item:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(45, 42, 123, 0.15);
}

.our-work-item img{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.our-work-serial{
    display: block;
    padding: 10px 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #2d2a7b;
    background: #f8faff;
    border-top: 1px solid #e8ebf5;
}

.our-work-item.is-pending {
    display: none;
}

.our-work-sentinel {
    height: 1px;
    width: 100%;
}

.our-work-loader {
    text-align: center;
    margin-top: 28px;
}

.our-work-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.2em solid rgba(45, 42, 123, 0.15);
    border-top-color: #2D2A7B;
    border-radius: 50%;
    animation: our-work-spinner-spin 0.75s linear infinite;
}

@keyframes our-work-spinner-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px){
    .our-work-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .our-work-heading h2{
        font-size: 42px;
    }
}

@media (max-width: 575px){
    .our-work{
        padding: 60px 0 80px;
    }

    .our-work-grid{
        grid-template-columns: 1fr;
    }

    .our-work-heading h2{
        font-size: 32px;
    }
}


.geo-faq {
    margin-bottom: 60px;
}
/* ==================================
   RELATED PRODUCTS
================================== */

.related-products{
    /* background: #ececff; */
    padding: 30px 0 100px;
}

.related-heading{
    text-align: center;
    margin-bottom: 55px;
}

.related-kicker{
    display: block;

    color: #18b857;

    font-size: 16px;
    font-weight: 600;

    margin-bottom: 14px;
}

.related-heading h2{
    color: #2D2A7B;

    font-size: 58px;
    line-height: 1.15;
    font-weight: 700;
}

/* GRID */

.related-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* CARD */

.related-card{
    max-width: 415px;
    display: block;

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    text-decoration: none;

    transition: .35s ease;

    box-shadow:
    0 10px 25px rgba(45,42,123,.08);
}

.related-card:hover{
    transform: translateY(-8px);

    box-shadow:
    0 18px 35px rgba(45,42,123,.15);
}

/* IMAGE */

.related-image{
    height: 332px;

    background: linear-gradient(
        135deg,
        #97aecb 0%,
        #bfd2e8 100%
    );

    /* display: flex;
    align-items: center;
    justify-content: center; */

    overflow: hidden;
}

.related-image img{
    width: 100%;
    /* max-width: 360px; */

    object-fit: contain;

    transition: .4s ease;
}

.related-card:hover .related-image img{
    transform: scale(1.05);
}

/* CONTENT */

.related-content{
    padding: 20px 16px 18px;
}

.related-content h3{
    color: #111;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 10px;
}

.related-content p{
    color: #444;

    font-size: 16px;

    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 1199px) {

    .related-heading h2 {
        font-size: 46px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .related-card {
        max-width: none;
    }
}

@media (max-width: 991px) {

    .related-products {
        padding: 24px 0 80px;
    }

    .related-heading {
        margin-bottom: 40px;
        padding: 0 8px;
    }

    .related-heading h2 {
        font-size: 38px;
    }

    .related-image {
        height: 280px;
    }
}

@media (max-width: 767px) {

    .related-products {
        padding: 20px 0 64px;
    }

    .related-heading {
        margin-bottom: 28px;
    }

    .related-kicker {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .related-heading h2 {
        font-size: 30px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-image {
        height: 240px;
    }

    .related-content h3 {
        font-size: 18px;
    }

    .related-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {

    .related-heading h2 {
        font-size: 26px;
    }

    .related-image {
        height: 220px;
    }
}

/* ==================================
   SPECIFICATIONS & DIMENSIONS
================================== */

.product-specifications-dimensions {
    background: #060B1E; /* deep dark navy background */
    color: #ffffff;
    padding: 90px 0;
    position: relative;
}

.specs-dims-heading {
    text-align: center;
    margin-bottom: 56px;
}

.specs-dims-kicker {
    display: block;
    color: #00B050;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.specs-dims-heading h2 {
    color: #ffffff;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.25;
    font-weight: 700;
    max-width: 100%;
    margin: auto;
    letter-spacing: -0.5px;
}

.specs-dims-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1254px;
    margin: auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.info-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.info-card-icon--green {
    background: #00B050;
}

.info-card-icon--blue {
    background: #2563EB;
}

.info-card-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.info-card-content {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    color: #94A3B8;
    font-size: 15px;
}

.spec-value {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.dim-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dim-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.dim-shape {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dim-shape-name {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.dim-seater {
    color: #94A3B8;
    font-size: 15px;
    text-align: center;
}

.dim-measurement {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.css-shape {
    border: 1.5px solid #94A3B8;
    flex-shrink: 0;
}

.css-shape--rectangle {
    width: 24px;
    height: 16px;
    border-radius: 3px;
}

.css-shape--boat {
    width: 24px;
    height: 16px;
    border-radius: 6px;
}

.css-shape--round {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.css-shape--oval {
    width: 24px;
    height: 16px;
    border-radius: 50%;
}

.fallback-icon {
    font-size: 18px;
    color: #94A3B8;
}

/* RESPONSIVE SPECIFICATIONS */

@media (max-width: 991px) {
    .product-specifications-dimensions {
        padding: 70px 0;
    }
    
    .specs-dims-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .info-card {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .product-specifications-dimensions {
        padding: 56px 0;
    }
    
    .specs-dims-heading {
        margin-bottom: 36px;
    }
    
    .info-card-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .info-card-header h3 {
        font-size: 20px;
    }
    
    .spec-row, .dim-row {
        padding: 14px 0;
    }
    
    .dim-row {
        grid-template-columns: 1.2fr 0.8fr 1.2fr;
    }
    
    .spec-label, .spec-value, .dim-shape-name, .dim-seater, .dim-measurement {
        font-size: 14px;
    }
}