/* Reset Bootstrap container constraints for the product detail head to achieve full-width layout */
.product-detail-head {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.product-detail-head .row,
.product-detail-head .col-lg-12 {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    width: 100% !important;
}

/* Main Figma Product Detail Container */
.figma-product-detail {
    width: 100%;
    min-height: 976px;
    background-color: #ffffff;
    overflow: hidden;
}

.figma-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 976px;
}

/* Left Column: Image Area (63% width) */
.figma-col-left {
    flex: 0 0 63%;
    max-width: 63%;
    position: relative;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-image-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
}

.figma-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.figma-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #eaeaea;
    color: #888;
    font-size: 18px;
}

/* Right Column: Info Area (37% width) */
.figma-col-right {
    flex: 0 0 37%;
    max-width: 37%;
    background-color: #29231E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    box-sizing: border-box;
}

.figma-info-inner {
    max-width: 565px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* 1. Title */
.figma-title {
    color: #ffffff;
    font-size: clamp(32px, 3.5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

/* 2. Metadata (Code and Categories) */
.figma-meta-line {
    gap: 16px;
}

.figma-code {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}

.figma-categories-list {
    gap: 8px;
}

.figma-category-tag {
    background-color: #604A2C;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: capitalize;
}

/* Price Section */
.figma-price-section {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.figma-price {
    color: #CBA572;
    font-size: clamp(24px, 2.5vw, 36px);
    font-weight: 700;
}

.figma-price-old {
    color: #8E8479;
    font-size: clamp(16px, 1.8vw, 20px);
    text-decoration: line-through;
    font-weight: 400;
}

/* 3. Short Description */
.figma-description {
    color: #E2DCD5;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* 4. Attributes Section */
.figma-attributes-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.figma-attribute-row {
    gap: 8px;
}

.figma-attribute-label {
    color: #DBDBDB;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Value displays */
.figma-attribute-value-text {
    color: #CF9F5F;
    font-size: 18px;
    font-weight: 600;
}

.figma-attribute-options-list {
    gap: 10px;
}

/* Material tags style */
.figma-material-tag {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.figma-material-tag:hover,
.figma-material-tag.active,
.figma-material-tag.switch-active {
    background-color: #A47E4B;
    border-color: #A47E4B;
    color: #ffffff;
}

/* Color swatches style */
.figma-color-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
}

.figma-color-dot:hover,
.figma-color-dot.active,
.figma-color-dot.switch-active {
    border-color: #ffffff;
    outline: 2px solid #CF9F5F;
    transform: scale(1.08);
}

/* 5. Buttons */
.figma-buttons-group {
    gap: 16px;
    margin-top: 10px;
}

.figma-btn-contact {
    background-color: #CFA261;
    color: #090915;
    font-size: 17px;
    font-weight: 600;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.figma-btn-contact:hover {
    background-color: #e5b46f;
    color: #000000;
    box-shadow: 0 4px 15px rgba(207, 162, 97, 0.3);
}

.figma-btn-download {
    background-color: transparent;
    border: 1px solid #CF9F5F;
    color: #CE9E5E;
    font-size: 17px;
    font-weight: 600;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    gap: 8px;
}

.figma-btn-download:hover {
    background-color: rgba(206, 158, 94, 0.08);
    border-color: #e5b46f;
    color: #e5b46f;
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .figma-col-right {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .figma-row {
        flex-direction: column;
        min-height: auto;
    }

    .figma-col-left {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .figma-image-container,
    .figma-info-slider-container,
    .figma-image-placeholder {
        height: 450px !important;
        min-height: 450px !important;
    }

    .figma-info-slider-prev {
        left: 12px;
    }

    .figma-info-slider-next {
        right: 12px;
    }

    .figma-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 50px 30px;
    }

    .figma-title {
        font-size: 36px;
    }
}

/* ---- Specifications Section (Figma Node 218-12613) ---- */
.figma-specifications {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.figma-spec-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    min-height: 900px;
}

/* Left Column: Text & Table */
.figma-spec-col-left {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 80px 48px 80px 10%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.figma-spec-info-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.figma-spec-main-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.35;
    color: #090915;
    margin: 0;
    text-transform: uppercase;
    text-align: left;
}

.figma-spec-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Right Column: Slider */
.figma-spec-col-right {
    flex: 0 0 55%;
    max-width: 55%;
    box-sizing: border-box;
    position: relative;
}

.figma-spec-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.figma-spec-slide-inner {
    width: 100%;
    height: 100%;
    min-height: 900px;
    background-color: #f8f8f8;
}

/* Make Swiper stretch to 100% height of parent col-right */
.figma-spec-slider-container,
.figma-spec-slider-container .swiper,
.figma-spec-slider-container .swiper-wrapper,
.figma-spec-slider-container .swiper-slide {
    height: 100%;
    width: 100%;
}

.figma-spec-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slider Nav Arrows */
.figma-spec-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    color: #090915;
    font-size: 18px;
}

.figma-spec-arrow:hover {
    background-color: #CFA261;
    color: #ffffff;
    box-shadow: 0px 4px 15px rgba(207, 162, 97, 0.3);
}

.figma-spec-slider-prev {
    left: 24px;
}

.figma-spec-slider-next {
    right: 24px;
}

/* Responsive Specifications */
@media (max-width: 1400px) {
    .figma-spec-col-left {
        padding-left: 5%;
        padding-right: 24px;
    }
}

@media (max-width: 991px) {
    .figma-spec-row {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .figma-spec-col-left {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 50px 20px;
    }

    .figma-spec-col-right {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    .figma-spec-slide-inner {
        aspect-ratio: 4/3;
        min-height: auto;
        height: auto;
    }

    .figma-spec-slider-container,
    .figma-spec-slider-container .swiper,
    .figma-spec-slider-container .swiper-wrapper,
    .figma-spec-slider-container .swiper-slide {
        height: auto;
    }

    .figma-spec-main-title {
        text-align: center;
    }

    .figma-spec-arrow {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .figma-spec-slider-prev {
        left: 12px;
    }

    .figma-spec-slider-next {
        right: 12px;
    }
}

/* ---- Key Features Section (Figma Node 218-12411) ---- */
.figma-keyfeatures {
    width: 100%;
    background-color: #F9F0EB;
    padding: 80px 10%;
    box-sizing: border-box;
}

.figma-keyfeatures-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.35;
    color: #090915;
    text-align: center;
    margin: 0 0 56px 0;
    text-transform: uppercase;
}

.figma-keyfeatures-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    width: 100%;
}

.figma-keyfeature-card {
    flex: 0 1 366px;
    width: 100%;
    max-width: 366px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    box-sizing: border-box;
}

.figma-keyfeature-icon-wrapper {
    width: 105px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-keyfeature-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.figma-keyfeature-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.figma-keyfeature-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #CFA261;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.figma-keyfeature-desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: #090915;
    margin: 0;
}

/* Responsive Key Features */
@media (max-width: 1400px) {
    .figma-keyfeatures-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .figma-keyfeatures {
        padding: 56px 20px;
    }

    .figma-keyfeatures-grid {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .figma-keyfeature-card {
        max-width: 500px;
    }
}

/* ---- Album Featured Section (Figma Node 205-4263) ---- */
.figma-albumfeatured {
    width: 100%;
    background-color: #403B35;
    padding: 4px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.figma-albumfeatured-row-1 {
    display: flex;
    gap: 4px;
    width: 100%;
}

.figma-albumfeatured-row-2 {
    display: flex;
    gap: 4px;
    width: 100%;
}

.figma-albumfeatured-text-card {
    flex: 0 0 calc(33.333% - 2.667px);
    max-width: calc(33.333% - 2.667px);
    background-color: #403B35;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    min-height: 480px;
}

.figma-albumfeatured-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.figma-albumfeatured-desc {
    font-size: 18px;
    font-weight: 510;
    line-height: 1.35;
    color: #ffffff;
    margin: 0;
}

.figma-albumfeatured-img-card-row1 {
    flex: 0 0 calc(33.333% - 2.667px);
    max-width: calc(33.333% - 2.667px);
    height: 480px;
    overflow: hidden;
}

.figma-albumfeatured-img-card-row2-left {
    flex: 0 0 42%;
    max-width: 42%;
    height: 480px;
    overflow: hidden;
}

.figma-albumfeatured-img-card-row2-right {
    flex: 0 0 calc(58% - 4px);
    max-width: calc(58% - 4px);
    height: 480px;
    overflow: hidden;
}

.figma-albumfeatured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.figma-albumfeatured-img:hover {
    transform: scale(1.03);
}

/* Responsive Album Featured */
@media (max-width: 1400px) {
    .figma-albumfeatured-text-card {
        padding: 40px 40px;
    }
}

@media (max-width: 991px) {
    .figma-albumfeatured {
        padding: 4px;
        gap: 4px;
    }

    .figma-albumfeatured-row-1,
    .figma-albumfeatured-row-2 {
        flex-direction: column;
        gap: 4px;
    }

    .figma-albumfeatured-text-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto;
        padding: 50px 20px;
        text-align: center;
    }

    .figma-albumfeatured-img-card-row1,
    .figma-albumfeatured-img-card-row2-left,
    .figma-albumfeatured-img-card-row2-right {
        flex: 0 0 100%;
        max-width: 100%;
        height: 350px;
    }
}

/* ---- FAQ Section (Figma Node 218-12049) ---- */
.figma-faq-section {
    width: 100%;
    background-color: #ffffff;
    padding: 96px 10%;
    box-sizing: border-box;
}

.figma-faq-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.figma-faq-small-tag {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #CFA261;
    text-transform: uppercase;
}

.figma-faq-main-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: #090915;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
}

.figma-faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.figma-faq-item {
    width: 100%;
    padding: 24px 16px;
    border-bottom: 1px solid #939393;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.figma-faq-item.active {
    border-bottom-color: #090915;
}

.figma-faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.figma-faq-question {
    font-size: 24px;
    font-weight: 510;
    line-height: 1.3;
    color: #090915;
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.figma-faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #DBDBDB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #090915;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.figma-faq-item.active .figma-faq-icon-wrapper {
    border-color: #090915;
    background-color: #090915;
    color: #ffffff;
}

.figma-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.figma-faq-body-content {
    padding-top: 16px;
}

.figma-faq-answer {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    color: #090915;
    margin: 0;
    text-align: left;
}

.figma-faq-btn-contact {
    background-color: #CFA261;
    color: #090915;
    font-size: 17px;
    font-weight: 510;
    height: 56px;
    padding: 0 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
}

.figma-faq-btn-contact:hover {
    background-color: #e5b46f;
    color: #000000;
    box-shadow: 0 4px 15px rgba(207, 162, 97, 0.3);
}

/* Responsive FAQ */
@media (max-width: 991px) {
    .figma-faq-section {
        padding: 56px 20px;
    }

    .figma-faq-question {
        font-size: 20px;
    }

    .figma-faq-answer {
        font-size: 16px;
    }
}

/* ---- Suggestions Section (Figma Node 195-3914) ---- */
.figma-suggestions-section {
    position: relative;
    width: 100%;
    background-color: #F9F0EB;
    padding: 128px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.figma-suggestions-section .product-home-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
}

.figma-suggestions-section .product-home-item-title a,
.figma-suggestions-section .product-home-item-desc,
.figma-suggestions-section .product-home-detail-link {
    color: #090915;
}

.figma-suggestions-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background-image: url('../media/background/bg_suggets.png');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.12;
    /* Faded translucent background */
    pointer-events: none;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.figma-suggestions-section .container {
    position: relative;
    z-index: 2;
}

.figma-suggestions-header {
    margin-bottom: 80px;
}

.figma-suggestions-small-tag {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #CFA261;
    text-transform: uppercase;
}

.figma-suggestions-main-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: #090915;
    margin: 0;
    text-align: left;
}

.figma-suggestions-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    color: #090915;
    margin: 0;
    text-align: left;
}

/* Responsive Suggestions */
@media (max-width: 991px) {
    .figma-suggestions-section {
        padding: 80px 0;
    }

    .figma-suggestions-section::before {
        width: 100%;
        opacity: 0.08;
        /* Make it even more subtle on mobile */
        background-size: contain;
        -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 100%);
    }

    .figma-suggestions-header {
        margin-bottom: 40px;
    }

    .figma-suggestions-desc {
        margin-top: 16px;
    }
}

/* ---- Category Description Section (Figma Node 163-2161 & 175-1552) ---- */
.figma-cat-banner {
    width: 100%;
    height: 976px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 96px 10%;
    box-sizing: border-box;
    position: relative;
}

.figma-cat-banner-inner {
    width: 100%;
}

.figma-cat-banner-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 48px;
}

.figma-cat-banner-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.figma-cat-banner-right {
    flex: 0 0 448px;
    max-width: 448px;
}

.figma-cat-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}

.figma-cat-breadcrumb a,
.figma-cat-breadcrumb-separator,
.figma-cat-breadcrumb-current {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff !important;
    text-decoration: none;
}

.figma-cat-banner-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 128px;
    font-weight: 500;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
    text-transform: capitalize;
}

.figma-cat-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.figma-cat-desc p,
.figma-cat-desc p span {
    color: #ffffff !important;
    background-color: transparent !important;
}

.figma-cat-desc p:first-child,
.figma-cat-desc p:first-child span {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0;
}

.figma-cat-desc p:not(:first-child),
.figma-cat-desc p:not(:first-child) span {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.35 !important;
    margin: 0;
}

.figma-cat-intro {
    width: 100%;
    background-color: #F9F0EB;
    padding: 96px 10%;
    box-sizing: border-box;
}

.figma-cat-intro-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.figma-cat-intro-content p,
.figma-cat-intro-content p span {
    color: #090915 !important;
    background-color: transparent !important;
    text-align: center !important;
}

.figma-cat-intro-content p:first-child,
.figma-cat-intro-content p:first-child span {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin: 0;
}

.figma-cat-intro-content p:not(:first-child),
.figma-cat-intro-content p:not(:first-child) span {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    max-width: 1030px;
    margin: 0 auto;
}

/* Responsive Category Description */
@media (max-width: 1199px) {
    .figma-cat-banner {
        height: auto;
        min-height: 600px;
        padding: 80px 5%;
    }

    .figma-cat-banner-title {
        font-size: 80px;
    }

    .figma-cat-breadcrumb a,
    .figma-cat-breadcrumb-current {
        font-size: 24px;
    }

    .figma-cat-desc p:first-child,
    .figma-cat-desc p:first-child span {
        font-size: 24px !important;
    }
}

@media (max-width: 991px) {
    .figma-cat-banner-content-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .figma-cat-banner-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .figma-cat-banner-title {
        font-size: 56px;
    }

    .figma-cat-intro {
        padding: 56px 20px;
    }

    .figma-cat-intro-content p:first-child,
    .figma-cat-intro-content p:first-child span {
        font-size: 32px !important;
    }

    .figma-cat-intro-content p:not(:first-child),
    .figma-cat-intro-content p:not(:first-child) span {
        font-size: 16px !important;
    }
}

/* ---- Product Filter Bar & Pagination (Figma Node 175-1789) ---- */
.figma-filter-bar-wrap {
    width: 100%;
    margin-bottom: 5rem;
    margin-top: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #939393;
}

.figma-filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.figma-filter-dropdown {
    position: relative;
    min-width: 210px;
    flex: 0 0 auto;
}

.figma-filter-dropdown-btn {
    width: 100%;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #1E232D;
    transition: all 0.2s ease;
    outline: none;
}

.figma-filter-dropdown-btn:hover {
    border-color: #CF9F5F;
}

.figma-filter-dropdown-btn i {
    font-size: 12px;
    color: #939393;
    transition: transform 0.2s ease;
}

.figma-filter-dropdown.open .figma-filter-dropdown-btn {
    border-color: #CF9F5F;
}

.figma-filter-dropdown.open .figma-filter-dropdown-btn i {
    transform: rotate(180deg);
}

.figma-filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #CFCFCF;
    border-radius: 8px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    z-index: 99;
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
}

.figma-filter-dropdown.open .figma-filter-dropdown-menu {
    display: flex;
}

.figma-filter-dropdown-item {
    padding: 12px 16px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    color: #1E232D;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: left;
}

.figma-filter-dropdown-item:hover,
.figma-filter-dropdown-item.active {
    background-color: #F9F0EB;
    color: #CF9F5F;
    font-weight: 510;
}

/* Pagination Styling */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 48px 0 0 0;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.page-item {
    margin: 0;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    border: 1px solid #DADADA;
    color: #090915;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 510;
    text-decoration: none;
    transition: all 0.25s ease;
    background-color: #FFFFFF;
}

.page-item.active .page-link,
.page-item .page-link:hover {
    background-color: #CF9F5F !important;
    border-color: #CF9F5F !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(207, 159, 95, 0.2);
}

.page-item.disabled .page-link {
    color: #DADADA;
    border-color: #F0F0F0;
    background-color: #FAFFAF;
    pointer-events: none;
}

@media (max-width: 991px) {
    .figma-filter-bar-wrap {
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .figma-filter-dropdown-btn{
        font-size: 1.3rem;
    }

    .figma-filter-dropdown-item{
        font-size: 1.5rem;
    }
    
    .figma-filter-bar {
        justify-content: stretch;
    }

    .figma-filter-dropdown {
        flex: 1 1 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .pagination {
        gap: 8px;
    }

    .page-item .page-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* ---- Product List Card (Figma Node 175-1789) ---- */
.product-list-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.product-list-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 499 / 342;
    overflow: hidden;
    border-radius: 4px;
    background-color: #FAFAFA;
}

.product-list-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-list-card:hover .product-list-img-wrap img {
    transform: scale(1.04);
}

.product-list-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-list-category {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    color: #939393 !important;
    text-transform: uppercase;
}

.product-list-item-title {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}

.product-list-item-title a {
    color: #090915 !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.product-list-card:hover .product-list-item-title a {
    color: #CF9F5F !important;
}

.product-list-item-desc {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    color: #090915 !important;
    margin: 0;
}

.product-list-link-wrap {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

.product-list-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 510;
    color: #CF9F5F !important;
    text-decoration: none !important;
    transition: gap 0.2s ease;
}

.product-list-detail-link svg {
    transition: transform 0.2s ease;
}

.product-list-card:hover .product-list-detail-link {
    gap: 12px;
}

.product-list-card:hover .product-list-detail-link svg {
    transform: translateX(4px);
}

@media (min-width: 992px) {
    #filter-sort {
        margin-left: auto;
    }
}

/* ---- Info Album Swiper Slider ---- */
.figma-info-slider-container {
    position: relative;
}

.figma-info-slider-container,
.figma-info-slider-container .swiper,
.figma-info-slider-container .swiper-wrapper,
.figma-info-slider-container .swiper-slide {
    height: 100%;
    width: 100%;
}

.figma-main-image-wrap {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
}

.figma-info-slider-prev,
.figma-info-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.figma-info-slider-prev {
    left: 24px;
}

.figma-info-slider-next {
    right: 24px;
}

/* ---- Specifications Modal (Figma Node 575-4041) ---- */
.figma-spec-modal .modal-content {
    background-color: #29231E;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 30px;
    box-sizing: border-box;
}

.figma-spec-modal .close {
    color: #ffffff !important;
    opacity: 0.8;
    text-shadow: none;
    font-size: 32px;
    font-weight: 300;
    transition: all 0.2s ease;
    outline: none !important;
}

.figma-spec-modal .close:hover {
    color: #CF9F5F !important;
    opacity: 1;
}

.figma-spec-modal-title {
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(24px, 2.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.figma-spec-modal-meta {
    gap: 16px;
    margin-bottom: 32px;
}

.figma-spec-modal-code {
    font-size: 16px;
    color: #DBDBDB;
    font-weight: 500;
}

.figma-spec-modal-categories {
    gap: 8px;
}

.figma-spec-modal-category-tag {
    background-color: #604A2C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: capitalize;
}

.figma-spec-modal-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

/* Format tables/lists inside spec content inside modal */
.figma-spec-modal-details {
    color: #DBDBDB;
    font-size: 16px;
    line-height: 1.6;
}

.figma-spec-modal-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.figma-spec-modal-details tr {
    border-bottom: 1px solid rgba(219, 219, 219, 0.15);
}

.figma-spec-modal-details td {
    padding: 12px 0;
    vertical-align: middle;
    border: none !important;
    background: transparent !important;
}

.figma-spec-modal-details td:first-child {
    color: #DBDBDB !important;
    font-weight: 400;
    text-align: left;
}

.figma-spec-modal-details td:last-child {
    color: #ffffff !important;
    font-weight: 500;
    text-align: right;
}

.figma-spec-modal-actions {
    margin-top: 40px;
    gap: 16px;
}

.figma-btn-close-spec {
    background-color: transparent;
    border: 1px solid #CF9F5F;
    color: #CE9E5E;
    font-size: 17px;
    font-weight: 600;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none !important;
}

.figma-btn-close-spec:hover {
    background-color: rgba(206, 158, 94, 0.08);
    color: #e5b46f;
    border-color: #e5b46f;
}