/* ==========================================================================
   Custom CSS - Product Widget Slider Styles
   ========================================================================== */

/* Product Widget Section */
.product-widget-section {
    padding: 80px 0;
    background: var(--background-color);
}

.product-widget-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-widget-section .section-header .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.product-widget-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

@media (max-width: 768px) {
    .product-widget-section .section-header h2 {
        font-size: 28px;
    }
}

/* Product Slider Container */
.product-slider-container {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .product-slider-container {
        padding: 0 10px;
    }
}

/* Product Card */
.product-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* Product Image - Landscape images (513x356 ratio ~1.44:1) */
.product-card .product-image {
    position: relative;
    /*overflow: hidden; */
    aspect-ratio: 513 / 356;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-card .product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.4s ease;
}

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

/* Product Badges */
.product-card .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-card .product-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    color: var(--contrast-color);
}

.product-card .product-badge.badge-new {
    background: var(--accent-color);
}

.product-card .product-badge.badge-sale {
    background: #e63946;
}

.product-card .product-badge.badge-featured {
    background: var(--semaglutide-color);
}

/* Quick View Overlay */
.product-card .product-overlay {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--heading-color), transparent 40%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card .product-overlay .overlay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--contrast-color);
    color: var(--heading-color);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card .product-overlay .overlay-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

/* Product Content */
.product-card .product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .product-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.product-card .product-category a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card .product-category a:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
}

.product-card .product-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 12px;
    line-height: 1.4;
}

.product-card .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card .product-title a:hover {
    color: var(--accent-color);
}

/* Product Price */
.product-card .product-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-card .product-price .current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.product-card .product-price .original-price {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: line-through;
}

.product-card .product-price .price-suffix {
    font-size: 13px;
    color: var(--default-color);
    opacity: 0.7;
}

/* Swiper Navigation */
.product-slider-container .swiper-button-prev,
.product-slider-container .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 50%;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.product-slider-container .swiper-button-prev:hover,
.product-slider-container .swiper-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.product-slider-container .swiper-button-prev::after,
.product-slider-container .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.product-slider-container .swiper-button-prev:hover::after,
.product-slider-container .swiper-button-next:hover::after {
    color: var(--contrast-color);
}

.product-slider-container .swiper-button-prev {
    left: 0;
}

.product-slider-container .swiper-button-next {
    right: 0;
}

@media (max-width: 768px) {
    .product-slider-container .swiper-button-prev,
    .product-slider-container .swiper-button-next {
        display: none;
    }
}

/* Swiper Pagination */
.product-slider-container .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.product-slider-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    opacity: 1;
    transition: all 0.3s ease;
}

.product-slider-container .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 28px;
    border-radius: 5px;
}

/* Empty State */
.product-widget-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--default-color);
}

.product-widget-empty i {
    font-size: 48px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 16px;
}

.product-widget-empty p {
    font-size: 18px;
    margin: 0;
}

/* ==========================================================================
   Post Widget Slider Styles
   ========================================================================== */

/* Post Widget Section */
.post-widget-section {
    padding: 45px 0;
    background: var(--background-color);
}

.post-widget-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.post-widget-section .section-header .section-title-wrap {
    text-align: center;
}

.post-widget-section .section-header .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.post-widget-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.post-widget-section .section-header .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-widget-section .section-header .view-all-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.post-widget-section .section-header .view-all-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.post-widget-section .section-header .view-all-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .post-widget-section .section-header {
        text-align: center;
        justify-content: center;
    }

    .post-widget-section .section-header .section-title-wrap {
        text-align: center;
        width: 100%;
    }

    .post-widget-section .section-header h2 {
        font-size: 28px;
    }
}

/* Post Slider Container */
.post-slider-container {
    position: relative;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .post-slider-container {
        padding: 0 10px;
    }
}

/* Post Card */
.post-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

/* Post Image - 16:9 aspect ratio for blog images */
.post-card .post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

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

/* Post Category Badge */
.post-card .post-category-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 6px;
    background: var(--accent-color);
    color: var(--contrast-color);
    z-index: 2;
    text-decoration: none;
    transition: background 0.3s ease;
}

.post-card .post-category-badge:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    color: var(--contrast-color);
}

