/* Core Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080808;       /* Deep void black */
    --dark-gray: #121212;   /* Obsidian */
    --light-gray: #1e1e1e;  /* Charcoal */
    --red: #c92a2a;         /* Blood Red */
    --gold: #d4af37;        /* Gold */
    --white: #e0e0e0;       /* Off-white */
    --gray-text: #888888;
    --border: rgba(212, 175, 55, 0.15); /* Subtle Gold Borders */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 50% 0%, #1a0505 0%, transparent 70%);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    background-color: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

.logo {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 36px;
    width: 36px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.logo span span {
    color: var(--red);
    text-shadow: 0 0 10px rgba(201, 42, 42, 0.5);
}

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

.nav-menu a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--white), var(--gray-text));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-family: 'Inter', sans-serif;
    border-left: 3px solid var(--red);
    padding-left: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 15px rgba(201, 42, 42, 0.4);
}

.btn-primary:hover {
    background-color: #a01e1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 42, 42, 0.6);
}

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

.btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    padding: 1rem;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: 
        linear-gradient(to bottom, rgba(5,5,5,0.8), var(--black)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1a1a' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.page-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* Features Grid */
.features {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    background-color: var(--dark-gray);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--black);
    transition: transform 0.3s;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: var(--gold) transparent transparent transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

/* DIABLO STYLE TESTIMONIALS SECTION */
.diablo-section {
    padding: 6rem 0;
    background-color: var(--black);
    /* Subtle noise/dark texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    display: flex;
    justify-content: center;
}

.diablo-border {
    border: 4px double var(--gold); /* The double border look */
    padding: 4rem;
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    max-width: 1100px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

/* Corner Accents for the 'stick out' feel */
.diablo-border::after {
    content: '';
    position: absolute;
    top: -6px; bottom: -6px; left: -6px; right: -6px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

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

.testimonial-card {
    text-align: center;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.testimonial-author span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 0.2rem;
}


/* Materials Tabs */
.tabs-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.tabs-control {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--black);
    background-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    animation: fadeIn 0.5s ease;
}

.tech-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.tech-subtitle {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.tech-specs {
    margin: 2rem 0;
    list-style: none;
}

.tech-specs li {
    margin-bottom: 0.8rem;
    color: var(--gray-text);
    border-left: 2px solid var(--red);
    padding-left: 1rem;
}

.tech-specs strong {
    color: var(--white);
    margin-right: 0.5rem;
}

.pricing-box {
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 2px;
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.pricing-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-row:last-of-type { border-bottom: none; }
.price-row span { color: var(--gray-text); }
.price-row strong { color: var(--white); font-size: 1.1rem; }
.price-note { font-size: 0.8rem; color: var(--gray-text); margin-top: 1rem; font-style: italic; }

.tech-visual {
    height: 400px;
    background: radial-gradient(circle at center, var(--light-gray) 0%, var(--black) 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-visual::after {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 10px; right: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.tech-placeholder-img {
    color: var(--red);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    opacity: 0.5;
    font-family: 'Cinzel', serif;
}

/* Pricing Section */
.pricing-minimal {
    padding: 8rem 0;
    background-color: var(--black);
    border-top: 1px solid var(--border);
}

.container-small {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--gold);
}

.pricing-card-modern {
    background-color: var(--dark-gray);
    padding: 3rem;
    border-radius: 2px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-item { flex: 1; }
.price-val { display: block; font-size: 3.5rem; font-weight: 800; line-height: 1; font-family: 'Cinzel', serif; color: var(--white); }
.price-val .plus { font-size: 1.5rem; vertical-align: top; color: var(--red); }
.price-lab { display: block; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; color: var(--red); margin: 0.5rem 0 1rem; }
.pricing-item p { font-size: 0.85rem; color: var(--gray-text); }
.pricing-plus { font-size: 2rem; color: var(--gold); padding: 0 1rem; }

.pricing-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.pricing-example-clean {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.example-item {
    background: var(--dark-gray);
    padding: 1.2rem;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.example-item strong { color: var(--gold); font-family: 'Cinzel', serif; }

/* Request Form Styling */
.request-form-section {
    padding: 4rem 0 8rem 0; 
}

.print-form {
    background-color: var(--dark-gray);
    padding: 4rem;
    border-radius: 2px;
    border: 1px solid var(--border);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Cinzel', serif;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--light-gray);
    padding: 1rem;
    color: var(--white);
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--black);
    box-shadow: 0 0 10px rgba(201, 42, 42, 0.2);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-text);
}

input[type="date"] {
    color-scheme: dark;
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    opacity: 0.6;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Success Message */
.success-message {
    background-color: var(--dark-gray);
    padding: 4rem;
    border-radius: 2px;
    text-align: center;
    border: 2px solid var(--gold);
    margin-top: 2rem;
}

.success-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, var(--black), var(--dark-gray));
    border-top: 1px solid var(--border);
}

.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--gold); }
.cta p { font-size: 1.2rem; color: var(--gray-text); margin-bottom: 2.5rem; }

/* Constraint for CTA Button */
.cta .btn-large {
    max-width: 500px;
    width: 100%; /* Ensures it takes up space up to max-width */
    margin: 0 auto;
}

/* Compact Footer */
.site-footer {
    background-color: var(--black);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
}

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

.footer-compact p {
    color: var(--gray-text);
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-nav a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
}

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

/* Animations */
.cube {
    width: 150px;
    height: 150px;
    background: transparent;
    border: 2px solid var(--red);
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 0 20px rgba(201, 42, 42, 0.5);
    animation: pulseRune 4s infinite ease-in-out;
}

.cube::after {
    content: '';
    position: absolute;
    top: 10px; bottom: 10px; left: 10px; right: 10px;
    border: 1px solid var(--gold);
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3);
}

@keyframes pulseRune {
    0% { transform: rotate(45deg) scale(1); box-shadow: 0 0 20px rgba(201, 42, 42, 0.5); }
    50% { transform: rotate(45deg) scale(1.05); box-shadow: 0 0 40px rgba(201, 42, 42, 0.8); }
    100% { transform: rotate(45deg) scale(1); box-shadow: 0 0 20px rgba(201, 42, 42, 0.5); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gallery Styles */
.gallery-section {
    padding: 4rem 0;
}

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

.gallery-card {
    background-color: var(--dark-gray);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.card-image {
    height: 250px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.placeholder-img {
    color: var(--gray-text);
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Cinzel', serif;
}

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.tag-resin {
    background-color: rgba(201, 42, 42, 0.1);
    color: var(--red);
    border: 1px solid rgba(201, 42, 42, 0.3);
}

.tag-pla {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* RESOURCES SECTION (New Homepage Section) */
.resources-section {
    padding: 6rem 0;
    background-color: var(--dark-gray);
    border-top: 1px solid var(--border);
}

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

.resource-card {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.resource-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.resource-card .tag {
    align-self: center;
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.05);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.resource-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.resource-link {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

/* FAQ ACCORDION STYLES */
.faq-section {
    padding: 6rem 2rem;
    background-color: var(--black);
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container {
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details.faq-item {
    background: var(--dark-gray);
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: all 0.2s ease;
}

details.faq-item:hover {
    border-color: var(--gold);
}

details.faq-item[open] {
    border-color: var(--gold);
    background: #151515;
}

summary.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

summary.faq-question::-webkit-details-marker {
    display: none;
}

summary.faq-question::after {
    content: '+';
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
    transition: transform 0.2s;
    line-height: 1;
}

details[open] summary.faq-question::after {
    transform: rotate(45deg);
    color: var(--red);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0;
    padding-top: 1rem;
    font-family: 'Inter', sans-serif;
}


/* CATALOG STYLES */
.catalog-controls {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-bar {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    font-size: 1rem;
}

.search-bar:focus {
    outline: none;
    border-color: var(--gold);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray-text);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Product Card Specifics */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.product-id {
    font-size: 0.7rem;
    color: var(--gray-text);
    font-family: monospace;
}

.product-desc {
    font-size: 0.85rem !important;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
    margin-top: auto;
}

.price {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

/* Floating Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px; /* Hidden by default */
    width: 320px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid var(--gold);
    z-index: 2000;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-gray);
}

.cart-header h3 {
    margin: 0;
    color: var(--gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
}

.cart-item-info strong {
    font-size: 0.9rem;
    color: var(--white);
}

.cart-item-info span {
    font-size: 0.8rem;
    color: var(--gold);
}

.remove-btn {
    background: transparent;
    border: none;
    color: var(--red);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--dark-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-total span:last-child {
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.cart-disclaimer {
    font-size: 0.7rem;
    color: var(--gray-text);
    text-align: center;
    margin-top: 1rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--gray-text);
    margin-top: 2rem;
    font-style: italic;
}

/* Mobile Toggle */
.cart-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mobileCartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* MATERIALS PAGE SPECIFICS */
.material-pricing-block {
    text-align: center;
    background: var(--black);
    padding: 2.5rem;
    border: 1px solid var(--border);
    margin-top: 2rem;
    border-radius: 2px;
}

.material-pricing-block h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.material-pricing-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-unit {
    text-align: center;
}

.pricing-unit .cost {
    display: block;
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-weight: 700;
}

.pricing-unit .label {
    color: var(--red);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.color-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.color-section h4 {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.color-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
}

.color-tag {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding: 4rem 2rem; }
    .hero-title { font-size: 2.5rem; }
    
    .features-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-row { flex-direction: column; gap: 2rem; }
    .pricing-plus { transform: rotate(90deg); }
    .pricing-example-clean { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .print-form { padding: 2rem; }
    
    .tech-grid { grid-template-columns: 1fr; }
    .tech-visual { height: 250px; order: -1; }
    
    .gallery-grid { grid-template-columns: 1fr; }

    /* Footer Mobile */
    .footer-compact {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}