.pdp {
}

.pdp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Gallery */
.pdp-main-image {
    position: relative;
    background: rgba(220, 220, 217, 1);
    border-radius: 2rem;
    padding: 4rem;
    height: 39.375rem;
    border: 1px solid rgba(0, 0, 0, 1);
}
.pdp-main-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: contain;
}
.pdp-thumbs {
    margin-top: 1.6rem;
}
.thumb {
    border-radius: 1rem;
    padding: 0;
    border: 0.1rem solid transparent;
    width: 6.875rem;
    height: 6.875rem;
    overflow: hidden;
    margin: 0 .5rem;
    cursor: pointer;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb.is-selected {
    border-color: rgba(66, 78, 97, 1);
}
.pdp-thumbs .flickity-prev-next-button,
.pdp-gallery ol.flickity-page-dots {
    display: none;
}

.pdp-gallery .flickity-prev-next-button.previous {
    left: 1rem;
}
.pdp-gallery .flickity-prev-next-button.next {
    right: 1rem;
}
/* Info */
.pdp-title {
    font-size: 2.438rem;
    line-height: 1.3;
}
.pdp-meta {
    font-size: .813rem;
    margin: 1rem 0 2.4rem;
}
.pdp-option h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
.pdp-option {
    margin-bottom: 2.4rem;
}

.option-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.option small {
    font-size: 1rem;
}
.option {
    padding: .5rem 1.5rem;
    border: 0.1rem solid #ccc;
    border-radius: 0.8rem;
    background: #fff;
    font-size: 1.25rem;
    text-align: left;
    font-weight: 500;
}
.option.is-active {
    background: rgba(27, 42, 65, 1);
    color: #fff;
    border-color: rgba(27, 42, 65, 1);
}
button.btn.btn-outline {
    color: rgba(19, 29, 46, 1);
    background-color: transparent;
    border: 1px solid rgba(180, 72, 0, 1);
}
.pdp-actions > .btn {
    min-width: auto;
    width: 100%;
    padding: 0;
    cursor: pointer;
}
.pdp-actions > .btn img {
    margin-right: .5rem;
}
.pdp-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.pdp-price h4{
    font-size: 1.25rem;
    font-weight: 500;
}
.pdp-actions {
    display: flex;
    gap: 1.6rem;
}
.pdp-gallery {
    position: relative;
}
.related-products .product-grid {
    margin-top: 3rem;
    padding-bottom: 0;
}
.related-products .product-item:nth-child(even) {
    margin-top: 0;
}
.related-products {
    border-top: 1px solid #000;
    padding-top: 4rem;
}
.product-tabs {
    padding: 4rem 0;
  }
  
  .tabs-container {
    max-width: 120rem;
    margin: auto;
  }
  
  .tabs-head {
    display: flex;
    gap: 0;
    margin-bottom: 3rem;
    justify-content: center;
    margin-top: 3rem;
}
  
  .tab-btn {
    padding: 0 1.25rem;
    border-radius: 0;
    border: .1rem solid rgba(19, 29, 46, 1);
    background: transparent;
    font-size: 2.5rem;
    font-weight: 500;
    height: 4rem;
    line-height: 4rem;
    color: rgba(19, 29, 46, 1);
    margin: 0 1rem;
    cursor: pointer;
}
.tab-btn:hover,
  .tab-btn.is-active {
    background: rgba(27, 42, 65, 1);
    color: #fff;
  }
  
  .tabs-body {
    max-width: 80rem;
  }
  
  .tab-panel {
    display: none;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  .tab-panel.is-active {
    display: block;
  }
  
  .tab-panel h4 {
    font-size: 1.8rem;
    margin: 2.4rem 0 1.2rem;
  }
  
  .tab-panel ul {
    padding-left: 2rem;
  }
  
  .tab-panel img {
    margin-top: 2.4rem;
    max-width: 100%;
    border-radius: 1.2rem;
  }
  .tabs-body h4 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.tabs-body img{
    margin-bottom: 1.25rem;
    margin-left: 1.25rem;
}
.tabs-body ol,
.tabs-body ul{
    padding-left: 15px;
}
.tabs-body li,
.tabs-body p{
    font-size: 1rem;
    line-height: 1.5;
}
@media (max-width: 1199px) {
    .pdp-main-image {
        height: 30rem;
        padding: 2rem;
    }

    .tab-btn {
        font-size: 1.8rem;
        margin: 0 0.5rem;
    }
}

@media (max-width: 991px) {
    .pdp-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pdp-info {
        text-align: left;
    }

    .pdp-main-image {
        height: auto;
        aspect-ratio: 1/1;
    }

    .tabs-head {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        font-size: 1.25rem;
        height: 3.5rem;
        line-height: 3.5rem;
        flex: 1;
        min-width: 150px;
        text-align: center;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .pdp-title {
        font-size: 1.8rem;
    }
    section.related-products.featured-products > .container {
        padding-left: 0rem;
        padding-right: 0rem;
    }
    .pdp-price {
        font-size: 2.2rem;
    }

    .pdp-actions {
        flex-direction: column;
    }

    .pdp-actions .btn {
        height: 3.5rem;
    }

    .tabs-body {
        max-width: 100%;
    }

    .tab-panel img {
        margin-left: 0;
        width: 100%;
    }

    .breadcrumb {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .pdp-thumbs .thumb {
        width: 25%;
        height: 10rem;
    }
}

@media (max-width: 480px) {
    .pdp-main-image {
        padding: 1rem;
        border-radius: 1rem;
    }

    .option {
        width: auto;
        font-size: 1rem;
    }

    .option small {
        font-size: 0.875rem;
    }

    .tab-btn {
        font-size: 1rem;
        min-width: 100%;
        margin: 0;
    }

    .tabs-head {
        flex-direction: column;
    }
}