@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
--clr-paper: #FAF9F6;
--clr-cotton: #FFFFFF;
--clr-thread-blue: #4A6FA5;
--clr-thread-gold: #D3A45C;
--clr-charcoal: #2E2E2E;
--clr-soft-gray: #E7E7E7;
--clr-shadow: rgba(0,0,0,0.06);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Inter', sans-serif;
color: var(--clr-charcoal);
background: var(--clr-paper);
line-height: 1.7;
overflow-x: hidden;
}

body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: 
radial-gradient(circle at 20% 50%, transparent 0%, rgba(74,111,165,0.015) 50%, transparent 100%),
radial-gradient(circle at 80% 80%, transparent 0%, rgba(211,164,92,0.015) 50%, transparent 100%);
pointer-events: none;
z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Fraunces', serif;
font-weight: 600;
line-height: 1.2;
color: var(--clr-charcoal);
}

h1 {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 700;
}

h2 {
font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
font-size: clamp(1.5rem, 3vw, 2rem);
}

img {
max-width: 100%;
height: auto;
display: block;
}

a {
text-decoration: none;
color: inherit;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.dotted-separator {
width: 100%;
height: 2px;
background-image: repeating-linear-gradient(
90deg,
var(--clr-thread-blue),
var(--clr-thread-blue) 8px,
transparent 8px,
transparent 16px
);
margin: 60px 0;
opacity: 0.3;
}

.diagonal-cut {
position: relative;
}

.diagonal-cut::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 100%;
height: 80px;
background: var(--clr-paper);
clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}

.stitched-card {
position: relative;
background: var(--clr-cotton);
border: 2px dashed var(--clr-soft-gray);
padding: 30px;
box-shadow: 0 4px 20px var(--clr-shadow);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stitched-card::before {
content: '';
position: absolute;
top: -6px;
left: -6px;
right: -6px;
bottom: -6px;
border: 1px solid var(--clr-soft-gray);
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
}

.stitched-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px var(--clr-shadow);
}

.stitched-card:hover::before {
opacity: 1;
}

.btn {
display: inline-block;
padding: 16px 40px;
background: var(--clr-thread-blue);
color: var(--clr-cotton);
font-family: 'Inter', sans-serif;
font-weight: 600;
font-size: 16px;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 2px 8px var(--clr-shadow);
}

.btn::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: var(--clr-thread-gold);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
width: 300px;
height: 300px;
}

.btn span {
position: relative;
z-index: 1;
}

.btn:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px var(--clr-shadow);
}

.btn-secondary {
background: var(--clr-thread-gold);
}

header {
background: var(--clr-cotton);
box-shadow: 0 2px 20px var(--clr-shadow);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px dashed var(--clr-soft-gray);
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
position: relative;
}

.logo {
font-family: 'Fraunces', serif;
font-size: 24px;
font-weight: 700;
color: var(--clr-thread-blue);
letter-spacing: -0.5px;
}

.logo a {
color: inherit;
text-decoration: none;
transition: opacity 0.3s ease;
}

.logo a:hover {
opacity: 0.8;
}

nav ul {
list-style: none;
display: flex;
gap: 40px;
align-items: center;
}

nav a {
font-weight: 500;
position: relative;
padding-bottom: 4px;
transition: color 0.3s ease;
}

nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: repeating-linear-gradient(
90deg,
var(--clr-thread-blue),
var(--clr-thread-blue) 4px,
transparent 4px,
transparent 8px
);
transition: width 0.3s ease;
}

nav a:hover {
color: var(--clr-thread-blue);
}

nav a:hover::after {
width: 100%;
}

.burger {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
padding: 10px;
}

.burger span {
width: 28px;
height: 2px;
background: var(--clr-charcoal);
transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
opacity: 0;
}

.burger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
min-height: 85vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, var(--clr-cotton) 0%, var(--clr-paper) 100%);
}

.hero::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(74,111,165,0.08) 0%, transparent 70%);
border-radius: 50%;
animation: float 20s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
50% { transform: translate(-50px, 50px) rotate(5deg); }
}

.hero-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
padding: 80px 0;
position: relative;
z-index: 1;
}

.hero-text h1 {
margin-bottom: 24px;
animation: slideInLeft 0.8s ease-out;
}

