.product-detail-page {
    width: 100%;
    padding: 0 2rem;
}

.navbar {
    opacity: 1;
    margin: 20px 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.section.products {
    color: #fff;
}

.back-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 2rem;
}

.back-button-wrapper .leftside-button-wrapper a {
    color: #BABABA;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.back-button-wrapper .rightside-button-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.for-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.for-mobile {
    display: none;
}

.back-button-wrapper .rightside-button-wrapper .cta-buttons {
    width: 200px;
    height: 40px;
    background: radial-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.00)), rgba(255, 255, 255, 0.02);
    border: 1px solid #454545;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #d9d9d9;
}
.back-button-wrapper .rightside-button-wrapper .cta-buttons:hover {
  background: #359bd8;
  color: #fff;
  transition: color 0.3s ease;
}

#relatedCardsWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#relatedCardsWrapper::after,
#relatedCardsWrapper::before {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #5d5d5d;
}

#productDetailWrapper {
    position: relative;
}

.left-background {
    width: 502px;
    height: 509px;
    background: radial-gradient(#484260, rgba(24, 25, 27, 0.00));
    border-radius: 50%;
    filter: blur(150px);
    position: absolute;
    top: -177px;
    left: -107px;
    z-index: -1;
}

#detailTitle {
    font-size: 6rem;
    line-height: 1;
    color: #505F73;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    margin-top: 35px;
    padding: 2rem 0;
}

#detailTitle span {
    font-size: 1.75rem;
    line-height: 1.2;
    color: #efefef;
}

.detail-image-left {
    display: flex;
    width: 100%;
    flex-flow: column;
}

#detailImage {
    width: 100%;
    height: auto;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.product-detail-content {
    width: 100%;
    padding: 4rem 0 0 0;
    /* height: 53vh; */
    overflow-y: auto;
}

.product-detail-content p {
    font-family: 'Montserrat';
    font-size: 1rem;
    font-weight: 500;
    color: #d9d9d9;
    line-height: 30px;
}
.product-detail-content p strong{
    font-weight: 700;
}

.product-para h4 {
    font-family: 'Montserrat';
    font-size: 20px;
    font-weight: 700;
    color: #d9d9d9;
    line-height: 30px;
}

.product-para ul li {
    font-family: 'Montserrat';
    font-size: 1rem;
    font-weight: 500;
    color: #d9d9d9;
    line-height: 30px;
    margin-bottom: 5px;
}
.product-para ul li strong{
    font-weight: 700;
}

.fade-wrapper {
    transition: opacity 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

.related-products {
    margin-top: 4rem;
}

.related-card {
    cursor: pointer;
    border-radius: 20px;
    padding: 1rem;
    transition: all 0.3s;
    min-height: 220px;
    max-height: 100%;
    background-color: #1e2a3a;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.related-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.related-card h5 {
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 1rem;
    color: #efefef;
}

.related-card h5 span {
    color: #505F73;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding-right: 5px;
    font-size: 32px;
}

.related-card .arrow {
    color: #d9d9d9;
    transition: transform 0.2s ease;
    display: inline-block;
}

.related-card:hover .arrow {
    transform: rotate(-46deg) translateX(0);
}

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

.related-card img {
    max-width: 100%;
    height: auto;
    margin-top: 0.5rem;
    width: 100%;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.breadcrumb-nav {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    line-height: 12PX;
    color: #BABABA;
}

.breadcrumb-item a {
    color: #BABABA;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.breadcrumb-item.active {
    color: #D9D9D9;
    font-weight: 600;
    font-size: 16px;

}

.breadcrumb-item+.breadcrumb-item::before {
    color: #D9D9D9;
}

.fas.fa-arrow-left.only-for-mobie {
    display: none;
}

@media (max-width: 1550px) {
    #relatedCardsWrapper .col-md-3 {
        width: 20%;
    }
}
@media (max-width: 1366px) {
  .light-logo {
    height: 38px;
  }
}

@media (max-width: 1350px) {
    #relatedCardsWrapper .col-md-3 {
        width: 25%;
    }

    #detailImage {
        width: 100%;
    }

    .product-detail-page {
        width: 100%;
        padding: 0 2rem;
    }

}

