.breadcrumbs {
    padding: 16px 0;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.breadcrumbs li:not(:first-child) {
    margin-left: 8px;
}

.breadcrumbs li a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.breadcrumbs li a:hover {
    color: var(--primary-color);
}

.breadcrumbs li.current {
    color: var(--heading-color);
    font-weight: 600;
}

.breadcrumbs li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(85, 85, 85, .9);
    border-bottom: 2px solid rgba(85, 85, 85, .9);
    transform: rotate(-45deg);
    margin-left: 8px;
}

.product-hero {
   gap: 20px;
}
.product-slider {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}
.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 104px;
    flex-shrink: 0;
}
.thumbnails img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s ease;
    flex: none;
}
.thumbnails img:hover {
    opacity: 1;
}

.thumbnails img.active-thumb {
    border-color: var(--secondary-color);
    opacity: 1;
}

.main-image {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    min-width: 0;
}
.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}
.product-image.active {
    opacity: 1;
    visibility: visible;
}
.angle-left,
.angle-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angle-left {
    left: 12px;
}

.angle-right {
    right: 12px;
}

.angle-left::before,
.angle-right::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #555555e6;
    border-bottom: 2px solid #555555e6;
}

.angle-left::before {
    transform: rotate(135deg);
    margin-left: 4px;
}

.angle-right::before {
    transform: rotate(-45deg);
    margin-left: -4px;
}
.fsc-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #2e7d4f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
    white-space: nowrap;
}
.short-description {
    margin-bottom: 20px;
}
@media (max-width: 480px) {
    .main-image {
        width: 100%;
        height: 100% !important;
    }
    .product-slider {
        flex-direction: column-reverse;
    }

    .thumbnails {
        flex-direction: row;
        width: 100%;
        height: 80px;
        overflow-x: auto;
        justify-content: center;
    }

    .thumbnails img {
        width: 80px;
        height: 80px;
        flex: none;
        aspect-ratio: 1 / 1;
    }
}

.product-title{
    font-size: var(--pages-h1);
    margin: 0 0 10px 0;
}

.quote-form {
    width: 100%;
    margin: 0;
    font-family: var(--font-family);
    background: #fff;
    border-radius: var(--b-radius);
    padding: 24px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.qf-heading {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--heading-color);
    margin: 0 0 16px;
}

.qf-row {
    margin-bottom: 14px;
}

.qf-cols-2,
.qf-cols-3,
.qf-cols-4 {
    display: flex;
    gap: 16px;
}

.qf-cols-2 > *,
.qf-cols-3 > *,
.qf-cols-4 > * {
    flex: 1;
    min-width: 0;
}

.qf-input,
.qf-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0 0 6px;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--secondary-text-color);
    outline: none;
    background: transparent;
    transition: var(--transition);
}

.qf-select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0 16px 6px 0;
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--secondary-text-color);
    outline: none;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    transition: var(--transition);
}

.qf-select option[disabled] {
    color: #999;
}

.qf-unit-select {
    flex: 0 0 44px;
    padding-right: 14px;
}

.qf-input:focus,
.qf-select:focus,
.qf-textarea:focus {
    border-color: var(--primary-color);
}

.qf-textarea {
    resize: vertical;
    min-height: 22px;
}

.qf-file-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ccc;
}

.qf-file-input {
    display: none;
}

.qf-file-btn {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--secondary-text-color);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.qf-file-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.qf-file-name {
    font-size: 12px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.qf-submit-btn {
    display: block;
    width: 100%;
    height: 44px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 4px;
    transition: var(--transition);
}

.qf-submit-btn:hover {
    opacity: 0.92;
}

@media (max-width: 480px) {
    .quote-form {
        padding: 18px;
    }
}

.trust-strip {
    margin-top: 20px;
    background: #E9EDE9;
    border-radius: 12px;
    padding: 18px 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.trust-svg {
    width: 26px;
    height: 26px;
    color: var(--primary-color);
}

.trust-item span {
    font-size: 12px;
    color: var(--secondary-text-color);
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 480px) {
    .trust-strip {
        padding: 14px 8px;
    }

    .trust-svg {
        width: 22px;
        height: 22px;
    }

    .trust-item span {
        font-size: 11px;
    }
}

.features-strip {
    padding: 40px 0;
    background: var(--background-color);
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #EAF3DE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.4;
}

@media (min-width: 540px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .feature-icon-wrap {
        width: 72px;
        height: 72px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }
}
.product-tabs {
    background: #fff;
    border-radius: var(--b-radius);
    border: 1px solid #e8e8e0;
    overflow: hidden;
}

.tabs-rail {
    display: flex;
    gap: 6px;
    padding: 16px 16px 0;
    border-bottom: 1px solid #ececdf;
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 10px 10px 0 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text-color);
    white-space: nowrap;
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(82, 122, 97, 0.08);
}

.tab-btn.active {
    background: #EAF3DE;
    color: var(--primary-color);
    font-weight: 600;
}

.tab-icon {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.tabs-panels {
    padding: 36px 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-color);
    margin: 0 0 16px;
}

.tab-panel p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--secondary-text-color);
    margin: 0 0 14px;
}
table td:first-child i {
    margin-right: 8px;
    color: var(--primary-color); 
    width: 18px;
    text-align: center;
}
.specs-content table {
    width: 100%;
    border-collapse: collapse;
}
.specs-content {
    width: 100%;
    border-collapse: collapse;
}

