/* 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 - modern layout */
.product-page {
    padding: 2.5rem 1.25rem 5rem;
    background: linear-gradient(180deg, var(--card-background, #f8fafc) 0%, var(--background-color, #fff) 12rem);
}

.container--product {
    max-width: 1280px;
}

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

.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-sep {
    margin: 0 0.4rem;
}

.product-layout {
    display: block;
    max-width: 100%;
}

.product-main-content {
    background: var(--background-color, white);
    border-radius: 1.25rem;
    padding: 2.25rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color, #e5e7eb);
}

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

/* Product Gallery - large image, clickable for lightbox */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-main-image-wrapper {
    position: relative;
}

.product-main-image-container {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border-radius: 1rem;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    border: 1px solid var(--border-color, #e5e7eb);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.product-main-image-container--clickable {
    cursor: pointer;
    position: relative;
}

.product-main-image-container--clickable:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.product-main-image-container--clickable:hover .product-image-zoom-hint {
    opacity: 1;
}

.product-image-zoom-hint {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.product-image-zoom-hint svg {
    flex-shrink: 0;
}

.product-main-image {
    width: 100%;
    max-width: 100%;
    max-height: 560px;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: transform 0.3s ease;
}

.product-main-image-container--clickable:hover .product-main-image {
    transform: scale(1.02);
}

.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.5rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    line-height: 1.25;
    margin-bottom: 0;
}

.product-price-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 1.5rem;
    border-radius: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.product-price-tag {
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
}

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

button.btn-primary.btn-lg,
.btn-request-quote {
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

button.btn-primary.btn-lg:hover,
.btn-request-quote:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-request-quote svg {
    flex-shrink: 0;
}

.product-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card-background, #f9fafb);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color, #e5e7eb);
}

.product-meta-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9375rem;
    align-items: center;
}

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

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

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

.product-meta-value a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.product-short-description {
    padding: 1.25rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(249, 250, 251, 0.5));
    border-left: 3px solid var(--primary-color);
    border-radius: 0.5rem;
}

.product-short-description p {
    color: var(--text-color, #4b5563);
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.product-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-read-more:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.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;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

/* Product Description Section */
.product-description-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(to bottom right, #ffffff, #f9fafb);
    border-radius: 1rem;
    border: 1px solid var(--border-color, #e5e7eb);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    scroll-margin-top: 2rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.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 {
    cursor: pointer;
}

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

/* Request Quote Modal (AJAX-style overlay) */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-modal--open {
    opacity: 1;
    visibility: visible;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.product-modal-box {
    position: relative;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--background-color, #fff);
    border-radius: 1.25rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.product-modal--open .product-modal-box {
    transform: scale(1);
}

.product-modal-box--quote .lead-form-section {
    padding: 0;
    background: transparent;
}

.product-modal-box--quote .lead-form-section .container {
    max-width: none;
    padding: 0;
}

.product-modal-box--quote .lead-form-inner {
    max-width: none;
}

.product-modal-body {
    padding: 2rem 2rem 2.25rem;
}

.product-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    z-index: 1;
}

.product-modal-close:hover {
    color: #111827;
    background: #f3f4f6;
}

/* Image Lightbox (large size on click) */
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-lightbox--open {
    opacity: 1;
    visibility: visible;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.product-lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.product-lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    line-height: 1;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.product-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* 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-hero-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image-container {
        min-height: 400px;
    }
    
    .product-main-image {
        max-height: 440px;
    }
}

@media (max-width: 768px) {
    .product-modal-body,
    .product-main-content {
        padding: 1.5rem;
    }
    
    .product-main-content {
        padding: 1rem;
    }
    
    .product-main-image-container {
        padding: 5px;
        min-height: 300px;
    }
    
    .product-main-image {
        max-height: 350px;
        border-radius: 0.5rem;
    }
    
    .product-lightbox-content {
        padding: 0.5rem;
    }
    
    .product-lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price-tag {
        font-size: 1.75rem;
    }
    
    button.btn-primary.btn-lg,
    .btn-request-quote {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .btn-request-quote svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .product-main-image-container {
        padding: 5px;
        min-height: 250px;
    }
    
    .product-main-image {
        max-height: 300px;
    }
}

@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;
}

/* ========== New blocks: Features, Testimonials, Pricing, FAQ, Stats, Video, Newsletter ========== */

/* Features / Services Grid */
.features-section {
    padding: 80px 20px;
}

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

.features-grid {
    display: grid;
    gap: 2rem;
}

.features-cols-2 { grid-template-columns: repeat(2, 1fr); }
.features-cols-3 { grid-template-columns: repeat(3, 1fr); }
.features-cols-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
    background: var(--card-background, #f9fafb);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
}

.feature-icon-image {
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color, #111827);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
}

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

.testimonials-section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-inner {
    display: grid;
    gap: 2rem;
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.testimonials-carousel {
    grid-template-columns: 1fr;
}

.testimonial-card {
    background: var(--card-background, #f9fafb);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-star {
    color: #e5e7eb;
}

.testimonial-star.filled {
    color: #fbbf24;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: 600;
    color: #111827;
    font-style: normal;
    display: block;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Pricing Tables */
.pricing-section {
    padding: 80px 20px;
}

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

.pricing-section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-highlighted {
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.pricing-price-wrap {
    margin-bottom: 1rem;
}

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

.pricing-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color, #10b981);
    font-weight: bold;
}

.pricing-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.pricing-cta-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

/* FAQ / Accordion */
.faq-section {
    padding: 80px 20px;
}

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

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #111827;
    font-size: 1.05rem;
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #6b7280;
    line-height: 1.7;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Stats / Counters */
.stats-section {
    padding: 60px 20px;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
}

/* Video Embed */
.video-section {
    padding: 80px 20px;
}

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

.video-section-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

.video-embed-wrap {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--border-radius);
}

.video-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--card-background, #f3f4f6);
    border-radius: var(--border-radius);
    color: #6b7280;
}

.video-fallback {
    color: #6b7280;
    text-align: center;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 20px;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color, #111827);
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.newsletter-form-wrap {
    background: var(--card-background, #f9fafb);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-message {
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.newsletter-message-success {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
}

/* Responsive - new blocks */
@media (max-width: 768px) {
    .features-cols-2,
    .features-cols-3,
    .features-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* 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;
    }
}
