/**
 * LavishWood - Main Stylesheet
 * Optimized for performance and accessibility
 */

/* CSS Variables */
:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --walnut: #4A3728;
    --walnut-deep: #2D1F15;
    --cream: #FAF7F2;
    --cream-dark: #EDE8DF;
    --charcoal: #1A1614;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--walnut);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--walnut-deep);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

em {
    font-style: italic;
    color: var(--gold-dark);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4%, 60px);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(45, 31, 21, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px;
    width: auto;
    display: block;
}

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

.nav-links a {
    font-size: 0.85rem;
    color: var(--cream);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero Section - Slider */
.hero-slider {
    min-height: 100vh;
    position: relative;
    background: var(--walnut-deep);
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--walnut-deep);
    padding: 2rem;
}

.slide-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.slide-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: var(--walnut-deep);
}

.slide-content h1 {
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--cream-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    pointer-events: all;
    background: rgba(201, 169, 98, 0.3);
    color: var(--cream);
    border: 1px solid rgba(201, 169, 98, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--walnut-deep);
    transform: scale(1.1);
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    
    .nav-container {
        padding: 0.8rem 4%;
    }
    
    .hero-slider {
        padding-top: 70px;
    }
    
    .slider-container {
        height: calc(100vh - 70px);
    }
    
    .slide {
        grid-template-columns: 1fr;
        grid-template-rows: 45% 55%;
    }
    
    .slide-image {
        padding: 1rem;
    }
    
    .slide-content {
        padding: 2rem 1.5rem;
    }
    
    .slide-content h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-dots {
        bottom: 2rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
    
    .nav-container {
        padding: 0.6rem 3%;
    }
    
    .hero-slider {
        padding-top: 60px;
    }
    
    .slider-container {
        height: calc(100vh - 60px);
    }
    
    .slide {
        grid-template-rows: 40% 60%;
    }
    
    .slide-content {
        padding: 1.5rem 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.25rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

/* Hero fallback (non-slider) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--walnut-deep) 0%, var(--walnut) 100%);
    padding: 8rem 4% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    color: var(--cream-dark);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Product Page */
.product-page {
    padding: 6rem 0 4rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
    color: var(--walnut);
}

.breadcrumb a {
    color: var(--gold-dark);
    transition: var(--transition);
}

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

.breadcrumb span {
    opacity: 0.5;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.product-image {
    position: static;
    top: 20px;
    height: fit-content;
}

.product-image img {
    width: 100%;
    border-radius: 4px;
}

.product-details h1 {
    margin-bottom: 1rem;
}

.product-category {
    display: inline-block;
    background: var(--gold-light);
    color: var(--walnut-deep);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--walnut);
}

.product-price {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--gold-dark);
    margin-bottom: 2rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-features {
    border-top: 1px solid var(--cream-dark);
    padding-top: 2rem;
}

.product-features h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.related-products {
    padding-top: 4rem;
    border-top: 2px solid var(--cream-dark);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

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

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-card-content {
    padding: 1.5rem;
}

.product-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-card-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--walnut);
}

.product-card-content .link {
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        position: static;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .product-page {
        padding: 4rem 0 2rem;
    }
    
    .product-details h1 {
        font-size: 1.75rem;
    }
    
    .product-category {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--walnut-deep);
}

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

.btn-secondary {
    background: transparent;
    color: var(--walnut-deep);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--walnut-deep);
}

/* Dark background variant */
.hero-slider .btn-secondary,
.materials-cta .btn-secondary {
    color: var(--cream);
}

/* Light background - explicit dark text */
.craftsmanship-video .btn-secondary {
    color: var(--walnut-deep) !important;
    border-color: var(--gold);
}

/* Sections */
.collections-section,
.features-section,
.materials-cta {
    padding: 6rem 0;
}

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

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

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.collection-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream);
    border-radius: 4px;
}

.collection-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card-overlay {
    position: relative;
    background: var(--cream);
    padding: 1.5rem;
}