.specs-content tr {
    border-bottom: 1px solid #ececdf;
}

.specs-content tr:last-child {
    border-bottom: none;
}

.specs-content td {
    padding: 14px 0;
    font-size: 14px;
    vertical-align: top;
}

.specs-content td:first-child {
    width: 160px;
    font-weight: 600;
    color: var(--heading-color);
    padding-right: 20px;
}

.specs-content td:last-child {
    color: var(--secondary-text-color);
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 28px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 8px;
}

.faq-answer {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-text-color);
    margin: 0;
}

@media (max-width: 768px) {
    .tabs-rail {
        padding: 12px 12px 0;
    }

    .tab-btn {
        padding: 12px 16px;
    }

    .tabs-panels {
        padding: 24px 20px;
    }

    .specs-table td:first-child {
        width: 110px;
    }
}

.features-title {
  font-size: 22px;
	margin-bottom : 10px;
	color: var(--heading-color);
   font-weight: 600;
}

.kf-numbered-list-wrap ul,
.kf-tag-list-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kf-numbered-list-wrap ul li,
.kf-tag-list-wrap ul li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    color: var(--secondary-text-color);
    line-height: 1.6;
}

.kf-numbered-list-wrap ul li:last-child,
.kf-tag-list-wrap ul li:last-child {
    margin-bottom: 0;
}

.kf-numbered-list-wrap ul li::before,
.kf-tag-list-wrap ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(82, 122, 97, 0.15);
}

.kf-numbered-list-wrap ul li::after,
.kf-tag-list-wrap ul li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 7px;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .kf-card {
        padding: 24px;
    }
}

.finishes-section {
    margin:  100px 0px;
}
.finishes {
    gap: 30px;
}
.section-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    color: var(--heading-color);
    text-align: center;
    margin: 0 0 28px;
    position: relative;
    padding-bottom: 20px;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 2px;
    background: var(--primary-color);
}
.tabs-rail.finishes-tabs {
    justify-content: center;
}
.finishes-tabs .tab-btn {
    font-size: 16px;
}
.finish-item {
    text-align: center;
}

.finish-image {
    aspect-ratio: 1 / 1;
    border-radius: var(--b-radius);
    overflow: hidden;
    background: var(--section-bg-color);
    margin-bottom: 12px;
}

.finish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.finish-item:hover .finish-image img {
    transform: scale(1.05);
}

.finish-item span {
    display: block;
    font-weight: 600;
    color: var(--secondary-text-color);
}

.cta-section {
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin: 0 0 12px;
}

.cta-content p {
    color: var(--secondary-text-color);
    margin: 0 0 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--b-radius);
}

.cta-btn-primary svg {
    width: 16px;
    height: 16px;
}

.cta-btn-secondary {
    display: flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: var(--b-radius);
    background: transparent;
    color: var(--secondary-text-color);
    border: 1px solid #d8d8d8;
}

.cta-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.related-product-card {
    display: block;
}

.related-product-image {
    aspect-ratio: 1 / 1;
    border-radius: var(--b-radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.related-product-title {
    text-align:  center;
    font-weight: 600;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .related-product-title {
        font-size: 14px;
    }
}

@media (max-width: 539px) {
    .related-products-section .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.sample-order-section {
    padding: 10px;
}
.sample-order-card {
    background: var(--background-color);
    border-radius: 24px;
    padding: 56px 24px;
    text-align: center;
    max-width: 1140px;
    margin: 0 auto;
}
.sample-order-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--heading-color);
    margin: 0 0 12px;
}
.sample-order-sub {
    font-size: 15px;
    color: var(--secondary-text-color);
    margin: 0 0 24px;
}
.sample-order-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 24px;
}
.sample-order-price span {
    color: var(--primary-color);
}
.sample-order-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.sample-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-family);
}
.sample-btn-add {
    background: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}
.sample-btn-add:hover {
    background: transparent;
    color: var(--primary-color);
}
.sample-btn-buy {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.sample-btn-buy:hover {
    background: var(--primary-color);
    color: #fff;
}
@media (max-width: 600px) {
    .sample-order-card { padding: 40px 20px; border-radius: 16px; }
    .sample-order-title { font-size: 26px; }
}