.hero-text p {
font-size: 20px;
margin-bottom: 32px;
color: var(--clr-charcoal);
opacity: 0.8;
animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-buttons {
display: flex;
gap: 20px;
flex-wrap: wrap;
animation: slideInLeft 0.8s ease-out 0.4s both;
}

@keyframes slideInLeft {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.hero-image {
position: relative;
animation: slideInRight 0.8s ease-out 0.3s both;
}

@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

.hero-image img {
width: 100%;
border: 3px dashed var(--clr-soft-gray);
box-shadow: 0 20px 60px var(--clr-shadow);
position: relative;
}

.hero-image::before {
content: '';
position: absolute;
top: -20px;
left: -20px;
right: 20px;
bottom: 20px;
border: 1px solid var(--clr-thread-gold);
opacity: 0.3;
z-index: -1;
}

.section {
padding: 100px 0;
position: relative;
}

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

.section-header h2 {
margin-bottom: 16px;
}

.section-header p {
font-size: 18px;
color: var(--clr-charcoal);
opacity: 0.7;
max-width: 700px;
margin: 0 auto;
}

.grid-3 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}

.feature-card {
text-align: center;
padding: 40px 30px;
background: var(--clr-cotton);
border: 2px dashed var(--clr-soft-gray);
transition: all 0.4s ease;
position: relative;
}

.feature-card::after {
content: '';
position: absolute;
top: -4px;
left: -4px;
right: -4px;
bottom: -4px;
background: linear-gradient(135deg, var(--clr-thread-blue), var(--clr-thread-gold));
opacity: 0;
z-index: -1;
transition: opacity 0.4s ease;
}

.feature-card:hover {
transform: translateY(-8px);
border-color: transparent;
}

.feature-card:hover::after {
opacity: 0.15;
}

.feature-icon {
width: 60px;
height: 60px;
margin: 0 auto 24px;
display: flex;
align-items: center;
justify-content: center;
background: var(--clr-paper);
border-radius: 50%;
color: var(--clr-thread-blue);
}

.feature-card h3 {
margin-bottom: 16px;
font-size: 24px;
}

.feature-card p {
opacity: 0.8;
line-height: 1.8;
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 32px;
margin-top: 40px;
}

.product-card {
background: var(--clr-cotton);
border: 2px dashed var(--clr-soft-gray);
overflow: hidden;
transition: all 0.3s ease;
position: relative;
}

.product-card::before {
content: '';
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
border: 1px solid var(--clr-thread-gold);
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
z-index: 1;
}

.product-card:hover::before {
opacity: 0.5;
}

.product-image {
aspect-ratio: 4/3;
overflow: hidden;
position: relative;
background: var(--clr-paper);
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

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

.product-info {
padding: 24px;
}

.product-info h3 {
font-size: 20px;
margin-bottom: 8px;
}

.product-price {
font-family: 'Fraunces', serif;
font-size: 24px;
font-weight: 600;
color: var(--clr-thread-blue);
margin-bottom: 12px;
}

.product-info p {
font-size: 14px;
opacity: 0.7;
margin-bottom: 16px;
}

.category-filters {
display: flex;
justify-content: center;
gap: 16px;
margin-bottom: 50px;
flex-wrap: wrap;
}

.filter-btn {
padding: 12px 28px;
background: var(--clr-cotton);
border: 2px solid var(--clr-soft-gray);
color: var(--clr-charcoal);
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
background: var(--clr-thread-blue);
color: var(--clr-cotton);
border-color: var(--clr-thread-blue);
}

.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}

.gallery-item {
position: relative;
overflow: hidden;
cursor: pointer;
aspect-ratio: 1;
background: var(--clr-paper);
border: 2px dashed var(--clr-soft-gray);
}

.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(74,111,165,0.9), transparent);
display: flex;
align-items: flex-end;
padding: 24px;
opacity: 0;
transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
opacity: 1;
}

.gallery-overlay p {
color: var(--clr-cotton);
font-weight: 500;
}

.modal {
display: none;
position: fixed;
inset: 0;
background: rgba(0,0,0,0.95);
z-index: 9999;
padding: 40px;
overflow: auto;
}

.modal.active {
display: flex;
align-items: center;
justify-content: center;
}

