/* ==========================================================================
   THE CHOP LAB - UNIFIED BRAND CSS (M3 Structure + Atelier Polish)
   ========================================================================== */

:root {
    /* Color System */
    --tcl-primary: #D26244; /* Terracotta Orange */
    --tcl-primary-hover: #b85035;
    --tcl-surface: #ffffff; /* Pure white for cards/sections */
    --tcl-background: #F4F4F6; /* Clean Slate background */
    --tcl-text-main: #3A3F42; /* Engineered Grey text */
    --tcl-text-muted: #6b7276;
    --tcl-border: #e0e0e0;
    --tcl-accent-green: #77B847;

    /* Subtle M3 Elevations (Shadows) */
    --elevation-1: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    --elevation-2: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.12);
    
    /* Professional Shapes (Slightly rounded, but not overly "bubbly") */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Typography */
    --font-primary: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--tcl-background);
    color: var(--tcl-text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* --- Navigation --- */
.navbar {
    background-color: var(--tcl-surface);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--elevation-1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--tcl-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.menu-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--tcl-text-main);
}

/* --- Mobile Overlay Menu --- */
.overlay-menu {
    display: none; 
    flex-direction: column;
    background-color: var(--tcl-surface);
    padding: 24px;
    position: fixed;
    top: 73px;
    right: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    box-shadow: -4px 0 8px rgba(0,0,0,0.05);
}

.overlay-menu.active {
    display: flex;
}

.overlay-menu a {
    text-decoration: none;
    color: var(--tcl-text-muted);
    padding: 16px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--tcl-border);
    transition: color 0.2s ease;
}

.overlay-menu a:hover, .overlay-menu a.current {
    color: var(--tcl-primary);
}

/* --- Hero Section --- */
.hero {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--tcl-surface);
    border-bottom: 1px solid var(--tcl-border);
    margin-bottom: 40px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--tcl-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    color: var(--tcl-text-muted);
    letter-spacing: 1px;
}

/* ==========================================================================
   GALLERY & PRODUCT CARDS
   ========================================================================== */
.gallery {
    flex-grow: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s ease;
}

.card-link:hover {
    transform: translateY(-4px);
}

.art-card {
    background-color: var(--tcl-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--elevation-1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--tcl-border);
    transition: box-shadow 0.2s ease;
}

.card-link:hover .art-card {
    box-shadow: var(--elevation-2);
    border-color: #d0d0d0;
}

/* THE 1:1 IMAGE CROP FIX */
.art-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: var(--tcl-background);
    border-bottom: 1px solid var(--tcl-border);
}

.art-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.art-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tcl-text-main);
}

.price {
    font-weight: 700;
    color: var(--tcl-primary);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.desc {
    font-size: 0.95rem;
    color: var(--tcl-text-muted);
    flex-grow: 1;
}

/* --- Buttons --- */
.btn-minimal, .btn-launch {
    display: inline-block;
    background-color: var(--tcl-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    text-align: center;
}

.btn-minimal:hover, .btn-launch:hover {
    background-color: var(--tcl-primary-hover);
}

.gallery-footer {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 60px;
}

/* ==========================================================================
   RESTORED: PORTFOLIO, MAKER & PROCESS SECTIONS
   ========================================================================== */

/* The Origin Story / Bio Grid */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
    padding: 40px;
    background-color: var(--tcl-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--elevation-1);
    border: 1px solid var(--tcl-border);
}

.bio-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--elevation-1);
}

.bio-text h2 {
    font-family: var(--font-heading);
    color: var(--tcl-primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 16px;
    color: var(--tcl-text-main);
    font-size: 1.05rem;
}

/* The Lab / Process Section */
.process-section {
    margin: 60px 0;
}

.process-section h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--tcl-text-main);
}

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

.process-step {
    background-color: var(--tcl-surface);
    padding: 30px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--tcl-primary);
    box-shadow: var(--elevation-1);
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--tcl-text-muted);
}

/* ==========================================================================
   ORDER FORM CONFIGURATION
   ========================================================================== */
.order-page-content {
    background-color: var(--tcl-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--elevation-1);
    border: 1px solid var(--tcl-border);
    padding: 50px 40px;
    margin: 40px auto;
    max-width: 800px;
}

.order-header {
    text-align: center;
    margin-bottom: 40px;
}

.order-header h1 {
    font-family: var(--font-heading);
    color: var(--tcl-primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--tcl-text-main);
}

input[type="text"], 
input[type="email"], 
input[type="number"], 
select, 
textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 14px 16px;
    border: 1px solid var(--tcl-border);
    border-radius: var(--radius-sm);
    background-color: var(--tcl-surface);
    color: var(--tcl-text-main);
    transition: all 0.2s ease;
    width: 100%;
}