@media (max-width: 1250px) {
    .for-desktop {
        display: none;
    }

    .for-mobile {
        display: block;
    }

    .cta-buttons {
        width: 48px;
        height: 48px;
        font-size: 24px;
        background: #00000033;
    }

    .fas.fa-arrow-left.only-for-mobie {
        display: block;
        padding: 0 10px;
        font-size: 24px;
        color: #EAEAEA;
    }

    .product-detail-page {
        padding: 0;
    }

    .back-button-wrapper .rightside-button-wrapper .small {
        display: none;
    }

    .back-button-wrapper .rightside-button-wrapper .cta-buttons {
        width: 48px;
        height: 48px;
        font-size: 24px;
        background: #00000033;
        border: none;
    }

    .breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .breadcrumb-item {
        display: flex;
    }

    .left-background {
        display: none;
    }

    #detailTitle {
        font-size: 60px;
    }

    #detailTitle span {
        font-size: 25px;
        margin-top: -10px;
    }

    .product-detail-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .product-detail-content {
        height: auto;
        padding-bottom: 50px;
    }

    .breadcrumb-item.active {
        font-size: 14px;
    }

    #relatedCardsWrapper {
        display: -webkit-box;
        width: 100%;
        overflow-x: auto;
        margin-left: -10px;
        margin-right: -10px;
        position: fixed;
        bottom: 0;
        background: #182C47;
    }

    #relatedCardsWrapper .col-md-2 {
        width: auto;
    }

    #relatedCardsWrapper .related-card {
        height: auto;
        padding: 0.5rem;
        min-height: auto;
        width: auto;
        background: transparent;
        box-shadow: none;
    }

    .related-card-right {
        display: none;
    }

    #relatedCardsWrapper .related-card img {
        display: none;
    }

    #relatedCardsWrapper::after,
    #relatedCardsWrapper::before {
        display: none;
    }

    .related-card h5 {
        align-items: flex-start;
        font-size: 1rem;
        flex-flow: column;
    }
    .product-detail-content p{
        font-size: 14px;
    line-height: 24px;
    }

}
@media (max-width: 1100px) {
  .light-logo {
    height: 30px;
  }
}

@media (max-width: 992px) {

    .section.products .col-md-3.aos-init.aos-animate,
    .section.products .col-md-9.aos-init.aos-animate {
        width: 100%;
    }

    #detailTitle {
        font-size: 70px;
    }

    #detailImage {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .product-detail-content {
        padding-top: 30px;
    }

}


@media (max-width: 768px) {
    .back-button-wrapper {
        border-bottom: none;
        padding-bottom: 10px;
    }

    #detailTitle {
        font-size: 16px;
    }

    #detailTitle {
        padding: 0;
        margin-top: 10px;
    }

    .product-para h4 {
        font-size: 15px;
    }

    .product-para ul li {
        font-size: 12px;
        line-height: 24px;
    }
    .related-card h5{
        font-size: 12px;
    }
    .related-card h5 span{
        font-size: 12px;
    }
    .product-detail-content p, .breadcrumb-item.active{
        font-size: 12px;
    }    
    .fas.fa-arrow-left.only-for-mobie{
        font-size: 16px;
        padding-left: 0;
    }
      .back-button-wrapper .rightside-button-wrapper .cta-buttons {
    width: 32px;
    height: 32px;
    font-size: 18px;
}

}

@media (max-width: 540px) {
  #detailTitle span {
    font-size: 16px;
    margin-top: 0;
}
.breadcrumb{
        justify-content: flex-start;
    }



}

@media (max-width: 440px) {
  .light-logo {
    height: 24px;
  }
}