.modal-content {
max-width: 1000px;
max-height: 90vh;
position: relative;
animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}

.modal-content img {
width: 100%;
height: auto;
border: 4px solid var(--clr-cotton);
}

.modal-close {
position: absolute;
top: -40px;
right: 0;
background: var(--clr-cotton);
color: var(--clr-charcoal);
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 24px;
border: none;
}

.materials-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}

.material-item {
padding: 30px;
background: var(--clr-cotton);
border-left: 4px solid var(--clr-thread-blue);
box-shadow: 0 4px 15px var(--clr-shadow);
}

.material-item h3 {
margin-bottom: 12px;
color: var(--clr-thread-blue);
display: flex;
align-items: center;
gap: 12px;
}

.material-item ul {
list-style: none;
margin-top: 16px;
}

.material-item li {
padding: 8px 0;
padding-left: 20px;
position: relative;
}

.material-item li::before {
content: '•';
position: absolute;
left: 0;
color: var(--clr-thread-gold);
font-size: 20px;
}

.kit-card {
background: var(--clr-cotton);
padding: 40px;
margin-bottom: 40px;
border: 2px dashed var(--clr-soft-gray);
display: grid;
grid-template-columns: 200px 1fr;
gap: 40px;
align-items: center;
}

.kit-image {
width: 200px;
height: 200px;
border: 2px solid var(--clr-soft-gray);
overflow: hidden;
}

.kit-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.kit-info h3 {
margin-bottom: 16px;
font-size: 28px;
}

.kit-info p {
margin-bottom: 16px;
opacity: 0.8;
}

.kit-price {
font-family: 'Fraunces', serif;
font-size: 32px;
font-weight: 600;
color: var(--clr-thread-blue);
margin-bottom: 20px;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin: 50px 0;
}

.step-card {
text-align: center;
padding: 30px;
background: var(--clr-paper);
position: relative;
}

.step-number {
width: 50px;
height: 50px;
background: var(--clr-thread-blue);
color: var(--clr-cotton);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Fraunces', serif;
font-size: 24px;
font-weight: 700;
margin: 0 auto 20px;
}

.step-card h3 {
margin-bottom: 12px;
font-size: 20px;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-top: 50px;
}

.contact-form {
background: var(--clr-cotton);
padding: 50px;
border: 2px dashed var(--clr-soft-gray);
}

.form-group {
margin-bottom: 24px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: 600;
color: var(--clr-charcoal);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 14px;
border: 2px solid var(--clr-soft-gray);
background: var(--clr-paper);
font-family: 'Inter', sans-serif;
font-size: 16px;
transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--clr-thread-blue);
}

.form-group textarea {
resize: vertical;
min-height: 150px;
}

.checkbox-group {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
width: 20px;
height: 20px;
margin-top: 2px;
cursor: pointer;
}

.checkbox-group label {
flex: 1;
font-size: 14px;
cursor: pointer;
}

.error {
color: #d32f2f;
font-size: 14px;
margin-top: 4px;
display: none;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 30px;
}

.info-card {
padding: 30px;
background: var(--clr-cotton);
border-left: 4px solid var(--clr-thread-gold);
box-shadow: 0 4px 15px var(--clr-shadow);
}

.info-card h3 {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
color: var(--clr-thread-blue);
}

.info-card p {
opacity: 0.8;
line-height: 1.8;
}

.map-container {
grid-column: 1 / -1;
margin-top: 40px;
}

.map-container iframe {
width: 100%;
height: 400px;
border: 2px dashed var(--clr-soft-gray);
}

.thanks-container {
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 60px 20px;
}

.thanks-content {
max-width: 600px;
background: var(--clr-cotton);
padding: 60px;
border: 2px dashed var(--clr-soft-gray);
position: relative;
}

.thanks-content::before {
content: '';
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
border: 1px solid var(--clr-thread-gold);
opacity: 0.3;
}

.thanks-icon {
width: 80px;
height: 80px;
background: var(--clr-thread-blue);
color: var(--clr-cotton);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 24px;
}

.thanks-content h1 {
margin-bottom: 20px;
}

.thanks-content p {
font-size: 18px;
margin-bottom: 32px;
opacity: 0.8;
}

.error-container {
min-height: 60vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 60px 20px;
}

.error-content {
max-width: 600px;
}