.collection-card h3 {
    font-size: 1.5rem;
    color: var(--walnut-deep);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.collection-card p {
    font-size: 0.9rem;
    color: var(--walnut);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.collection-card .link {
    font-size: 0.85rem;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    background: var(--walnut-deep);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    display: inline-block;
}

.features-grid h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.features-grid p {
    color: var(--cream-dark);
    opacity: 0.8;
}

/* Materials CTA */
.materials-cta {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.materials-cta h2 {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.materials-cta p {
    color: var(--cream-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    padding: 12rem 0 4rem;
    background: var(--walnut-deep);
    text-align: center;
}

.page-header h1 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--cream-dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-detail svg {
    flex-shrink: 0;
    color: var(--gold);
}

.contact-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Forms */
.contact-form {
    background: var(--cream-dark);
    padding: 2.5rem;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--walnut-deep);
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
}

.form-note a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.main-footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-col p, .footer-col li {
    color: var(--cream-dark);
    opacity: 0.7;
    line-height: 1.8;
}

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

.footer-col a:hover {
    color: var(--gold);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--walnut-deep);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: var(--cream-dark);
    opacity: 0.5;
    font-size: 0.85rem;
}

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

.legal-links a {
    color: var(--cream-dark);
    opacity: 0.7;
    font-size: 0.85rem;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--walnut-deep);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding: 7rem 4% 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .main-nav, .menu-toggle, .main-footer, .btn {
        display: none;
    }
}

/* Product Showcase Styles */
.products-section {
    padding: 4rem 0 6rem;
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-content .label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-light);
    color: var(--walnut-deep);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.featured-content h2 {
    margin-bottom: 1.5rem;
}

.featured-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--walnut);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--walnut-deep);
}

.product-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--walnut);
    margin-bottom: 1rem;
}

.product-info .link {
    color: var(--gold-dark);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.product-info .link:hover {
    color: var(--gold);
    gap: 0.75rem;
}

.craftsmanship-highlight {
    margin: 6rem 0;
    padding: 4rem;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 8px;
}

.highlight-content h2 {
    margin-bottom: 1.5rem;
}

.highlight-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
}

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

.highlight-feature h4 {
    font-size: 1.2rem;
    color: var(--walnut-deep);
    margin-bottom: 0.5rem;
}

.highlight-feature p {
    color: var(--walnut);
    opacity: 0.8;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--walnut-deep);
    border-radius: 8px;
    margin-top: 4rem;
}

.cta-section h2 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--cream-dark);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .featured-product {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .craftsmanship-highlight {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-features {
        grid-template-columns: 1fr;
    }
}

/* Gaming Tables Overview */
.collections-overview {
    margin: 4rem 0;
}

.collection-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.collection-feature.reverse {
    direction: rtl;
}

.collection-feature.reverse > * {
    direction: ltr;
}

.collection-images {
    position: relative;
}

.collection-images .main-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.collection-images .secondary-img {
    position: absolute;
    width: 40%;
    bottom: -2rem;
    right: -2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--cream);
}

.collection-feature.reverse .collection-images .secondary-img {
    right: auto;
    left: -2rem;
}

.collection-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.collection-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quick-features {
    list-style: none;
    margin-bottom: 2rem;
}

.quick-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--walnut);
}

.quick-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

.why-choose {
    margin: 6rem 0;
    padding: 4rem;
    background: var(--cream-dark);
    border-radius: 8px;
    text-align: center;
}