/* Post Content */
.post-card .post-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Post Meta (Date) */
.post-card .post-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 12px;
}

.post-card .post-meta i {
    font-size: 12px;
    color: var(--accent-color);
}

/* Post Title - Fixed height for 2 lines */
.post-card .post-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
    line-height: 1.5;
    /* Fixed height for exactly 2 lines: font-size * line-height * 2 = 18 * 1.5 * 2 = 54px */
    height: 54px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-card .post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.post-card .post-title a:hover {
    color: var(--accent-color);
}

/* Post Read More Link */
.post-card .post-read-more {
    margin-top: auto;
    padding-top: 16px;
}

.post-card .post-read-more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-card .post-read-more a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.post-card .post-read-more a:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
}

.post-card .post-read-more a:hover i {
    transform: translateX(4px);
}

/* Post Slider Navigation */
.post-slider-container .swiper-button-prev,
.post-slider-container .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 50%;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.post-slider-container .swiper-button-prev:hover,
.post-slider-container .swiper-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.post-slider-container .swiper-button-prev::after,
.post-slider-container .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.post-slider-container .swiper-button-prev:hover::after,
.post-slider-container .swiper-button-next:hover::after {
    color: var(--contrast-color);
}

.post-slider-container .swiper-button-prev {
    left: 0;
}

.post-slider-container .swiper-button-next {
    right: 0;
}

@media (max-width: 768px) {
    .post-slider-container .swiper-button-prev,
    .post-slider-container .swiper-button-next {
        display: none;
    }
}

/* Post Slider Pagination */
.post-slider-container .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.post-slider-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: color-mix(in srgb, var(--default-color), transparent 80%);
    opacity: 1;
    transition: all 0.3s ease;
}

.post-slider-container .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 28px;
    border-radius: 5px;
}

/* Post Widget Empty State */
.post-widget-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--default-color);
}

.post-widget-empty i {
    font-size: 48px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 16px;
}

.post-widget-empty p {
    font-size: 18px;
    margin: 0;
}

/* 5. Breadcrumb */
.breadcrumb > .active {
    color: var(--accent-color);
}