input:focus, 
select:focus, 
textarea:focus {
    outline: none;
    border-color: var(--tcl-primary);
    box-shadow: 0 0 0 1px var(--tcl-primary);
}

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

.divider {
    height: 1px;
    background-color: var(--tcl-border);
    margin: 40px 0;
}

.dynamic-section {
    background-color: var(--tcl-background);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    border: 1px solid var(--tcl-border);
}

.dynamic-section h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--tcl-primary);
    font-size: 1.5rem;
}

.hidden {
    display: none !important;
}

.note {
    font-size: 0.85rem;
    color: var(--tcl-text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-box {
    background-color: var(--tcl-surface);
    padding: 50px;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: var(--elevation-2);
}

.modal-box h2 {
    font-family: var(--font-heading);
    margin-bottom: 16px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--tcl-surface);
    border-top: 1px solid var(--tcl-border);
    color: var(--tcl-text-muted);
    margin-top: auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .bio-grid, .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .order-page-content {
        padding: 30px 20px;
    }
}
/* ==========================================================================
<<<<<<< HEAD
   RESTORED: INNER PAGE HEADERS & CHOPS PAGE LAYOUT
   ========================================================================== */

/* --- Fixes the jammed text under the navbar --- */
.portfolio-intro {
    padding: 60px 0 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--tcl-border);
}

.portfolio-intro h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--tcl-text-main);
    margin-bottom: 10px;
    line-height: 1.2;
}

.portfolio-intro p {
    font-size: 1.15rem;
    color: var(--tcl-text-muted);
}

/* --- Chops Page: Split Layout --- */
.split-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 50px 0;
    background-color: var(--tcl-surface);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--elevation-1);
    border: 1px solid var(--tcl-border);
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: var(--radius-sm);
    background-color: var(--tcl-background);
    border: 1px solid var(--tcl-border);
    box-shadow: var(--elevation-1);
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--tcl-primary);
    margin-bottom: 8px;
}

.split-content .price {
    display: inline-block;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 24px;
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--tcl-text-main);
    padding-left: 15px;
    border-left: 3px solid var(--tcl-primary);
}

.feature-list li strong {
    color: var(--tcl-text-main);
}

/* --- Chops Page: Handle Grid --- */
.handle-section {
    margin: 80px 0 40px 0;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--tcl-text-main);
    margin-bottom: 40px;
}

.handle-diagram img {
    max-width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--tcl-border);
    margin-bottom: 50px;
    box-shadow: var(--elevation-1);
}

.handle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.handle-card {
    background-color: var(--tcl-surface);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--tcl-border);
    box-shadow: var(--elevation-1);
    transition: transform 0.2s ease;
}

.handle-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-2);
}

.handle-card h3 {
    font-family: var(--font-primary);
    color: var(--tcl-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.handle-card p {
    font-size: 0.95rem;
    color: var(--tcl-text-muted);
}

/* --- Mobile Responsiveness for Chops Page --- */
@media (max-width: 768px) {
    .split-section, .split-section.reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .feature-list li {
        text-align: left;
    }
}
=======
   INTERACTIVE TEXTURE GALLERY (ORDER PAGE)
   ========================================================================== */

/* The trigger button inside the form */
.visual-selector {
    display: flex;
    align-items: center;
    border: 2px dashed var(--tcl-border);
    border-radius: var(--radius-md);
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--tcl-surface);
}

.visual-selector:hover {
    border-color: var(--tcl-primary);
    background-color: #fff9f7;
}

.visual-selector img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-right: 20px;
    box-shadow: var(--elevation-1);
}

.selector-content {
    display: flex;
    flex-direction: column;
}

.selector-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--tcl-text-main);
    margin-bottom: 4px;
}

.selector-action {
    font-size: 0.9rem;
    color: var(--tcl-text-muted);
}

/* Modal Grid Layout (Step 1) */
.texture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.texture-card {
    border: 1px solid var(--tcl-border);
    border-radius: var(--radius-md);
    padding: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.texture-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-2);
    border-color: var(--tcl-primary);
}

.texture-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.texture-card h3 {
    font-size: 1.1rem;
    color: var(--tcl-primary);
    margin-bottom: 4px;
}

.texture-card p {
    font-size: 0.85rem;
    color: var(--tcl-text-muted);
    line-height: 1.3;
}

/* Detail Gallery Layout (Step 2) */
.detail-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.gallery-detail-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--elevation-1);
}

@media (max-width: 600px) {
    .detail-gallery {
        grid-template-columns: 1fr;
    }
}
>>>>>>> 1f5fa03 (Updates)
