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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #3d3d3d;
    background-color: #fff;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

header {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    text-align: center;
}

.intro-section {
    overflow: hidden;
}

.intro-section p {
    margin-bottom: 1rem;
}

.intro-section p:last-child {
    margin-bottom: 0;
}

.site-logo {
    width: 160px;
    height: auto;
    border-radius: 8px;
    float: right;
    margin: 0 0 1rem 1.5rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 0.25rem;
    letter-spacing: -0.025em;
}

.tagline {
    font-size: 1.1rem;
    color: #6b6b6b;
    font-style: italic;
    letter-spacing: -0.03em
}

main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.intro p {
    font-size: 1.05rem;
    color: #3d3d3d;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3d3d3d;
    margin-bottom: 0.5rem;
}

p {
    color: #3d3d3d;
}

ul {
    list-style: none;
    margin-top: 0.5rem;
}

ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.25rem;
    color: #3d3d3d;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a0aec0;
}

/* Product Card - Stitch Motif showcase */
.products-section .product-card {
    margin-bottom: 1.25rem;
}

.products-section .product-card:last-child {
    margin-bottom: 0;
}

.product-card {
    background: linear-gradient(135deg, #fefefe 0%, #fafafa 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #efefef;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 0.75rem;
}

.product-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #3d3d3d;
    margin: 0;
    line-height: 1.2;
}

.product-tagline {
    font-size: 0.8125rem;
    color: #6b6b6b;
    margin: 0.125rem 0 0;
    line-height: 1.3;
    font-weight: 500;
}

.product-desc {
    font-size: 0.95rem;
    color: #4d4d4d;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-cta {
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1098ad;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-cta:hover {
    color: #0c8599;
    text-decoration: none;
}

/* Product card with background image */
.product-card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.15);
}

.product-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    border-radius: inherit;
    pointer-events: none;
}

.product-card-overlay {
    position: relative;
    padding: 1.5rem;
    color: #fff;
}

.product-card-image .product-title h3 {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.product-card-image .product-tagline {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.product-card-image .product-desc {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.product-card-image .product-cta {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
}

.product-card-image .product-cta:hover {
    color: rgba(255, 255, 255, 0.85);
}

a {
    text-decoration: none;
    color: #3d3d3d;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

a:hover {
    color: #6b6b6b;
    text-decoration: underline;
}

footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

footer p {
    font-size: 0.875rem;
    color: #a0aec0;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    header {
        text-align: center;
    }
    
    .intro-section {
        text-align: center;
    }
    
    .site-logo {
        float: none;
        display: block;
        margin: 0 auto 1.5rem auto;
        width: 140px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.125rem;
    }
    
    .product-card {
        padding: 1.25rem;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-title {
        height: auto;
    }
}