.breadcrumb-area {
    margin-bottom: 2.5rem;
}
.breadcrumb-bg {
    background-image: url('/build/public/assets/img/hero/fab5direct-hero-banner.png');
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 75px 0;
    z-index: 1;
}
.breadcrumb-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: -moz-linear-gradient(5deg, #27365c 0%, #59a2ad 75%);
    background-image: -webkit-linear-gradient(5deg, #27365c 0%, #59a2ad 75%);
    background-image: -ms-linear-gradient(5deg, #27365c 0%, #59a2ad 75%);
    opacity: .65;
    z-index: -1;
}
.breadcrumb-bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 36px;
    background-repeat: repeat;
    background-position: center;
    z-index: 1;
}
.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0;
    justify-content: center;
}
.breadcrumb-content {
    position: relative;
    z-index: 4;
}
.breadcrumb-content .title {
    font-size: 60px;
    line-height: 1.2;
    color: var(--contrast-color);
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.breadcrumb li {
    display: block;
    font-size: 20px;
    color: var(--contrast-color);
    line-height: 1.4;
}
.breadcrumb li a {
    color: var(--contrast-color);
}
.breadcrumb-item + .breadcrumb-item::before {
    padding-right: 15px;
    padding-left: 15px;
    color: var(--contrast-color);
    content: "|";
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}
/* inner-shop */
.inner-shop-details-area,
.inner-shop-area {
    padding: 120px 0 120px;
}
.inner-shop-area .shop-top-wrap {
    border: 1px solid #f1f1f1;
    padding: 15px 22px;
    margin-bottom: 50px;
}
.inner-shop-area .shop-top-left p {
    margin-bottom: 0;
    float: unset;
}
.inner-shop-area .shop-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 185px;
    margin-left: auto;
}
.inner-shop-area .shop-top-right form select {
    border: none;
    outline: none;
    color: var(--default-color);
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
}
.inner-shop-item {
    margin-bottom: 30px;
}
.inner-shop-content {
    text-align: left;
    border: 1px solid #efefef;
    padding: 25px 20px 25px;
}
.inner-shop-thumb img {
    width: 100%;
}
.inner-shop-content .inner-shop-rating li {
    font-size: 16px;
    letter-spacing: -1px;
    margin-bottom: 7px;
    color: #ffb400;
}
.inner-shop-content .title {
    font-size: 20px;
    color: #1f2029;
    margin-bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.inner-shop-content .title a:hover {
    color: var(--accent-color);
}
.inner-shop-content .price-wrap {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    line-height: 1.3;
    margin-left: 20px;
    text-align: right;
}
.shop-sidebar .widget {
    margin-bottom: 50px;
}
.shop-sidebar .widget:last-child {
    margin-bottom: 0;
}
.shop-sidebar .widget .sidebar-title {
    font-size: 18px;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 25px;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.lp-post-thumb > a {
    display: block;
    width: 85px;
    height: 85px;
    background: #f3f3f3;
    padding: 13px;
    text-align: center;
}
.lp-post-thumb img {
    max-width: 100%;
    max-height: 100%;
}
.lp-post-list .lp-post-item li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.lp-post-content {
    margin-left: 15px;
    flex-grow: 1;
}
.lp-post-content > .lp-post-rating > li {
    font-size: 10px;
    margin-bottom: 10px;
    color: #ffb400;
    letter-spacing: 1.5px;
}
.lp-post-content .title {
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.lp-post-content .title a:hover {
    color: var(--accent-color);
}
.lp-post-content .price {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 600;
    display: block;
    line-height: 1;
}
.widget .Product-tag-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: -10px;
}
.Product-tag-list li a {
    color: #222;
    font-size: 14px;
    padding: 6px 17px;
    border-radius: 0;
    display: inline-block;
    transition: 0.3s;
    margin-right: 6px;
    margin-bottom: 10px;
    background: var(--default-color)
;
    font-weight: 500;
}
.Product-tag-list li a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}
.shop-widget-banner img {
    max-width: 100%;
}
.widget.shop-widget-banner {
    text-align: center;
}
.inner-shop-item.home-shop-item {
    margin: 0 0 50px;
    padding: 40px 40px 40px;
}
.inner-shop-item .home-shop-thumb > a {
    margin: 0 auto 0;
}
.inner-shop-item .home-shop-thumb {
    margin: 0 auto 25px;
}
.inner-shop-item .shop-item-cat {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 9px;
    line-height: 1;
}
.inner-shop-item .shop-item-cat a {
    display: block;
    font-weight: 500;
    color: var(--default-color);
}
.inner-shop-item .shop-item-cat a:hover {
    color: var(--accent-color);
}
.inner-shop-item .home-shop-content .title {
    margin-bottom: 15px;
}
.inner-shop-item .shop-content-bottom {
    margin-top: 30px;
}
.inner-shop-item .home-shop-price {
    margin: 0 0 25px;
}
.inner-shop-item .home-shop-thumb .discount {
    top: -20px;
    right: -20px;
}
.inner-shop-details-content .title {
    font-size: 44px;
    margin-bottom: 8px;
}

/* inner-shop-details */
.inner-shop-details-content {
    padding-left: 20px;
}
.inner-shop-details-img {
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-shop-details-img img {
    max-width: 100%;
}
.inner-shop-details-img-wrap {
    margin-bottom: 15px;
    background: #f7f7f7;
}
.inner-shop-details-nav-wrap .nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
    margin-bottom: 0;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-shop-details-nav-wrap .nav-tabs img {
    max-width: 100%;
}
.inner-shop-details-nav-wrap .nav-tabs {
    border: none;
    flex-wrap: nowrap;
    margin-left: -7px;
    margin-right: -7px;
}
.inner-shop-details-nav-wrap .nav-tabs .nav-item {
    padding-left: 7px;
    padding-right: 7px;
}
.inner-shop-details-content .product_title {
    font-size: 36px;
    margin-bottom: .3em;
    font-weight: 500;
}
.inner-shop-content-top .star-rating {
    display: none;
}
.inner-shop-details-review {
    display: flex;
    align-items: center;
}
.inner-shop-details-meta ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.inner-shop-details-meta ul li {
    font-size: 16px;
    color: var(--default-color);
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
    margin-top: 11px;
}
.inner-shop-details-meta ul li::before {
    content: "|";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: #dadada;
}
.inner-shop-details-meta ul li:last-child::before {
    display: none;
}
.inner-shop-details-meta ul li a,
.inner-shop-details-meta ul li span {
    color: #696868;
    font-weight: 500;
}
.inner-shop-details-meta ul li.inner-shop-details-review .rating {
    font-size: 12px;
    letter-spacing: -1px;
    color: #ff9b26;
    margin-right: 8px;
}
.inner-shop-details-price {
    display: flex;
    align-items: center;
    margin: 18px 0 18px;
}
.inner-shop-details-price .woocommerce-Price-amount,
.inner-shop-details-price del,
.inner-shop-details-price ins {
    font-size: 26px;
    font-weight: 700;
    line-height: .9;
    margin-bottom: 0;
    color: var(--heading-color);
}
.inner-shop-details-price del,
.inner-shop-details-price del .woocommerce-Price-amount {
    opacity: .5;
    margin-right: 10px;
    color: var(--default-color);
}
.inner-shop-details-price del .woocommerce-Price-amount {
    margin-right: 0;
}
.inner-shop-details-price .stock-status {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    font-weight: 900;
    margin-left: 15px;
    text-transform: uppercase;
    color: var(--accent-color);
}
.inner-shop-details-list {
    margin: 28px 0 32px;
}
.inner-shop-details-list ul li {
    padding-left: 22px;
    position: relative;
    font-size: 15px;
    color: var(--default-color);
    margin-top: 5px;
    font-weight: 500;
}
.inner-shop-details-list ul li > span {
    color: #696868;
    margin-left: 5px;
    font-weight: 400;
}
.inner-shop-details-list ul li::before {
    content: "\f0a9";
    position: absolute;
    left: 0;
    top: 1.2px;
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: var(--accent-color);
    font-size: 14px;
}
.inner-shop-perched-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.cart-btn,
.inner-shop-perched-info > .cart-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    color: var(--contrast-color);
    padding: 12px 16px;
    min-width: 145px;
    justify-content: center;
    margin-bottom: 12px;
    margin-right: 12px;
    text-transform: uppercase;
}
.inner-shop-perched-info > .wishlist-btn {
    margin-bottom: 12px;
    height: 45px;
    width: 45px;
    text-align: center;
    line-height: 45px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 5px;
}
.inner-shop-perched-info > .wishlist-btn:hover {
    background: var(--accent-color);
}
.inner-shop-perched-info > .cart-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}
.inner-shop-details-bottom {
    margin-top: 23px;
    padding-top: 23px;
    border-top: 1px solid #ebebeb;
    font-size: 16px;
}
.inner-shop-details-bottom > span {
    display: block;
    margin-bottom: 10px;
    color: var(--default-color);
    font-weight: 500;
    margin-right: 5px;
}
.inner-shop-details-bottom > span:last-child {
    margin-bottom: 0;
}
.inner-shop-details-bottom > span > span {
    font-weight: 500;
    margin-left: 5px;
}
.inner-shop-details-bottom span a {
    color: var(--default-color);
    margin-left: 5px;
    border: 1px solid #ebebeb;
    font-weight: 400;
    padding: 3px 10px;
    font-size: 14px;
    margin-bottom: 8px;
    margin-right: 3px;
    border-radius: 5px;
    display: inline-block;
}
.inner-shop-details-bottom span a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.product-desc-wrap {
    padding-top: 85px;
}
.product-desc-wrap .nav-tabs {
    border-bottom: 1px solid #ebebeb;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.product-desc-wrap .nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    background: transparent;
    color: #696868;
    padding: 0 0 12px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
}
.product-desc-wrap .nav-tabs .nav-link.active {
    color: var(--heading-color);
}
.product-desc-wrap .nav-tabs .nav-item {
    margin: 0 55px 0 0;
}
.product-desc-wrap .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
}
.product-desc-wrap .nav-tabs .nav-item .nav-link.active::after {
    opacity: 1;
}
.product-desc-content table {
    margin-bottom: 0;
}
.product-desc-content .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 17px;
}
.product-desc-content p {
    font-size: 16px;
    margin-bottom: 25px;
}
.product-desc-list {
    margin-bottom: -4px;
}
.product-desc-list li {
    font-size: 16px;
    margin-bottom: 8px;
    position: relative;
    margin-left: 15px;
}
.product-desc-list li::before {
    content: "";
    position: absolute;
    left: -15px;
    height: 5px;
    width: 5px;
    background: var(--heading-color);
    top: 9px;
    border-radius: 50%;
}
.product-desc-list li:last-child {
    margin-bottom: 0;
}
.related-products-wrap > .title {
    margin-bottom: 50px;
    font-size: 35px;
}
.product-desc-content .table-sm td,
.product-desc-content .table-sm th {
    padding: 13px 25px;
    border: 1px solid #ebebeb;
}
.product-desc-content .table-sm th {
    color: #222;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    width: 20%;
}
.product-desc-content .table-sm td {
    color: var(--default-color);
    font-weight: 500;
    font-style: italic;
}
.list-wrap {
    margin: 0px;
    padding: 0px;
}
.list-wrap li {
    list-style: none
}
/* Blog */
.tg-blog-post-thumb {
    position: relative;
}
.tg-blog-post-thumb img {
    max-width: 100%;
}
.tg-blog-overlay-tag {
    position: absolute;
    right: 40px;
    bottom: -17px;
    left: 40px;
    text-align: right;
    z-index: 1;
}
.tg-blog-overlay-tag > a {
    display: inline-block;
    background: var(--contrast-color);
    color: #326e8e;
    box-shadow: 0px 16px 32px 0px rgb(137 137 137 / 20%);
    padding: 10px 20px;
    line-height: 1;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
    position: relative;
    z-index: 1;
}
.tg-shop-action .action-item::before,
.tg-blog-overlay-tag > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-image: linear-gradient(5deg, rgb(58, 127, 164) 0%, rgb(50, 110, 142) 100%);
    background-image: -moz-linear-gradient(5deg, rgb(58, 127, 164) 0%, rgb(50, 110, 142) 100%);
    background-image: -webkit-linear-gradient(5deg, rgb(58, 127, 164) 0%, rgb(50, 110, 142) 100%);
    background-image: -ms-linear-gradient(5deg, rgb(58, 127, 164) 0%, rgb(50, 110, 142) 100%);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    opacity: 0;
    z-index: -1;
}
.tg-shop-action .action-item:hover::before,
.tg-blog-overlay-tag > a:hover::before {
    opacity: 1;
}
.tg-blog-overlay-tag > a:hover {
    color: var(--contrast-color);
}
.tg-blog-post-content {
    padding: 35px 35px;
    border: 2px solid #f4f4f4;
    border-top: none;
    transition: .3s linear;
}
.tg-blog-post-content .post-date {
    color: var(--default-color);
    font-size: 14px;
    margin-bottom: 6px;
}
.tg-blog-post-content .post-date > i {
    margin-right: 5px;
}
.tg-blog-post-content .title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 21px;
}
.tg-blog-post-content .title a {
    display: inline;
    background-image: linear-gradient(#232323, #232323), linear-gradient(#232323, #232323);
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s linear;
}
.tg-blog-post-content .title a:hover {
    color: inherit;
    background-size: 0 1px, 100% 1px;
}
.tg-blog-post-content > .read-more {
    font-size: 14px;
    font-weight: 700;
    color: #c1c1c1;
    display: inline-block;
}
.tg-blog-post-content > .read-more:hover {
    color: #326e8e;
}
.tg-blog-post-content > .read-more span {
    text-decoration: underline;
    margin-right: 6px;
}
.tg-blog-post-content > .read-more i {
    font-size: 11px;
}
.tg-blog-post-item {
    transition: .3s linear;
}
.tg-blog-post-item:hover {
    box-shadow: 0px 16px 32px 0px rgba(137, 137, 137, 0.1);
}
.tg-blog-post-item:hover .blog-post-content {
    border-color: var(--contrast-color);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials .section-header .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.testimonials .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials .section-header h2 {
        font-size: 28px;
    }
}
.faq .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq .section-header .section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.faq .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

@media (max-width: 768px) {
    .faq .section-header h2 {
        font-size: 28px;
    }
}
