/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove underlines from all links */
a {
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --wood-light: #deb887;
    --wood-medium: #a0826d;
    --wood-dark: #6b4423;
    --dark-bg: #0a0a0a;
    --dark-bg-2: #1a1814;
    --dark-bg-3: #2a2520;
    --text-light: #ffffff;
    --text-gray: #c4b5a0;
    --accent-wood: #c19a6b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0908 0%, #1a1410 50%, #0f0d0a 100%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(160, 130, 109, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(193, 154, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(107, 68, 35, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(212, 165, 116, 0.008) 80px,
            rgba(212, 165, 116, 0.008) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(160, 130, 109, 0.01) 3px,
            rgba(160, 130, 109, 0.01) 4px
        );
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

body > * {
    position: relative;
    z-index: 1;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 50%, rgba(10, 10, 10, 0.85) 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3), transparent);
    pointer-events: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-name {
    height: 24px;
    width: auto;
    object-fit: contain;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.logo-name:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-family: 'Eurostile', 'Arial Black', 'Arial', sans-serif;
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 800;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Dropdown menu styles */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    backdrop-filter: blur(10px);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 1.75rem;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-link svg {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.cart-link:hover svg {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    pointer-events: none;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(160, 130, 109, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-wood) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-wood) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5);
}

.btn-accent:active {
    transform: translateY(0);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Welcome Section */
.welcome {
    background-color: var(--dark-bg-2);
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Virtual Showroom Box */
.virtual-showroom-box {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.virtual-showroom-box a {
    text-decoration: none;
    display: block;
}

.showroom-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.showroom-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    transition: left 0.5s ease;
}

.virtual-showroom-box:hover .showroom-content::before {
    left: 100%;
}

.virtual-showroom-box:hover .showroom-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
    border-color: var(--secondary-color);
}

.showroom-content h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.showroom-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.showroom-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.virtual-showroom-box:hover .showroom-btn {
    background: linear-gradient(135deg, var(--accent-wood) 0%, var(--secondary-color) 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

/* Work Showcase Section */
.work-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.photo-gallery {
    position: relative;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 165, 116, 0.8);
    color: white;
    border: none;
    padding: 16px 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.gallery-btn:hover {
    background-color: rgba(212, 165, 116, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.video-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-showcase iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .work-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-container,
    .video-showcase {
        height: 350px;
    }
}

/* Products Section */
.products {
    background: transparent;
    position: relative;
}

.product-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.product-card {
    min-width: calc(33.333% - 1.5rem);
    background: linear-gradient(135deg, rgba(26, 24, 20, 0.92) 0%, rgba(25, 20, 15, 0.96) 100%);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(139, 111, 71, 0.9) 100%);
    color: white;
    border: 2px solid rgba(212, 165, 116, 0.3);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--wood-light) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Leadership Section */
.leadership {
    background-color: var(--dark-bg-2);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.leadership-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.leadership-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.leadership-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Partner Section */
.partner {
    background: linear-gradient(135deg, #000000 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    text-align: center;
}

.partner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--dark-bg-3);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.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: var(--text-gray);
}

/* Page Header (for secondary pages) */
.page-header {
    margin-top: 60px;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, var(--secondary-color) 100%);
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Product Categories Page */
.product-categories {
    background-color: var(--dark-bg);
}

.category-section {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

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

.main-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-item {
    background-color: var(--dark-bg-2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
}

.product-item-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.95);
}

.product-item:hover .product-item-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.product-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, transparent 50%, rgba(139, 111, 71, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.product-item:hover .product-item-image::before {
    opacity: 0;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(139, 111, 71, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.product-item-info {
    padding: 1.5rem;
}

.product-item-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--wood-light) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-item-info p {
    color: var(--text-gray);
    line-height: 1.6;
}

.product-item-link {
    text-decoration: none;
    display: block;
}

/* Product Detail Pages */
.product-details {
    background-color: var(--dark-bg);
}

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

.design-item {
    background: transparent;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.design-item:hover {
    transform: translateY(-10px);
}

.design-image {
    width: 90%;
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: -30px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.design-item:hover .design-image {
    box-shadow: 0 20px 45px rgba(212, 165, 116, 0.4);
    transform: translateY(-5px);
}

.design-image a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

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

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

.design-info {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.95) 0%, rgba(25, 20, 15, 0.98) 100%);
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 165, 116, 0.08);
    backdrop-filter: blur(10px);
}

.design-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.design-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.design-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.design-actions {
    display: flex;
    gap: 0.5rem;
}

.design-actions .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.btn-view {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-view:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    border-color: transparent;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--dark-bg-2);
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    border: 2px solid var(--primary-color);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    color: var(--text-light);
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    margin-bottom: 1.5rem;
}

.modal-body p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.quantity-selector label {
    color: var(--text-light);
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background: var(--dark-bg-3);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.quantity-input {
    width: 60px;
    padding: 8px;
    background-color: var(--dark-bg-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    text-align: center;
    font-size: 1rem;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.modal-footer {
    display: flex;
    gap: 0.75rem;
}

.modal-footer .btn {
    flex: 1;
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--dark-bg-2);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 25%,
        black 75%,
        transparent 100%);
    mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 25%,
        black 75%,
        transparent 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-form-wrapper h2,
.contact-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    background-color: var(--dark-bg-3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--dark-bg-2);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .product-card {
        min-width: 100%;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Cart Page */
.cart-section {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    background: linear-gradient(135deg, rgba(26, 24, 20, 0.92) 0%, rgba(25, 20, 15, 0.96) 100%);
    border: 1px solid rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cart-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.15);
    transform: translateY(-2px);
}

.cart-item-info h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cart-item-category {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.subtotal-label {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.subtotal-amount {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-category-section {
    margin-bottom: 2.5rem;
}

.cart-category-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-subtotal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.category-subtotal span:first-child {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.category-subtotal span:last-child {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.total-row {
    border-top: 2px solid var(--primary-color);
    margin-top: 0.5rem;
    padding-top: 1.5rem;
}

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

.btn-remove {
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background-color: #dc2626;
    color: white;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-cart svg {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-cart h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cart-summary {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.95) 0%, rgba(25, 20, 15, 0.98) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.summary-content h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.cart-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.cart-actions .btn {
    flex: 1;
}

@media screen and (max-width: 600px) {
    .cart-actions {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }

    .cart-actions {
        flex-direction: column;
    }
}

/* Checkout Page */
.checkout-section {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.checkout-form-wrapper h3,
.order-summary h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    margin-top: 2rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    background-color: var(--dark-bg-2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-card svg {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.payment-card span {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(160, 130, 109, 0.1) 100%);
}

.payment-option input[type="radio"]:checked + .payment-card svg,
.payment-option input[type="radio"]:checked + .payment-card span {
    color: var(--primary-color);
}

.payment-card:hover {
    border-color: var(--primary-color);
}

.order-summary {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.95) 0%, rgba(25, 20, 15, 0.98) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.order-item-info p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.order-item-qty {
    color: var(--primary-color);
    font-weight: 600;
}

.order-total {
    border-top: 2px solid var(--primary-color);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.total-note {
    background: rgba(212, 165, 116, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.total-note p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.btn-block {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
    display: block;
    text-decoration: none;
}

@media screen and (max-width: 968px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: relative;
        top: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* Louvers Page Enhancements */
.louvers-header {
    background: linear-gradient(135deg, rgba(10, 9, 8, 0.95) 0%, rgba(26, 20, 16, 0.92) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23191410" width="100" height="100"/><g fill-opacity="0.05"><path fill="%23d4a574" d="M0 0h50v100H0z"/><path fill="%23a0826d" d="M50 0h50v100H50z"/></g></svg>');
    background-size: cover, 100px 100px;
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.louvers-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.wood-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 120px,
            rgba(212, 165, 116, 0.02) 120px,
            rgba(212, 165, 116, 0.02) 122px
        );
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(160, 130, 109, 0.15) 100%);
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 50px;
    color: var(--wood-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.louvers-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--wood-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.header-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.header-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(212, 165, 116, 0.3), transparent);
}

.wood-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.wood-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--wood-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wood-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1.5rem auto;
    position: relative;
}

.wood-divider::before,
.wood-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.wood-divider::before {
    left: -10px;
}

.wood-divider::after {
    right: -10px;
}

.louvers-gallery .section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Enhanced Design Cards for Louvers */
.louvers-gallery .design-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.louvers-gallery .design-item:hover {
    transform: translateY(-15px);
}

.louvers-gallery .design-image {
    position: relative;
    overflow: hidden;
}

.louvers-gallery .design-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.louvers-gallery .design-item:hover .design-image::before {
    opacity: 1;
}


.louvers-gallery .design-info {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.97) 0%, rgba(25, 20, 15, 0.99) 100%);
    border: 1px solid rgba(212, 165, 116, 0.12);
    transition: all 0.3s ease;
}

.louvers-gallery .design-item:hover .design-info {
    border-color: rgba(212, 165, 116, 0.25);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.1);
}

.louvers-gallery .design-info h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.louvers-gallery .design-price {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--wood-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Inline Cart Controls */
.cart-control-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-control-wrapper .add-to-cart-btn {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-control-wrapper .inline-quantity-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-control-wrapper:hover .add-to-cart-btn {
    opacity: 0;
    transform: scale(0.95);
}

.cart-control-wrapper:hover .inline-quantity-controls {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.inline-quantity-controls.has-items {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.inline-quantity-controls.has-items ~ .add-to-cart-btn {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.quantity-btn-inline {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.quantity-btn-inline:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.quantity-btn-inline:active {
    transform: scale(0.95);
}

.quantity-display {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    min-width: 30px;
    text-align: center;
}

/* Product Detail Page */
.product-detail-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--wood-light);
}

.breadcrumb span {
    color: var(--text-light);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.product-detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(212, 165, 116, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
    justify-self: end;
    margin-right: 110px;
}

.product-detail-image:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(212, 165, 116, 0.18);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Add white strip to right of louver detail images */
.product-detail-image img[src*="louvers/details"] {
    padding-right: 40px;
    background-color: white;
    box-sizing: content-box;
}

/* Alternative selector for louver images */
img[alt*="Decorative Louver"] {
    padding-right: 40px !important;
    background-color: white !important;
    box-sizing: content-box !important;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.product-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--wood-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
}

.product-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--wood-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.5) 0%, rgba(25, 20, 15, 0.7) 100%);
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-bottom: 1.5rem;
}

.product-description h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
    padding-bottom: 0.75rem;
}

.product-description p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-features li {
    padding: 0.75rem 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
    background: rgba(212, 165, 116, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.product-features li:hover {
    background: rgba(212, 165, 116, 0.15);
    transform: translateX(4px);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-selector label {
    font-weight: 600;
    color: var(--text-light);
}

.quantity-selector .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-selector input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    background: rgba(28, 24, 20, 0.6);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Remove spinner arrows from number inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.product-meta {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.4) 0%, rgba(25, 20, 15, 0.6) 100%);
    border: 1px solid rgba(212, 165, 116, 0.12);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-item {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.meta-item strong {
    color: var(--text-light);
    margin-right: 0.5rem;
}

.back-button-container {
    margin-top: 3rem;
    text-align: center;
}

.back-button-container .btn {
    display: inline-flex;
    align-items: center;
}

@media screen and (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .louvers-header h1 {
        font-size: 2.5rem;
    }

    .header-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .wood-section-header h2 {
        font-size: 2rem;
    }
}

/* Enhanced Typography */
.logo h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero-title,
.louvers-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
}

.section-header h2,
.wood-section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.design-info h3,
.cart-item-info h3,
.order-item-info h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

.design-price,
.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

.category-badge,
.section-tag,
.stat-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
}

p, 
.section-subtitle,
.header-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.75;
}

label,
input,
select,
textarea {
    font-family: 'Inter', sans-serif;
}

/* Section Blending & Smooth Transitions */
section {
    position: relative;
}

.welcome::before,
.products::before,
.leadership::before,
.partner::before,
.product-details::before,
.cart-section::before,
.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.welcome::after,
.products::after,
.leadership::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

.welcome,
.products,
.leadership,
.partner {
    padding: 120px 0;
}

.welcome .container,
.products .container,
.leadership .container,
.partner .container,
.product-details .container {
    position: relative;
    z-index: 2;
}

/* Page Header Blending */
.page-header::after,
.louvers-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--dark-bg));
    pointer-events: none;
    z-index: 5;
}

/* Partner Section Gradient Blend */
.partner::before {
    height: 150px;
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
}

.partner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--dark-bg), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Remove hard backgrounds */
.welcome {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 24, 20, 0.5) 50%, var(--dark-bg) 100%);
}

.leadership {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 24, 20, 0.3) 50%, var(--dark-bg) 100%);
}

/* Smooth product-details section */
.product-details,
.louvers-gallery {
    padding: 120px 0;
}

/* Footer blend */
.footer {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, var(--dark-bg-2) 20%, var(--dark-bg-2) 100%);
    padding-top: 150px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, var(--dark-bg), transparent);
    pointer-events: none;
}

/* Filter Controls for AASA and other products */
.filter-controls {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.filter-btn:active {
    transform: scale(0.98);
}

.design-item.hidden {
    display: none !important;
}

/* Image Slider for Product Details */
.image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.slider-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.slider-btn:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.slider-btn svg {
    color: var(--primary-color);
}

.slider-btn-prev {
    left: 15px;
}

.slider-btn-next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive slider buttons */
@media (max-width: 768px) {
    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Slider Thumbnails */
.slider-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.thumbnail {
    width: 35px !important;
    height: 35px !important;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

@media (max-width: 768px) {
    .slider-thumbnails {
        gap: 6px;
        margin-top: 10px;
    }

    .thumbnail {
        width: 30px !important;
        height: 30px !important;
    }
}

/* Single Product Image (for products with only one image) */
.single-product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    min-height: 500px;
}

.single-product-image .detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .single-product-image {
        padding: 1rem;
        min-height: 400px;
    }
}

/* Catalogues Page */
.catalogues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.catalogue-item {
    background: linear-gradient(135deg, rgba(28, 24, 20, 0.95) 0%, rgba(25, 20, 15, 0.98) 100%);
    border: 2px solid rgba(212, 165, 116, 0.15);
    border-radius: 12px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.catalogue-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
}

.catalogue-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.catalogue-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    padding: 2rem 0 1rem;
}

.catalogue-item:hover .catalogue-icon {
    transform: scale(1.1);
}

.catalogue-item h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
    padding: 0 2rem;
}

.catalogue-item p {
    color: var(--text-gray);
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    padding: 0 2rem;
}

.catalogue-item .btn {
    margin: 0 2rem 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 4rem);
}

.catalogue-actions {
    display: flex;
    gap: 0.75rem;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.catalogue-actions .btn {
    flex: 1;
    margin: 0;
    width: auto;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
    .catalogues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .catalogue-image {
        height: 180px;
    }

    .catalogue-item h3 {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .catalogue-item p {
        padding: 0 1.5rem;
    }

    .catalogue-item .btn {
        margin: 0 1.5rem 1.5rem;
        width: calc(100% - 3rem);
    }

    .catalogue-actions {
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
        flex-direction: column;
    }

    .catalogue-actions .btn {
        font-size: 0.85rem;
        padding: 0.65rem 0.85rem;
    }
}

/* Flying Cart Animation */
.flying-cart-item {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.flying-cart-item svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    filter: drop-shadow(0 2px 8px rgba(212, 165, 116, 0.6));
}

/* Cart Bounce Animation */
@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(0.9);
    }
    75% {
        transform: scale(1.15);
    }
}

.cart-bounce {
    animation: cartBounce 0.5s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
