:root {
--surface: #ffffff;
--line: #ddd8d1;
}


.product-detail .container-boxed {
    width: min(100% - 32px, var(--vy-container));
    margin-inline: auto;
}

.product-detail .rounded-2xl {
	 border-radius: var(--radius-xl);
}
 .product-detail .rounded-xl {
	 border-radius: var(--radius-lg);
}
 .product-detail .rounded-lg {
	 border-radius: var(--radius-md);
}
 .product-detail .shadow-soft {
	 box-shadow: var(--shadow-soft);
}
 .product-detail .font-display {
	 font-family: 'Playfair Display', serif;
	 letter-spacing: -0.02em;
}
 .product-detail .eyebrow {
	 display: inline-flex;
	 align-items: center;
	 gap: 8px;
	 font-size: 13px;
	 color: rgba(255, 255, 255, .82);
}
 .product-detail .eyebrow i {
	 font-size: 12px;
}
 .product-detail .product-overview {
	 margin-top: -40px;
	 position: relative;
	 z-index: 4;
	 padding-bottom: 50px;
}
 .product-detail .media-card, .product-detail .info-card, .product-detail .tech-card, .product-detail .footer-card, .product-detail .texture-card, .product-detail .related-card {
	 background: var(--surface);
	 border-radius: var(--radius-xl);
	 box-shadow: var(--shadow-soft);
}
 .product-detail .media-card {
	 position: relative;
	 overflow: hidden;
	 height: 100%;
	 max-height: 428px;
}
 .product-detail .media-card img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 transition: transform 0.55s ease;
}
 .product-detail .media-card:hover img, .product-detail .texture-card:hover img, .product-detail .pattern-link:hover img, .product-detail .related-card:hover img {
	 transform: scale(1.035);
}
 .product-detail .zoom-fab, .product-detail .slide-fab {
	 position: absolute;
	 right: 18px;
	 bottom: 18px;
	 width: 44px;
	 height: 44px;
	 border-radius: 50%;
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 font-size: 15px;
	 box-shadow: 0 10px 24px rgba(18, 18, 18, .16);
}
 .product-detail .zoom-fab {
	 background: var(--c1);
	 color: #fff;
}
 .product-detail .slide-fab {
	 background: #0b1230;
	 color: #fff;
}
 .product-detail .media-card:hover .zoom-fab, .product-detail .related-card:hover .slide-fab, .product-detail .related-card:hover .zoom-fab {
	 transform: translateY(-2px);
}
 .product-detail .info-card {
	 padding: 28px 28px 26px;
	 height: 100%;
	 background: #f4f2ef;
	 border: 1px solid rgba(0, 0, 0, .03);
}
 .product-detail .product-name-sm {
	 margin: 0 0 22px;
	 font-size: 26px;
	 line-height: 1.1;
	 font-weight: 600;
}
 .product-detail .spec-list {
	 display: grid;
	 gap: 14px;
	 margin-bottom: 26px;
}
 .product-detail .spec-item {
	 padding-bottom: 12px;
	 border-bottom: 1px solid rgba(0, 0, 0, .08);
}
 .product-detail .spec-label {
	 display: block;
	 font-size: 12px;
	 color: var(--c3);
	 margin-bottom: 5px;
}
 .product-detail .spec-value {
	 font-size: 14px;
	 font-weight: 600;
	 line-height: 1.45;
	 color: #1f1f1f;
}
 .product-detail .btn-pill {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 gap: 10px;
	 min-height: 48px;
	 padding: 12px 20px;
	 border-radius: 999px;
	 background: #0e0e0e;
	 color: #fff;
	 font-size: 14px;
	 font-weight: 600;
	 border: 1px solid #0e0e0e;
	 box-shadow: 0 10px 24px rgba(14, 14, 14, .16);
}
 .product-detail .btn-pill:hover {
	 background: #fff;
	 color: #0e0e0e;
	 transform: translateY(-2px);
}
 .product-detail .section-title {
	 margin: 0;
	 font-size: clamp(2rem, 3vw, 3rem);
	 line-height: 1.02;
	 font-weight: 700;
}
 .product-detail .section-kicker {
	 margin: 10px 0 22px;
	 font-size: 20px;
	 line-height: 1.4;
	 font-weight: 500;
}
 .product-detail .lede {
	 color: #7c7b77;
	 font-size: 14px;
	 line-height: 1.8;
	 max-width: 590px;
}
 .product-detail .texture-card {
	 overflow: hidden;
	 height: 100%;
	 max-height: 380px;
}
 .product-detail .texture-card img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 transition: transform 0.55s ease;
}
 .product-detail .texture-note {
	 margin-top: 12px;
	 font-size: 12px;
	 color: #9b9892;
	 display: flex;
	 align-items: center;
	 gap: 7px;
}
 .product-detail .feature-grid {
	 display: grid;
	 grid-template-columns: repeat(5, minmax(0, 1fr));
	 gap: 14px;
	 margin-top: 28px;
}
 .product-detail .feature-pill {
	 min-height: 64px;
	 padding: 12px 16px;
	 background: #fff;
	 border: 1px solid rgba(0, 0, 0, .05);
	 border-radius: 999px;
	 display: flex;
	 align-items: center;
	 gap: 12px;
	 color: #555;
	 font-size: 13px;
	 line-height: 1.3;
	 transition: var(--transition);
}
 .product-detail .feature-pill:hover {
	 background: #fff;
	 transform: translateY(-2px);
	 box-shadow: var(--shadow-soft);
}
 .product-detail .feature-icon {
	 width: 38px;
	 height: 38px;
	 border-radius: 50%;
	 flex: 0 0 auto;
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 border: 1px solid rgba(0, 0, 0, .08);
	 background: #fff;
	 color: #85827d;
	 font-size: 14px;
}
 .product-detail .tech-grid {
	 display: grid;
	 grid-template-columns: repeat(3, minmax(0, 1fr));
	 gap: 22px;
	 margin-top: 32px;
}
 .product-detail .tech-card {
	 padding: 28px 22px 24px;
	 text-align: center;
	 min-height: 228px;
	 border: 1px solid rgba(0, 0, 0, .04);
}
 .product-detail .tech-media {
	 height: 54px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin-bottom: 16px;
}
 .product-detail .tech-media img {
	 max-height: 44px;
	 width: auto;
}
 .product-detail .tech-icon {
	 width: 54px;
	 height: 54px;
	 border-radius: 50%;
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 background: #f7f4ef;
	 color: #1b1b1b;
	 font-size: 22px;
}
 .product-detail .tech-title {
	 margin: 0 0 12px;
	 font-size: 18px;
	 line-height: 1.3;
	 font-weight: 700;
	 text-transform: uppercase;
}
 .product-detail .tech-text {
	 margin: 0;
	 font-size: 13px;
	 line-height: 1.75;
	 color: #75736e;
	 max-width: 260px;
	 margin-inline: auto;
}
 .product-detail .badge-strip {
	 display: grid;
	 grid-template-columns: repeat(8, minmax(0, 1fr));
	 gap: 18px;
	 margin: 40px 0;
	 align-items: center;
}
 .product-detail .mini-badge {
	 text-align: center;
	 color: #908d88;
	 font-size: 11px;
	 line-height: 1.35;
}
 .product-detail .mini-badge-mark {
	 width: 80px;
	 height: 80px;
	 background: #f8f6f2;
	 display: flex;
	 align-items: center;
	 justify-content: center;
}
 .product-detail .mini-badge-mark .tiny {
	 font-size: 11px;
	 display: block;
	 line-height: 1;
	 margin-top: 2px;
}
 .product-detail .pattern-link {
	 display: block;
	 overflow: hidden;
	 border-radius: 0;
	 max-height: 500px;
}
 .product-detail .pattern-link img {
	 width: 100%;
	 transition: transform 0.55s ease;
}
 .product-detail .data-table-wrap {
	 margin-top: 36px;
}
 .product-detail .spec-table {
	 width: 100%;
	 border-collapse: collapse;
	 font-size: 13px;
	 color: #6f6d69;
}
 .product-detail .spec-table td {
	 padding: 13px 12px;
	 border-bottom: 1px solid var(--line);
	 vertical-align: top;
	 line-height: 1.65;
}
 .product-detail .spec-table tr:first-child td {
	 border-top: 1px solid var(--line);
}
 .product-detail .spec-table td:first-child {
	 width: 33%;
	 color: #8c8a85;
}
 .product-detail .spec-table td:last-child {
	 color: #55534f;
	 font-weight: 500;
}
 .product-detail .cert-list {
	 margin-top: 56px;
	 border-top: 1px solid var(--line);
}
 .product-detail .cert-row {
	 display: grid;
	 grid-template-columns: 86px minmax(0, 1fr);
	 gap: 28px;
	 padding: 28px 0;
	 border-bottom: 1px solid var(--line);
	 align-items: start;
}
 .product-detail .cert-icon {
	 width: 70px;
	 height: 70px;
	 border-radius: 50%;
	 border: 1px solid rgba(0, 0, 0, .09);
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 background: #faf8f4;
	 color: #6d6a65;
	 font-size: 20px;
	 font-weight: 700;
	 text-align: center;
	 margin-top: 4px;
	 padding: 8px;
}
 .product-detail .cert-content h3 {
	 margin: 0 0 10px;
	 font-size: 16px;
	 font-weight: 600;
	 color: #4e4c48;
}
 .product-detail .cert-content p {
	 margin: 0;
	 font-size: 13px;
	 color: #7b7974;
	 line-height: 1.85;
	 max-width: 860px;
}
 .product-detail .related-title {
	 text-align: center;
	 font-size: clamp(2rem, 3vw, 3.25rem);
	 line-height: 1.1;
	 margin: 0 0 34px;
	 font-weight: 600;
}
 .product-detail .related-title span {
	 color: var(--c1);
}
 .product-detail .related-card {
	 position: relative;
	 overflow: hidden;
	 display: block;
	 min-height: 250px;
}
 .product-detail .related-card img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 transition: transform 0.55s ease;
}
 .product-detail .site-footer {
	 padding-top: 70px;
	 padding-bottom: 42px;
	 background: #ece9e3;
}
 .product-detail .footer-card {
	 padding: 30px 32px 20px;
	 background: transparent;
	 box-shadow: none;
	 border-radius: 0;
}
 .product-detail .footer-title {
	 margin: 0 0 18px;
	 font-size: 20px;
	 font-weight: 600;
}
 .product-detail .newsletter-form {
	 display: flex;
	 gap: 10px;
	 margin-bottom: 18px;
}
 .product-detail .newsletter-form .form-control {
	 min-height: 46px;
	 border-radius: 999px;
	 border-color: rgba(0, 0, 0, .12);
	 background: rgba(255, 255, 255, .86);
	 padding-inline: 16px;
	 box-shadow: none;
}
 .product-detail .newsletter-form .btn {
	 min-width: 118px;
	 border-radius: 999px;
	 font-weight: 600;
	 background: #0b0b0b;
	 border-color: #0b0b0b;
}
 .product-detail .newsletter-form .btn:hover {
	 background: var(--c1);
	 border-color: var(--c1);
}
 .product-detail .footer-note {
	 max-width: 220px;
	 color: #605f5b;
	 font-size: 15px;
	 line-height: 1.65;
	 margin-bottom: 22px;
}
 .product-detail .footer-heading {
	 font-size: 19px;
	 margin: 0 0 18px;
	 font-weight: 600;
}
 .product-detail .footer-links {
	 display: grid;
	 gap: 11px;
}
 .product-detail .footer-links a {
	 color: #55534f;
	 font-size: 14px;
	 line-height: 1.5;
}
 .product-detail .footer-links a:hover {
	 color: var(--c1);
	 transform: translateX(3px);
}
 .product-detail .footer-contact-grid {
	 display: grid;
	 grid-template-columns: repeat(3, minmax(0, 1fr));
	 gap: 18px;
	 margin-top: 26px;
	 padding-top: 22px;
	 border-top: 1px solid rgba(0, 0, 0, .08);
}
 .product-detail .footer-contact-item {
	 color: #5e5c58;
	 font-size: 13px;
	 line-height: 1.65;
}
 .product-detail .footer-contact-item strong {
	 display: block;
	 color: #212121;
	 font-size: 13px;
	 margin-bottom: 4px;
}
 .product-detail .footer-bottom {
	 margin-top: 22px;
	 background: var(--c1);
	 color: #fff;
	 padding: 12px 18px;
	 border-radius: 4px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 gap: 18px;
	 font-size: 12px;
}
 .product-detail .footer-logo img {
	 width: 112px;
}
 .product-detail .mobile-note {
	 display: none;
}
 @media (max-width: 1199.98px) {
	 .product-detail .feature-grid {
		 grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	 .product-detail .badge-strip {
		 grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
 @media (max-width: 991.98px) {
	 .product-detail .site-hero {
		 min-height: 300px;
		 padding-top: 18px;
	}
	 .product-detail .hero-copy {
		 padding-top: 76px;
		 max-width: 100%;
	}
	 .product-detail .product-overview {
		 margin-top: -22px;
	}
	 .product-detail .media-card, .product-detail .texture-card {
		 min-height: 300px;
	}
	 .product-detail .feature-grid, .product-detail .tech-grid {
		 grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	 .product-detail .footer-contact-grid {
		 grid-template-columns: 1fr;
	}
}
 @media (max-width: 767.98px) {
    .product-detail .container-boxed {
        width: min(100% - 24px, var(--vy-container));
    } 
	 .product-detail .section-space {
		 padding-block: 54px;
	}
	 .product-detail .site-hero {
		 min-height: 255px;
		 padding-bottom: 44px;
	}
	 .product-detail .site-nav-wrap {
		 padding: 10px 12px;
		 border-radius: 20px;
	}
	 .product-detail .navbar-brand img {
		 width: 102px;
	}
	 .product-detail .hero-copy {
		 padding-top: 58px;
	}
	 .product-detail .hero-title {
		 font-size: clamp(2rem, 10vw, 2.8rem);
	}
	 .product-detail .info-card {
		 padding: 22px 20px;
	}
	 .product-detail .product-name-sm {
		 font-size: 23px;
		 margin-bottom: 18px;
	}
	 .product-detail .section-title {
		 font-size: 2.2rem;
	}
	 .product-detail .section-kicker {
		 font-size: 17px;
		 margin-bottom: 18px;
	}
	 .product-detail .feature-grid, .product-detail .tech-grid, .product-detail .badge-strip {
		 grid-template-columns: 1fr 1fr;
	}
	 .product-detail .feature-pill {
		 min-height: 58px;
		 padding: 10px 13px;
	}
	 .product-detail .spec-table td {
		 display: block;
		 width: 100% !important;
		 padding: 9px 0;
	}
	 .product-detail .spec-table td:first-child {
		 padding-top: 15px;
		 border-bottom: 0;
		 font-size: 12px;
	}
	 .product-detail .spec-table td:last-child {
		 padding-top: 0;
		 padding-bottom: 15px;
	}
	 .product-detail .cert-row {
		 grid-template-columns: 1fr;
		 gap: 16px;
	}
	 .product-detail .cert-icon {
		 width: 62px;
		 height: 62px;
		 margin-top: 0;
	}
	 .product-detail .related-title {
		 margin-bottom: 26px;
	}
	 .product-detail .related-card {
		 min-height: 210px;
	}
	 .product-detail .footer-card {
		 padding-inline: 0;
	}
	 .product-detail .newsletter-form {
		 flex-direction: column;
	}
	 .product-detail .footer-bottom {
		 flex-direction: column;
		 align-items: flex-start;
		 text-align: left;
	}
	 .product-detail .mobile-note {
		 display: block;
		 margin-bottom: 14px;
		 font-size: 13px;
		 color: #7d7b76;
	}
}
 @media (max-width: 575.98px) {
	 .product-detail .feature-grid, .product-detail .tech-grid, .product-detail .badge-strip {
		 grid-template-columns: 1fr;
	}
	 .product-detail .media-card, .product-detail .texture-card {
		 min-height: 250px;
	}
}
 