.product-gallery .intro-section {
	 padding: 84px 0 92px;
}
 .product-gallery .section-kicker {
	 display: block;
	 font-size: 13px;
	 letter-spacing: 0.08em;
	 text-transform: uppercase;
	 color: var(--c3);
	 margin-bottom: 14px;
}
 .product-gallery .section-title {
	 font-size: clamp(2rem, 3vw, 3.65rem);
	 line-height: 1.05;
	 letter-spacing: -0.04em;
	 font-weight: 800;
	 margin: 0;
}
 .product-gallery .section-title em {
	 color: var(--c1);
	 font-style: italic;
	 font-weight: 700;
}
 .product-gallery .section-copy, .product-gallery .section-copy-secondary {
	 max-width: 800px;
	 margin-left: auto;
	 margin-right: auto;
	 font-size: 15px;
	 line-height: 1.75;
	 color: #454545;
}
 .product-gallery .section-copy {
	 margin-top: 26px;
	 margin-bottom: 12px;
}
 .product-gallery .section-copy-secondary {
	 margin-top: 0;
	 margin-bottom: 18px;
}
 .product-gallery .section-mini-note {
	 font-size: 14px;
	 line-height: 1.55;
	 font-weight: 600;
	 color: #323232;
	 margin-bottom: 38px;
}
 .product-gallery .product-grid {
	 display: grid;
	 grid-template-columns: repeat(4, minmax(0, 1fr));
	 gap: 14px;
	 max-width: 920px;
	 margin: 0 auto;
}
 .product-gallery .product-card {
	 position: relative;
	 border-radius: 14px;
	 overflow: hidden;
	 background: #ddd;
	 box-shadow: var(--vy-shadow-soft);
	 aspect-ratio: 0.62;
	 transform: translateZ(0);
	 isolation: isolate;
}
 .product-gallery .product-card img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
	 transition: transform 0.5s ease, filter 0.35s ease;
}
 .product-gallery .product-card::after {
	 content: "";
	 position: absolute;
	 inset: 0;
	 background: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, .68) 100%);
	 opacity: 0;
	 transition: opacity 0.35s ease;
	 z-index: 1;
}
 .product-gallery .product-card__overlay {
	 position: absolute;
	 left: 12px;
	 right: 12px;
	 bottom: 12px;
	 z-index: 2;
	 background: rgba(255, 255, 255, .94);
	 backdrop-filter: blur(8px);
	 border-radius: 16px;
	 padding: 14px 12px 12px;
	 text-align: center;
	 opacity: 0;
	 transform: translateY(16px);
	 transition: opacity 0.35s ease, transform 0.35s ease;
	 box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
}
 .product-gallery .product-card__name {
	 font-size: 15px;
	 line-height: 1.25;
	 color: #2c2c2c;
	 font-weight: 700;
	 margin: 0 0 10px;
}
 .product-gallery .product-card__cta {
	 display: inline-flex;
	 align-items: center;
	 justify-content: center;
	 width: 34px;
	 height: 34px;
	 border-radius: 50%;
	 background: var(--c1);
	 color: #fff;
	 font-size: 14px;
	 box-shadow: 0 8px 18px rgba(234, 35, 49, .28);
	 transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
 .product-gallery .product-card:hover img, .product-gallery .product-card:focus img {
	 transform: scale(1.06);
	 filter: saturate(1.05);
}
 .product-gallery .product-card:hover::after, .product-gallery .product-card:focus::after, .product-gallery .product-card.is-active::after {
	 opacity: 1;
}
 .product-gallery .product-card:hover .product-card__overlay, .product-gallery .product-card:focus .product-card__overlay, .product-gallery .product-card.is-active .product-card__overlay {
	 opacity: 1;
	 transform: translateY(0);
}
 .product-gallery .product-card:hover .product-card__cta, .product-gallery .product-card:focus .product-card__cta, .product-gallery .product-card.is-active .product-card__cta {
	 transform: translateY(-1px);
	 box-shadow: 0 10px 22px rgba(234, 35, 49, .34);
}
 .product-gallery .options-section {
	 padding: 78px 0 86px;
	 background: #fff;
}
 .product-gallery .options-title {
	 font-size: clamp(2rem, 2.8vw, 3.1rem);
	 line-height: 1.08;
	 letter-spacing: -0.04em;
	 font-weight: 400;
	 margin: 0 0 34px;
	 text-align: center;
}
 .product-gallery .options-title em {
	 color: var(--c1);
	 font-style: italic;
	 font-weight: 700;
}
 .product-gallery .options-grid {
	 display: grid;
	 grid-template-columns: repeat(3, minmax(0, 1fr));
	 gap: 26px;
	 max-width: 920px;
	 margin: 0 auto;
}
 .product-gallery .option-link {
	 text-align: center;
	 color: var(--c2);
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: flex-start;
	 gap: 16px;
	 transition: transform 0.25s ease;
}
 .product-gallery .option-link:hover {
	 transform: translateY(-3px);
	 color: var(--c1);
}
 .product-gallery .option-link__label {
	 font-size: clamp(1.35rem, 2vw, 1.7rem);
	 line-height: 1.2;
	 font-weight: 400;
	 letter-spacing: -0.03em;
}
 .product-gallery .circle-link {
	 background: #101010;
	 color: #fff;
	 box-shadow: 0 10px 18px rgba(0, 0, 0, .16);
	 border-radius: 50px;
	 padding: 10px 11px 6px 11px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 font-size: 16px;
}
 .product-gallery .circle-link.is-accent {
	 background: var(--c1);
	 box-shadow: 0 10px 22px rgba(234, 35, 49, .30);
}
 .product-gallery .option-link:hover .circle-link {
	 transform: translateY(-2px) scale(1.04);
	 background: var(--c1);
	 color: #fff;
	 box-shadow: 0 12px 24px rgba(234, 35, 49, .30);
}
 .product-gallery .site-footer {
	 background: var(--vy-bg);
	 padding: 54px 0 40px;
}
 .product-gallery .footer-top {
	 display: grid;
	 grid-template-columns: 1.15fr 1fr 1fr 1fr 1fr;
	 gap: 28px;
	 align-items: start;
}
 .product-gallery .footer-title {
	 font-size: 16px;
	 font-weight: 800;
	 margin-bottom: 16px;
	 color: #1d1d1d;
}
 .product-gallery .newsletter-form .form-control {
	 height: 44px;
	 border-radius: 999px;
	 border: 1.5px solid rgba(0, 0, 0, .16);
	 background: transparent;
	 padding: 0 16px;
	 font-size: 14px;
	 color: #222;
	 box-shadow: none;
}
 .product-gallery .newsletter-form .form-control:focus {
	 border-color: var(--c1);
	 box-shadow: 0 0 0 0.2rem rgba(234, 35, 49, .12);
}
 .product-gallery .btn-subscribe {
	 min-width: 122px;
	 height: 42px;
	 border: none;
	 border-radius: 999px;
	 background: #111;
	 color: #fff;
	 font-size: 14px;
	 font-weight: 700;
	 padding: 0 18px;
	 margin-top: 12px;
	 transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
 .product-gallery .btn-subscribe:hover {
	 background: var(--c1);
	 transform: translateY(-2px);
	 box-shadow: 0 12px 22px rgba(234, 35, 49, .24);
}
 .product-gallery .footer-note {
	 font-size: 15px;
	 line-height: 1.5;
	 color: #424242;
	 margin-top: 14px;
	 font-style: italic;
}
 .product-gallery .footer-links {
	 list-style: none;
	 margin: 0;
	 padding: 0;
	 display: grid;
	 gap: 10px;
}
 .product-gallery .footer-links a {
	 font-size: 14px;
	 line-height: 1.45;
	 color: #1f1f1f;
	 transition: color 0.25s ease, transform 0.25s ease;
	 display: inline-block;
}
 .product-gallery .footer-links a:hover {
	 color: var(--c1);
	 transform: translateX(2px);
}
 .product-gallery .footer-contact-row {
	 display: grid;
	 grid-template-columns: 1fr 2fr auto;
	 gap: 18px;
	 margin-top: 34px;
	 margin-bottom: 16px;
	 align-items: end;
}
 .product-gallery .footer-contact-label {
	 font-size: 13px;
	 font-weight: 800;
	 color: #1f1f1f;
	 text-transform: none;
	 margin-bottom: 6px;
}
 .product-gallery .footer-contact-value, .product-gallery .footer-contact-value a {
	 font-size: 14px;
	 line-height: 1.5;
	 color: #272727;
}
 .product-gallery .footer-bottom {
	 background: var(--c1);
	 border-radius: 8px;
	 padding: 16px 18px;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 gap: 16px;
}
 .product-gallery .footer-bottom .footer-logo {
	 max-height: 38px;
	 width: auto;
}
 .product-gallery .footer-bottom__copy {
	 color: #fff;
	 font-size: 13px;
	 line-height: 1.4;
	 font-weight: 600;
	 margin: 0;
	 text-align: right;
}
 @media (max-width: 1199.98px) {
	 .product-gallery .navbar-nav {
		 gap: 14px;
	}
	 .product-gallery .hero-section {
		 min-height: 390px;
	}
	 .product-gallery .product-grid {
		 max-width: 860px;
	}
	 .product-gallery .footer-top {
		 grid-template-columns: 1.2fr 1fr 1fr 1fr;
	}
	 .product-gallery .footer-top > :last-child {
		 grid-column: 2 / span 3;
	}
	 .product-gallery .footer-contact-row {
		 grid-template-columns: 1fr 1.4fr 1fr;
	}
}
 @media (max-width: 991.98px) {
	 .product-gallery .intro-section {
		 padding: 72px 0 80px;
	}
	 .product-gallery .product-grid {
		 grid-template-columns: repeat(4, minmax(0, 1fr));
		 gap: 12px;
	}
	 .product-gallery .options-grid {
		 gap: 18px;
	}
}
 @media (max-width: 767.98px) {
	 .product-gallery .container-boxed {
		 padding-left: 20px;
		 padding-right: 20px;
	}
	 .product-gallery .intro-section {
		 padding: 58px 0 64px;
	}
	 .product-gallery .section-title, .product-gallery .options-title {
		 letter-spacing: -0.03em;
	}
	 .product-gallery .section-copy, .product-gallery .section-copy-secondary {
		 font-size: 14px;
		 line-height: 1.72;
	}
	 .product-gallery .section-mini-note {
		 margin-bottom: 28px;
	}
	 .product-gallery .product-grid {
		 grid-template-columns: repeat(2, minmax(0, 1fr));
		 gap: 12px;
	}
	 .product-gallery .product-card {
		 border-radius: 12px;
	}
	 .product-gallery .product-card__overlay {
		 left: 8px;
		 right: 8px;
		 bottom: 8px;
		 padding: 12px 10px 10px;
	}
	 .product-gallery .product-card__name {
		 font-size: 14px;
	}
	 .product-gallery .options-section {
		 padding: 58px 0 62px;
	}
	 .product-gallery .options-grid {
		 grid-template-columns: 1fr;
		 gap: 24px;
	}
	 .product-gallery .option-link {
		 padding: 10px 0;
	}
	 .product-gallery .footer-top {
		 grid-template-columns: 1fr;
		 gap: 22px;
	}
	 .product-gallery .site-footer {
		 padding: 44px 0 28px;
	}
}
 @media (max-width: 479.98px) {
	 .product-gallery .product-grid {
		 gap: 10px;
	}
	 .product-gallery .product-card__overlay {
		 border-radius: 14px;
	}
	 .product-gallery .circle-link, .product-gallery .nav-contact__dot, .product-gallery .product-card__cta {
		 width: 32px;
		 height: 32px;
	}
}
 