.error-icon {
width: 100px;
height: 100px;
background: var(--clr-paper);
border: 3px dashed var(--clr-thread-blue);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
color: var(--clr-thread-blue);
}

.error-content h1 {
margin-bottom: 16px;
font-size: 72px;
color: var(--clr-thread-blue);
}

.error-content h2 {
margin-bottom: 20px;
}

.error-content p {
font-size: 18px;
margin-bottom: 32px;
opacity: 0.7;
}

footer {
background: var(--clr-charcoal);
color: var(--clr-cotton);
padding: 60px 0 30px;
margin-top: 100px;
border-top: 4px solid var(--clr-thread-blue);
}

.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 40px;
margin-bottom: 40px;
}

.footer-about h3 {
color: var(--clr-thread-gold);
margin-bottom: 16px;
}

.footer-about h3 a {
color: inherit;
text-decoration: none;
transition: opacity 0.3s ease;
}

.footer-about h3 a:hover {
opacity: 0.8;
}

.footer-about p {
opacity: 0.8;
line-height: 1.8;
}

.footer-links h4 {
color: var(--clr-cotton);
margin-bottom: 16px;
font-family: 'Fraunces', serif;
}

.footer-links ul {
list-style: none;
}

.footer-links li {
margin-bottom: 10px;
}

.footer-links a {
opacity: 0.8;
transition: all 0.3s ease;
display: inline-block;
}

.footer-links a:hover {
opacity: 1;
color: var(--clr-thread-gold);
transform: translateX(5px);
}

.footer-contact p {
opacity: 0.8;
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px dashed rgba(255,255,255,0.1);
opacity: 0.7;
}

.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
opacity: 1;
transform: translateY(0);
}

@media (max-width: 992px) {
nav ul {
position: fixed;
top: 80px;
left: -100%;
width: 100%;
height: calc(100vh - 80px);
background: var(--clr-cotton);
flex-direction: column;
padding: 40px;
box-shadow: 0 4px 20px var(--clr-shadow);
transition: left 0.3s ease;
justify-content: flex-start;
}

nav ul.active {
left: 0;
}

.burger {
display: flex;
}
}

@media (max-width: 768px) {
nav ul {
top: 80px;
height: calc(100vh - 80px);
}

.hero-content {
grid-template-columns: 1fr;
}

.hero-image {
order: -1;
}

.footer-content {
grid-template-columns: 1fr 1fr;
}

.contact-wrapper {
grid-template-columns: 1fr;
}

.kit-card {
grid-template-columns: 1fr;
text-align: center;
}

.kit-image {
margin: 0 auto;
}
}

@media (max-width: 768px) {
.section {
padding: 60px 0;
}

h1 {
font-size: 2.5rem;
}

h2 {
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

.hero {
min-height: 70vh;
}

.hero-content {
padding: 60px 0;
gap: 40px;
}

.hero-text p {
font-size: 18px;
}

.hero-buttons {
flex-direction: column;
gap: 16px;
}

.btn {
width: 100%;
text-align: center;
}

.grid-3 {
grid-template-columns: 1fr;
gap: 30px;
}

.product-grid {
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 24px;
}

.gallery-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}

.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}

.contact-form {
padding: 30px;
}

.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.kit-card {
grid-template-columns: 1fr;
text-align: center;
gap: 30px;
}

.kit-image {
margin: 0 auto;
}

.materials-list {
grid-template-columns: 1fr;
gap: 24px;
}

.steps-grid {
grid-template-columns: 1fr;
gap: 24px;
}

.stitched-card {
padding: 24px;
}

.section-header {
margin-bottom: 40px;
}

.section-header p {
font-size: 16px;
}

[style*="grid-template-columns: 2fr 1fr"],
[style*="grid-template-columns: 1fr 1fr"],
[style*="grid-template-columns: 1fr 1.5fr"],
[style*="grid-template-columns: 1.2fr 1fr"],
[style*="grid-template-columns: 1.5fr 1fr"] {
grid-template-columns: 1fr !important;
}

[style*="grid-template-columns: repeat(3, 1fr)"],
[style*="grid-template-columns: repeat(4, 1fr)"] {
grid-template-columns: repeat(2, 1fr) !important;
}
}