.why-choose h2 {
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.why-item h4 {
    font-size: 1.3rem;
    color: var(--walnut-deep);
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--walnut);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .collection-feature,
    .collection-feature.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .collection-images .secondary-img {
        bottom: -1rem;
        right: -1rem;
    }
    
    .why-choose {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* Materials & Guide Pages */
.materials-section,
.guide-section,
.comparison-section {
    padding: 4rem 0 6rem;
}

.materials-intro,
.guide-intro,
.comparison-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.materials-intro h2,
.guide-intro h2,
.comparison-intro h2 {
    margin-bottom: 1.5rem;
}

.materials-intro p,
.guide-intro p,
.comparison-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Wood Features */
.featured-woods {
    margin: 6rem 0;
}

.wood-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: start;
}

.wood-feature.reverse {
    direction: rtl;
}

.wood-feature.reverse > * {
    direction: ltr;
}

.wood-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.wood-subtitle {
    font-style: italic;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.wood-properties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

.property h4 {
    color: var(--walnut-deep);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.property p {
    color: var(--walnut);
    font-size: 0.95rem;
}

/* Properties Section */
.properties-section {
    margin: 4rem 0;
}

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

.property-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.property-card h3 {
    color: var(--walnut-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.property-card p {
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.property-card strong {
    color: var(--gold-dark);
}

/* Benefits Section */
.benefits-section {
    margin: 4rem 0;
}

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

.benefit h3 {
    color: var(--walnut-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit p {
    line-height: 1.7;
    color: var(--walnut);
}

/* Applications */
.applications-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

.applications-list {
    margin-top: 1.5rem;
    list-style: none;
}

.applications-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(74, 55, 40, 0.1);
    font-size: 1.05rem;
}

.applications-list li:last-child {
    border-bottom: none;
}

.applications-list strong {
    color: var(--walnut-deep);
}

/* Care Section */
.care-section,
.sustainability-section,
.sustainability-note {
    margin: 4rem 0;
}

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

.care-tip,
.highlight-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.care-tip h3,
.highlight-box h4 {
    color: var(--walnut-deep);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.care-tip p,
.highlight-box p {
    line-height: 1.7;
}

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

.sustainability-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Wood Aging */
.wood-aging {
    text-align: center;
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--cream-dark) 100%);
    border-radius: 8px;
}

.wood-aging h2 {
    margin-bottom: 1.5rem;
}

.wood-aging p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Comparison CTA */
.comparison-cta {
    text-align: center;
    padding: 2.5rem;
    background: var(--walnut-deep);
    border-radius: 8px;
    margin: 4rem 0;
}

.comparison-cta h3 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.comparison-cta p {
    color: var(--cream-dark);
    margin-bottom: 1.5rem;
}

/* Comparison Table */
.comparison-table {
    margin: 4rem 0;
    overflow-x: auto;
}

.wood-comparison {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.wood-comparison thead {
    background: var(--walnut-deep);
    color: var(--cream);
}

.wood-comparison th,
.wood-comparison td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.wood-comparison th {
    font-weight: 600;
    font-size: 1.1rem;
}

.wood-comparison tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wood-comparison tbody tr:last-child {
    border-bottom: none;
}

.wood-comparison tbody tr:nth-child(even) {
    background: var(--cream-dark);
}

/* Detailed Comparisons */
.detailed-comparisons {
    margin: 4rem 0;
}

.comparison-detail {
    margin-bottom: 4rem;
}

.comparison-detail h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-column {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.comparison-column h4 {
    color: var(--walnut-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.comparison-column p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comparison-column strong {
    color: var(--gold-dark);
}

/* Recommendation Guide */
.recommendation-guide {
    margin: 4rem 0;
}

.recommendation-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.recommendation-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.recommendation-card h3 {
    color: var(--walnut-deep);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.recommendation-card ul {
    list-style: none;
}

.recommendation-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.recommendation-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mixed Woods */
.mixed-woods {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

.mixed-woods h2 {
    margin-bottom: 1.5rem;
}

.mixed-woods p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mixed-woods ul {
    list-style: none;
    margin-top: 1.5rem;
}

.mixed-woods li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.mixed-woods li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 968px) {
    .wood-feature,
    .wood-feature.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .wood-properties {
        grid-template-columns: 1fr;
    }
    
    .sustainability-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-columns {
        grid-template-columns: 1fr;
    }
    
    .wood-comparison {
        font-size: 0.9rem;
    }
    
    .wood-comparison th,
    .wood-comparison td {
        padding: 0.75rem 1rem;
    }
}




/* About & Craftsmanship Pages */
.about-section,
.craftsmanship-page,
.custom-section {
    padding: 4rem 0 6rem;
}

.about-intro,
.craft-intro,
.custom-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.values-section,
.story-section,
.team-section,
.commitment-section {
    margin: 6rem 0;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--walnut-deep);
}

.value-card p {
    line-height: 1.7;
}

.story-content p,
.commitment-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Process Timeline */
.process-section {
    margin: 6rem 0;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.process-step.reverse {
    grid-template-columns: 80px 1fr 1fr;
}

.process-step.reverse .step-image {
    order: -1;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    background: var(--gold);
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--walnut-deep);
}

.step-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.philosophy-section {
    max-width: 800px;
    margin: 6rem auto;
    text-align: center;
    padding: 3rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

.philosophy-section h2 {
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Commission Timeline */
.commission-process {
    margin: 6rem 0;
}

.process-timeline {
    position: relative;
    padding-left: 100px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--gold-light);
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    background: var(--walnut-deep);
    border-radius: 50%;
    border: 4px solid var(--cream);
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--walnut-deep);
}

.timeline-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-light);
    color: var(--walnut-deep);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

.possibilities-section,
.examples-section {
    margin: 6rem 0;
}

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

.possibility-card,
.example-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.possibility-card h3 {
    color: var(--walnut-deep);
    margin-bottom: 1rem;
}

.possibility-card ul,
.examples-section ul {
    list-style: none;
}

.possibility-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.possibility-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.example-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.example-item h4 {
    color: var(--walnut-deep);
    margin-bottom: 0.5rem;
}

.investment-section {
    margin: 6rem 0;
    padding: 3rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

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

.factor {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.factor h4 {
    color: var(--walnut-deep);
    margin-bottom: 0.75rem;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0 6rem;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.no-posts h2 {
    margin-bottom: 1rem;
}

.no-posts p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--walnut);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--walnut-deep);
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--gold-dark);
}

.blog-excerpt {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--gold-dark);
    font-weight: 500;
    text-decoration: none;
}

.read-more:hover {
    color: var(--gold);
}

/* Legal Pages */
.legal-section {
    padding: 4rem 0 6rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--walnut-deep);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--walnut-deep);
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--gold);
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-table th {
    background: var(--walnut-deep);
    color: var(--cream);
    font-weight: 600;
}

/* Error Page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

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

.error-code {
    font-size: 8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.helpful-links {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

.helpful-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.helpful-links ul {
    list-style: none;
}

.helpful-links li {
    padding: 0.5rem 0;
}

.helpful-links a {
    color: var(--walnut-deep);
    text-decoration: none;
}

.helpful-links a:hover {
    color: var(--gold);
    text-decoration: underline;
}

@media (max-width: 968px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-timeline {
        padding-left: 0;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
}

/* Sheesham Wood Showcase Sections */
.wood-showcase {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--cream-dark);
    border-radius: 8px;
}

.wood-showcase h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.showcase-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.showcase-caption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--walnut);
    font-style: italic;
}

.wood-samples {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.sample-image-large,
.sample-image-secondary {
    position: relative;
}

.sample-image-large img,
.sample-image-secondary img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.sample-image-large img {
    height: 400px;
    object-fit: cover;
}

.sample-image-secondary img {
    height: 400px;
    object-fit: cover;
}

.sample-caption {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--walnut);
    font-style: italic;
}

.application-showcase {
    margin: 2rem 0;
    text-align: center;
}

.application-showcase img {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

.application-showcase .showcase-caption {
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .wood-samples {
        grid-template-columns: 1fr;
    }
    
    .sample-image-large img,
    .sample-image-secondary img {
        height: 300px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-item img {
        height: 200px;
    }
}

/* Important Note Box */
.important-note {
    background: #fff3cd;
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.important-note h3 {
    color: var(--walnut-deep);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.important-note p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.important-note p:last-child {
    margin-bottom: 0;
}

.important-note a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.important-note a:hover {
    color: var(--gold);
}

/* Comparison Verdict */
.comparison-verdict {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
    font-size: 1.05rem;
    line-height: 1.7;
}

.comparison-verdict strong {
    color: var(--walnut-deep);
}

/* Why Sheesham Section */
.why-sheesham {
    max-width: 1000px;
    margin: 0 auto;
}

.why-sheesham > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card h4 {
    color: var(--walnut-deep);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reason-card p {
    line-height: 1.7;
    color: var(--walnut);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--gold-light);
}

.btn-accept {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

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

.scroll-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-accept {
        width: 100%;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   LAYOUT FIXES - Consistent Spacing
   ======================================== */

/* Page Header Consistency */
.page-header {
    padding: 12rem 0 4rem;
    background: linear-gradient(135deg, var(--walnut-deep) 0%, var(--walnut) 100%);
}

.page-header .container {
    max-width: 1200px;
}

/* All Main Content Sections */
.collections-section,
.features-section,
.products-section,
.materials-hub,
.guide-section,
.about-section,
.craftsmanship-page,
.blog-section,
.custom-section,
.legal-content-wrapper,
.contact-form-section {
    padding: 4rem 0;
}

/* Ensure nested content respects container */
.collections-section .container,
.features-section .container,
.products-section .container,
.materials-hub .container,
.guide-section .container {
    max-width: 1400px;
}

/* Footer Container Fix */
.main-footer {
    padding: 4rem 0 2rem;
}

.main-footer .container {
    max-width: 1400px;
}

/* Contact Form Narrower Container */
.contact-form-section .container {
    max-width: 800px;
}

/* Legal Pages Narrower Container */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Container Adjustments */
@media (max-width: 968px) {
    .container {
        padding: 0 clamp(15px, 3%, 30px);
    }
    
    .page-header {
        padding: 8rem 0 3rem;
    }
    
    .collections-section,
    .features-section,
    .products-section,
    .materials-hub,
    .guide-section,
    .about-section,
    .craftsmanship-page,
    .blog-section,
    .custom-section {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .page-header {
        padding: 7rem 0 2.5rem;
    }
    
    .collections-section,
    .features-section,
    .products-section,
    .materials-hub,
    .guide-section,
    .about-section,
    .craftsmanship-page,
    .blog-section,
    .custom-section {
        padding: 2.5rem 0;
    }
    
    .main-footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Fix any sections that might not have container */
section:not(.hero) {
    overflow-x: hidden;
}

/* Ensure all content respects max-width */
.featured-product,
.product-grid,
.features-grid,
.footer-grid,
.guide-intro,
.wood-feature,
.comparison-table {
    max-width: 100%;
}

/* Craftsmanship Video Section */
.craftsmanship-video {
    padding: 6rem 0;
    background: var(--cream-dark);
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-text h2 {
    margin-bottom: 1.5rem;
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--walnut);
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .craftsmanship-video {
        padding: 3rem 0;
    }
}

/* Product Video for Cone Holder */
.product-video {
    position: sticky;
    top: 120px;
}

.product-video .video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #f5f5f5;
    aspect-ratio: 2/3;
}

.product-video .video-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 968px) {
    .product-video {
        position: static;
    }
}

/* Dropdown Navigation */
.nav-links .has-dropdown {
    position: relative;
}

.nav-links .has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.8em;
    margin-left: 0.3em;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(45, 31, 21, 0.98);
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

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

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.dropdown a:hover {
    background: rgba(201, 169, 98, 0.2);
    color: var(--gold);
    padding-left: 2rem;
}

.dropdown a::after {
    display: none;
}

@media (max-width: 968px) {
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0.5rem;
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .dropdown a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }
    
    .dropdown a:hover {
        padding-left: 2.5rem;
    }
}
