/* Default Template Styles - Generated Static Sites */

/* CSS variables are defined in theme.css */

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

body {
    font-family: var(--font-family), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.navbar-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 20px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Text Section */
.text-section {
    padding: 60px 20px;
}

.text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Image Section */
.image-section {
    padding: 60px 20px;
}

.image-block {
    max-width: 100%;
    margin: 0 auto;
}

.image-block img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.image-block figcaption {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Image + Content Section */
.image-content-section {
    padding: 80px 20px;
}

.image-content-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.image-content-inner.image-content-image-right .image-content-media {
    order: 2;
}

.image-content-inner.image-content-image-left .image-content-media {
    order: 1;
}

.image-content-inner.image-content-image-right .image-content-text {
    order: 1;
}

.image-content-inner.image-content-image-left .image-content-text {
    order: 2;
}

.image-content-media {
    flex: 1;
    min-width: 0;
}

.image-content-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.image-content-placeholder {
    aspect-ratio: 4/3;
    background: #e5e7eb;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
}

.image-content-text {
    flex: 1;
    min-width: 0;
}

.image-content-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.image-content-heading {
    font-size: 2.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.image-content-heading span.accent {
    color: var(--secondary-color);
}

.image-content-body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.image-content-body p {
    margin-bottom: 1rem;
}

.image-content-body p:last-child {
    margin-bottom: 0;
}

.image-content-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background 0.2s;
}

.image-content-cta:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .image-content-inner {
        flex-direction: column;
        gap: 2rem;
    }

    .image-content-inner.image-content-image-right .image-content-media,
    .image-content-inner.image-content-image-left .image-content-media,
    .image-content-inner.image-content-image-right .image-content-text,
    .image-content-inner.image-content-image-left .image-content-text {
        order: unset;
    }

    .image-content-heading {
        font-size: 1.75rem;
    }
}

/* Contact Block */
.contact-block-section {
    padding: 80px 20px;
}

.contact-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-block-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.contact-block-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-value:hover {
    color: var(--primary-color);
}

.contact-detail-address {
    white-space: pre-line;
}

.contact-form-wrap, .lead-form-wrap {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.contact-form-wrap:hover, .lead-form-wrap:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form-hp, .lead-form-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form .contact-form-row,
.lead-form .lead-form-row {
    margin-bottom: 1.25rem;
}

.contact-form .contact-form-row label,
.lead-form .lead-form-row label {
    display: block;
    font-size: var(--label-font-size, 0.9375rem);
    font-weight: var(--label-font-weight, 600);
    color: var(--label-color, #374151);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form select,
.contact-form textarea,
.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form input[type="number"],
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--input-border-color, #e5e7eb);
    border-radius: var(--input-border-radius, 8px);
    font-size: var(--input-font-size, 1rem);
    font-family: inherit;
    background-color: var(--input-bg-color, #ffffff);
    transition: all 0.2s ease;
    color: var(--input-color, #1f2937);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #fefefe;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form textarea,
.lead-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-submit,
.lead-form-submit {
    margin-top: 0.75rem;
    padding: 0.875rem 2rem;
    background: var(--button-bg-color, linear-gradient(135deg, var(--primary-color), var(--secondary-color)));
    color: var(--button-text-color, white);
    border: none;
    border-radius: var(--button-border-radius, 8px);
    font-size: var(--button-font-size, 1rem);
    font-weight: var(--button-font-weight, 600);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form-submit:hover:not(:disabled),
.lead-form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.contact-form-submit:active:not(:disabled),
.lead-form-submit:active:not(:disabled) {
    transform: translateY(0);
}

.contact-form-submit:disabled,
.lead-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-form-message,
.lead-form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-success,
.lead-form-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.contact-form-error,
.lead-form-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.contact-captcha-row input[type="text"],
.lead-captcha-row input[type="text"] {
    max-width: 5rem;
}

.contact-form-disabled,
.lead-form-disabled {
    color: #6b7280;
    font-style: italic;
    padding: 2rem;
    text-align: center;
}

.contact-form-checkbox,
.lead-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.contact-form-checkbox input[type="checkbox"],
.lead-form-checkbox input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Form styling variants */
.form-style-minimal .contact-form-wrap,
.form-style-minimal .lead-form-wrap {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.form-style-minimal input,
.form-style-minimal select,
.form-style-minimal textarea {
    border-radius: 4px;
    border-width: 1px;
}

.form-style-rounded .contact-form-wrap,
.form-style-rounded .lead-form-wrap {
    border-radius: 20px;
}

.form-style-rounded input,
.form-style-rounded select,
.form-style-rounded textarea,
.form-style-rounded button {
    border-radius: 12px;
}

@media (max-width: 768px) {
    .contact-block-inner {
        grid-template-columns: 1fr;
    }
}

/* Lead Form Section */
.lead-form-section {
    padding: 60px 20px;
}

.lead-form-inner {
    max-width: 600px;
    margin: 0 auto;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.lead-form-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    font-size: 1.25rem;
}

.product-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Category page */
.category-page {
    padding: 60px 20px 80px;
}

.category-header {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.category-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color, #9ca3af);
    margin-bottom: 0.5rem;
}

.category-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    margin-bottom: 0.75rem;
}

.category-description {
    font-size: 1.05rem;
    color: var(--text-color, #4b5563);
    line-height: 1.7;
}

.product-card-body {
    padding: 0.75rem 1rem 1rem;
}

.product-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.product-card-footer {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-view-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.product-view-link:hover {
    text-decoration: underline;
}

/* Product detail page */
.product-page {
    padding: 40px 20px 80px;
    background: var(--card-background, #fafafa);
}

.product-breadcrumb {
    font-size: 0.875rem;
    color: var(--text-color, #6b7280);
    margin-bottom: 2rem;
}

.product-breadcrumb a {
    color: var(--text-color, #4b5563);
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: var(--primary-color);
}

.product-breadcrumb span {
    margin: 0 0.4rem;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1.3fr);
    gap: 2rem;
    align-items: flex-start;
}

.product-main-content {
    background: var(--background-color, white);
    border-radius: var(--border-radius, 1rem);
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Product Gallery with thumbnails */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-image-container {
    background: var(--card-background, #f9fafb);
    border-radius: var(--border-radius, 1rem);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 1px solid var(--border-color, #e5e7eb);
}

.product-main-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0.5rem;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: var(--border-radius, 0.5rem);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--background-color, white);
    padding: 0;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnail:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.product-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.product-no-image {
    background: #f3f4f6;
}

.no-image-placeholder {
    text-align: center;
    color: #9ca3af;
}

.no-image-placeholder svg {
    width: 96px;
    height: 96px;
    margin: 0 auto 1rem;
    opacity: 0.5;
}

/* Product Summary Card */
.product-summary-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    line-height: 1.3;
}

.product-price-section {
    background: var(--card-background, #f9fafb);
    padding: 1.25rem;
    border-radius: var(--border-radius, 0.75rem);
    border-left: 4px solid var(--primary-color);
}

.product-price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-color, #6b7280);
    margin-bottom: 0.25rem;
}

.product-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color, #e5e7eb);
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.product-meta-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.product-meta-label {
    font-weight: 600;
    color: var(--text-color, #6b7280);
    min-width: 80px;
}

.product-meta-value {
    color: var(--text-color, #374151);
}

.product-meta-value a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.product-meta-value a:hover {
    text-decoration: underline;
}

.product-quick-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    border-radius: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Product Description Section */
.product-description-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color, #e5e7eb);
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    margin-bottom: 1.25rem;
}

.section-heading-center {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    margin-bottom: 2rem;
    text-align: center;
}

.product-description-content {
    color: var(--text-color, #4b5563);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.product-description-content p {
    margin-bottom: 1rem;
}

.product-description-content ul,
.product-description-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.product-description-content li {
    margin-bottom: 0.5rem;
}

/* Full Product Gallery */
.product-gallery-full {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color, #e5e7eb);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-item-full {
    background: var(--card-background, #f9fafb);
    border-radius: var(--border-radius, 0.75rem);
    padding: 1rem;
    border: 1px solid var(--border-color, #e5e7eb);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item-full img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Product Sidebar */
.product-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-sticky {
    background: var(--background-color, white);
    border-radius: var(--border-radius, 1rem);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.product-sidebar .lead-form-section {
    padding: 0;
    background: transparent;
}

.product-sidebar .lead-form-inner {
    max-width: none;
}

.product-sidebar .lead-form-wrap {
    box-shadow: none;
    border-radius: 0;
    padding: 1.75rem;
}

.product-sidebar .lead-form-header {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.product-sidebar .lead-form-title {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.product-sidebar .lead-form-subtitle {
    font-size: 0.9rem;
}

/* Related Products Section */
.related-products-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color, #e5e7eb);
}

.products-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.product-card-image-link {
    display: block;
}

.product-view-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}

.product-view-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive: Product page */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .product-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .product-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price-tag {
        font-size: 1.5rem;
    }
    
    .product-thumbnails {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
