/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #95a5a6;
    --text-color: #2c3e50;
    --text-light: #7f8c8d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 500;
}

.nav-link.active::after {
    width: 100%;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(to bottom, var(--bg-light), var(--bg-color));
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius);
}

.hero-intro p {
    margin-bottom: 1rem;
}

.hero-intro p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bg-color);
    margin-bottom: 1.5rem;
}

.hero-intro p:last-child {
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: var(--bg-color);
}

.hero-intro p {
    color: var(--bg-color);
}

.hero-headline {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.hero-subhead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-carousel-container {
    position: relative;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hero-carousel {
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.preview-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.preview-card img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
    color: var(--text-color);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-image-placeholder::after {
    content: '📄';
    font-size: 3rem;
    opacity: 0.3;
}

/* Category Filter */
.category-filter {
    padding: 2rem 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

/* Product Gallery */
.product-gallery {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-link {
    display: block;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-image-link:hover {
    opacity: 0.9;
}

.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background-color: var(--bg-light);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::after {
    content: '🖼️';
    font-size: 2.5rem;
    opacity: 0.3;
}

.product-info-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.product-info-link:hover {
    opacity: 0.9;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    flex-grow: 1;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image-container {
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

.about-text-content {
    text-align: left;
}

.about-text {
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-signature {
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-color);
}

/* Inquiry Form */
.inquiry-form-container {
    max-width: 700px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group textarea {
    padding: 0.6rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.thank-you-message {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.email-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 1.25rem; /* Reserve space to prevent layout shift */
    line-height: 1.25rem;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.form-group input.input-error,
.form-group textarea.input-error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* reCAPTCHA Styling */
.form-group .g-recaptcha {
    margin: 0.5rem 0;
    display: flex;
    justify-content: flex-start;
}

.recaptcha-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 1.25rem;
    line-height: 1.25rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.recaptcha-error.show {
    visibility: visible;
    opacity: 1;
}

/* Blog Post Page */
.blog-post {
    padding: 2rem 0 4rem;
    background-color: var(--bg-color);
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Header */
.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.blog-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: -1px;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.blog-date {
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.blog-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-tag {
    padding: 0.4rem 1rem;
    background-color: var(--bg-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Blog Carousel */
.blog-carousel-container {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    padding: 0 60px;
}

.blog-carousel {
    overflow: hidden;
    border-radius: var(--radius);
    width: 100%;
    position: relative;
}

.blog-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.blog-carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image-slide {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    padding: 1rem;
    box-sizing: border-box;
    min-height: 300px;
    position: relative;
}

.blog-image-slide .large-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image-slide .large-image-placeholder::after {
    content: '🖼️';
    font-size: 5rem;
    opacity: 0.3;
}

.blog-image {
    max-width: calc(100% - 2rem);
    width: auto;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.blog-image-slide video {
    max-width: calc(100% - 2rem);
    width: auto;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(44, 62, 80, 0.8);
    border: 3px solid white;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.video-play-button:hover {
    background-color: rgba(44, 62, 80, 1);
    transform: scale(1.1);
}

.video-play-button i {
    margin-left: 5px; /* Slight offset for play icon centering */
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(44, 62, 80, 0.8);
    border: 3px solid white;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
}

.video-play-button:hover {
    background-color: rgba(44, 62, 80, 1);
    transform: scale(1.1);
}

.video-play-button i {
    margin-left: 5px; /* Slight offset for play icon centering */
}

.blog-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
    color: var(--text-color);
}

.blog-carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

.blog-carousel-prev {
    left: 0;
}

.blog-carousel-next {
    right: 0;
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.blog-dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.blog-dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Blog Content */
.blog-content {
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.blog-lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.blog-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.9;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


.detail-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
    flex: 1;
    min-width: 200px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    flex: 1;
    min-width: 200px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.detail-specs {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.detail-specs h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-specs ul {
    list-style: none;
    color: var(--text-light);
}

.detail-specs li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-specs li:last-child {
    border-bottom: none;
}

/* Related Products */
.related-products {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

/* More Designs Slideshow */
.more-designs-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.more-designs-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.more-designs-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.more-designs-carousel-slide {
    min-width: 25%;
    width: 25%;
    flex-shrink: 0;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.more-designs-card {
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.more-designs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.more-designs-card-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: var(--bg-light);
}

.more-designs-card-info {
    padding: 1.5rem;
    text-align: center;
}

.more-designs-card-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.more-designs-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.more-designs-carousel-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

.more-designs-carousel-prev {
    left: 0;
}

.more-designs-carousel-next {
    right: 0;
}

.more-designs-carousel-dots {
    display: none;
}

@media (max-width: 1024px) {
    .more-designs-carousel-slide {
        min-width: 33.333%;
    }
    
    .more-designs-carousel-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .more-designs-carousel-slide {
        min-width: 50%;
    }
    
    .more-designs-carousel-container {
        padding: 0 40px;
    }
    
    .more-designs-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .more-designs-carousel-slide {
        min-width: 100%;
    }
    
    .more-designs-carousel-container {
        padding: 0 30px;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        text-align: center;
    }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bg-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-title {
        font-size: 2.5rem;
    }

    .blog-carousel-prev {
        left: 10px;
    }

    .blog-carousel-next {
        right: 10px;
    }

    .blog-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image-container {
        margin: 0 auto;
    }

    .about-text-content {
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-intro p:first-child {
        font-size: 1.2rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subhead {
        font-size: 1rem;
    }

    .carousel-slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-lead {
        font-size: 1.15rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-carousel-btn {
        width: 35px;
        height: 35px;
    }

    .blog-carousel-prev {
        left: 5px;
    }

    .blog-carousel-next {
        right: 5px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .detail-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Filter Animation */
.product-card {
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