@media (max-width: 480px) {
.container {
padding: 0 16px;
}

.header-content {
padding: 16px 0;
}

.logo {
font-size: 20px;
}

h1 {
font-size: 2rem;
}

h2 {
font-size: 1.75rem;
}

.hero-text p {
font-size: 16px;
}

.btn {
padding: 14px 32px;
font-size: 15px;
}

.section {
padding: 50px 0;
}

.section-header {
margin-bottom: 40px;
}

.feature-card {
padding: 30px 20px;
}

.product-grid {
grid-template-columns: 1fr;
}

.contact-form {
padding: 24px;
}

.thanks-content {
padding: 40px 24px;
}

.modal {
padding: 20px;
}
}

@media (max-width: 320px) {
.container {
padding: 0 12px;
}

.logo {
font-size: 16px;
}

.header-content {
padding: 12px 0;
}

nav ul {
top: 60px;
height: calc(100vh - 60px);
gap: 20px;
padding: 30px 20px;
}

h1 {
font-size: 1.75rem;
}

h2 {
font-size: 1.5rem;
}

h3 {
font-size: 1.25rem;
}

h4 {
font-size: 1rem;
}

.hero {
min-height: 60vh;
}

.hero-content {
padding: 40px 0;
gap: 30px;
}

.hero-text p {
font-size: 14px;
}

.hero-buttons {
flex-direction: column;
gap: 12px;
}

.btn {
padding: 12px 20px;
font-size: 14px;
width: 100%;
max-width: 100%;
box-sizing: border-box;
display: block;
margin-left: 0 !important;
margin-right: 0 !important;
}

.btn-secondary {
width: 100%;
max-width: 100%;
display: block;
margin-left: 0 !important;
margin-top: 12px;
}

[style*="display: flex"][style*="justify-content: center"] {
flex-direction: column !important;
align-items: stretch !important;
}

[style*="display: flex"][style*="gap: 20px"] .btn,
[style*="display: flex"][style*="gap: 16px"] .btn {
width: 100%;
margin: 0 !important;
}

.section {
padding: 40px 0;
}

.section-header {
margin-bottom: 30px;
}

.section-header p {
font-size: 14px;
}

.feature-card {
padding: 24px 16px;
}

.product-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.gallery-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.contact-form {
padding: 20px;
}

.stitched-card {
padding: 20px;
}

.kit-card {
padding: 24px;
gap: 20px;
}

.materials-list {
gap: 20px;
}

.material-item {
padding: 20px;
}

.info-card {
padding: 20px;
}

.footer-content {
gap: 24px;
}

.footer-about p {
font-size: 14px;
}

[style*="grid-template-columns: repeat(2, 1fr)"],
[style*="grid-template-columns: repeat(3, 1fr)"],
[style*="grid-template-columns: repeat(4, 1fr)"] {
grid-template-columns: 1fr !important;
gap: 20px !important;
}

[style*="grid-template-columns: 2fr 1fr"],
[style*="grid-template-columns: 1fr 1fr"],
[style*="grid-template-columns: 1fr 1.5fr"],
[style*="grid-template-columns: 1.2fr 1fr"],
[style*="grid-template-columns: 1.5fr 1fr"],
[style*="grid-template-columns: 1fr 1fr"] {
grid-template-columns: 1fr !important;
gap: 30px !important;
}

[style*="display: flex"] {
flex-wrap: wrap !important;
}

[style*="gap: 60px"],
[style*="gap: 50px"] {
gap: 30px !important;
}

[style*="gap: 40px"] {
gap: 24px !important;
}

[style*="gap: 30px"] {
gap: 20px !important;
}

[style*="gap: 20px"] {
gap: 16px !important;
}

[style*="max-width: 900px"],
[style*="max-width: 800px"],
[style*="max-width: 1000px"] {
max-width: 100% !important;
}

[style*="width: 100%"] {
width: 100% !important;
box-sizing: border-box;
}

[style*="width: 120px"],
[style*="width: 100px"],
[style*="width: 80px"],
[style*="width: 60px"],
[style*="width: 50px"] {
max-width: 100% !important;
}

[style*="min-width: 150px"],
[style*="min-width: 200px"] {
min-width: 100% !important;
}

[style*="padding: 40px"],
[style*="padding: 50px"],
[style*="padding: 60px"] {
padding: 24px !important;
}

[style*="padding: 30px"] {
padding: 20px !important;
}

[style*="margin-bottom: 40px"] {
margin-bottom: 24px !important;
}

[style*="margin-bottom: 32px"] {
margin-bottom: 20px !important;
}

[style*="font-size: 18px"] {
font-size: 16px !important;
}

[style*="font-size: 20px"] {
font-size: 18px !important;
}

[style*="font-size: 24px"] {
font-size: 20px !important;
}

[style*="font-size: 28px"] {
font-size: 22px !important;
}

[style*="font-size: 36px"] {
font-size: 24px !important;
}

[style*="font-size: 48px"] {
font-size: 32px !important;
}

img[style*="width: 500px"],
img[style*="width: 450px"],
img[style*="width: 400px"],
img[style*="width: 600px"] {
width: 100% !important;
max-width: 100% !important;
height: auto !important;
}

[style*="transform: rotate"] {
transform: none !important;
}

[style*="position: absolute"][style*="bottom: -20px"] {
position: relative !important;
bottom: auto !important;
right: auto !important;
margin-top: 20px !important;
width: 80px !important;
height: 80px !important;
}

.hero-buttons .btn,
.hero-buttons .btn-secondary {
width: 100%;
margin: 0;
}

[style*="display: inline-block"] {
display: block !important;
width: 100% !important;
}

[style*="text-align: center"] .btn {
margin: 0 auto;
}

[style*="flex-wrap: wrap"] {
flex-direction: column !important;
}

[style*="min-width: 40px"],
[style*="min-width: 50px"] {
min-width: 35px !important;
}

[style*="width: 50px"],
[style*="width: 60px"],
[style*="width: 80px"] {
width: 40px !important;
height: 40px !important;
font-size: 14px !important;
}

[style*="width: 120px"] {
width: 60px !important;
height: 60px !important;
}

.contact-wrapper {
flex-direction: column;
}

.contact-info {
width: 100%;
}

.map-container {
width: 100%;
overflow: hidden;
}

.thanks-content,
.error-content {
padding: 24px 16px !important;
width: 100%;
box-sizing: border-box;
}

.thanks-content img,
.error-content img {
max-width: 100%;
height: auto;
}

.steps-grid {
grid-template-columns: 1fr !important;
}

.category-filters {
flex-direction: column;
width: 100%;
}

.filter-btn {
width: 100%;
margin-bottom: 12px;
}

.kit-card {
flex-direction: column;
}

.kit-image {
width: 100% !important;
max-width: 200px;
margin: 0 auto;
}

.material-item {
width: 100%;
box-sizing: border-box;
}

.info-card {
width: 100%;
box-sizing: border-box;
}

.info-card img {
max-width: 100%;
height: auto;
}

.product-card {
width: 100%;
box-sizing: border-box;
}

.gallery-item {
width: 100%;
box-sizing: border-box;
}

.feature-card {
width: 100%;
box-sizing: border-box;
}

* {
max-width: 100%;
box-sizing: border-box;
}

img {
max-width: 100%;
height: auto;
}

svg {
max-width: 100%;
height: auto;
}

[style*="width: 48px"][style*="height: 48px"] svg,
svg[width="48"][height="48"] {
width: 32px !important;
height: 32px !important;
}

[style*="width: 40px"][style*="height: 40px"] svg,
svg[width="40"][height="40"] {
width: 28px !important;
height: 28px !important;
}

[style*="width: 32px"][style*="height: 32px"] svg,
svg[width="32"][height="32"] {
width: 24px !important;
height: 24px !important;
}

[style*="width: 24px"][style*="height: 24px"] svg,
svg[width="24"][height="24"] {
width: 20px !important;
height: 20px !important;
}

[style*="width: 64px"][style*="height: 64px"] svg,
svg[width="64"][height="64"] {
width: 40px !important;
height: 40px !important;
}

[style*="flex: 1"] {
flex: 1 1 100% !important;
min-width: 100% !important;
}

[style*="text-align: left"] {
text-align: center !important;
}

[style*="text-align: left"][style*="grid-template-columns"] {
text-align: left !important;
}

table {
width: 100%;
display: block;
overflow-x: auto;
}

iframe {
max-width: 100%;
height: auto;
}
}
