/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties */
:root {
    /* Colors */
    --color-primary-dark: #051E21;     /* Dark Teal - Primary dark background */
    --color-accent: #94AB69;           /* Sage Green - CTAs and highlights */
    --color-light: #f5f5f0;            /* Light background */
    --color-white: #ffffff;
    --color-text-dark: #333333;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Layout */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
    --border-radius: 0.75rem;
    
    /* Animations */
    --transition: all 0.3s ease;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    font-weight: 400;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.lead {
    font-size: clamp(0.925rem, 1.5vw, 1.05rem);
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border-color: var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

/* Dark Sections */
.section-dark {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--color-white);
}

/* Light Sections */
.section-light {
    background-color: var(--color-light);
    color: var(--color-text-dark);
}

/* Section Spacing */
.section {
    padding: var(--section-padding);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(5, 30, 33, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav {
    padding: 0.75rem 0;
}

@media (max-width: 768px) {
    .nav {
        padding: 0.6rem 0.5rem;
    }
    
    .nav .container {
        padding: 0 0.75rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .nav-actions .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

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

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-accent);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition);
}

/* Nav Phone */
.nav-phone {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--color-white);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(5, 30, 33, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.75rem 0;
    min-width: 220px;
    list-style: none;
    z-index: 1001;
    padding-top: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Bridge the gap between trigger and dropdown so hover doesn't break */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}

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

.nav-dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-dropdown-menu li a:hover {
    color: var(--color-accent);
    background: rgba(255,255,255,0.05);
}

/* White text on light background fix */
.section-light h2,
.section-light h3,
.section-light h4,
.section-light .section-title {
    color: var(--color-primary-dark);
}

.section-light p,
.section-light .section-subtitle {
    color: var(--color-text-dark);
}

/* These overrides are applied after .hero below */

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(5, 30, 33, 0.85));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(rgba(5, 30, 33, 0.7), rgba(5, 30, 33, 0.7)),
                      url('/assets/images/hero/hero-commercial-building-1920w.jpg');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 8rem 0 5rem;
}

.hero-content {
    display: grid;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    max-width: 800px;
}

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

.subheadline {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.hero-stat h4 {
    color: var(--color-accent);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Inner page hero overrides */
.hero.hero-half {
    padding: 7rem 0 3.5rem;
}

.hero.hero-compact {
    padding: 6rem 0 2.5rem;
}

.hero-stat p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background-color: var(--color-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-dark .card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
}

.section-dark .card h3,
.section-dark .card h4 {
    color: var(--color-white);
}

/* Partner Logos Scrolling Animation */
.partners-section {
    background-color: var(--color-primary-dark);
    padding: 1.5rem 0 2rem;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    opacity: 0.5;
}

.partners-scroll {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    height: 36px;
    width: auto;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
    flex-shrink: 0;
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(100%) brightness(0) invert(1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.section-dark .section-subtitle {
    color: var(--color-text-muted);
}

/* Full-width Background Sections */
.section-bg {
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(5, 30, 33, 0.8);
}

.section-bg .container {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact a,
.footer a[href^="tel"],
.footer a[href^="mailto"] {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--color-text-muted);
    max-width: 300px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 1.5rem;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

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

.gullstack-credit a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
}

/* GullStack Footer Credit */
.gullstack-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}

.gullstack-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.gullstack-link:hover {
    color: rgba(255,255,255,0.85);
}

.gullstack-bird {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.gullstack-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Footer grid: force 4 columns */
.footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: 3rem;
}

.mb-lg {
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 30, 33, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu .nav-list li {
        border-bottom: 1px solid var(--color-border);
    }
    
    .nav-menu .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 0;
    }
    
    .nav-dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 1rem;
        margin: 0;
    }
    
    .nav-dropdown-menu::before {
        display: none;
    }
    
    .nav-dropdown-menu li {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        background-attachment: scroll !important;
        text-align: center;
        padding: 5rem 1rem 2.5rem;
    }
    
    .hero.hero-half {
        padding: 5rem 1rem 2rem;
    }
    
    .hero.hero-compact {
        padding: 4.5rem 1rem 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .hero-stat h4 {
        font-size: 0.85rem;
    }
    
    .hero-stat p {
        font-size: 0.75rem;
    }
    
    .subheadline {
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .partners-track {
        gap: 2rem;
    }
    
    .partner-logo {
        height: 24px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .nav-phone {
        display: none;
    }
    
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        border: none;
        padding-left: 1rem;
    }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   Product Catalog (Shop Page)
   ====================================== */

/* Search & Filter Bar */
.catalog-controls {
    margin-bottom: 2.5rem;
}

.catalog-search {
    position: relative;
    margin-bottom: 1.5rem;
}

.catalog-search-input {
    width: 100%;
    padding: 0.9rem 1.25rem 0.9rem 3rem;
    font-size: 0.925rem;
    font-family: var(--font-family);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    background: var(--color-white);
    color: var(--color-text-dark);
    transition: var(--transition);
    outline: none;
}

.catalog-search-input:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(148, 171, 105, 0.15);
}

.catalog-search-input::placeholder {
    color: #999;
}

.catalog-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.catalog-result-count {
    font-size: 0.825rem;
    color: #777;
    margin-bottom: 0;
}

/* Category Filter Pills */
.catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}

.catalog-filter-btn {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-family);
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 2rem;
    background: var(--color-white);
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.catalog-filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.catalog-filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.catalog-filter-count {
    display: inline-block;
    margin-left: 0.3rem;
    font-weight: 400;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .catalog-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.75rem;
    }
    .catalog-filters::-webkit-scrollbar {
        display: none;
    }
}

/* Product Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

/* Product Card */
.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.product-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e4;
}

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

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

/* No-image placeholder */
.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e4;
}

.product-card-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.product-card-body h3 {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.product-card-body p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.product-card-actions .btn {
    font-size: 0.725rem;
    padding: 0.4rem 0.85rem;
}

/* Load More */
.catalog-load-more {
    text-align: center;
    margin-top: 3rem;
}

.catalog-load-more .btn {
    padding: 0.75rem 2.5rem;
}

.catalog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.catalog-empty h3 {
    color: #777;
    margin-bottom: 0.5rem;
}

/* ======================================
   Featured Products Section (Homepage)
   ====================================== */

.featured-products-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.featured-product-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.featured-product-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8e8e4;
}

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

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

.featured-product-body {
    padding: 1.25rem;
}

.featured-product-category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.35rem;
}

.featured-product-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.featured-product-body p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   Contact Form Section (Homepage)
   ====================================== */

.contact-form-section {
    background: var(--color-primary-dark);
    padding: 5rem 0;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: 1.5rem;
    padding: 3.5rem 3rem;
    max-width: 680px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.contact-form-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.contact-form-card h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    color: var(--color-primary-dark);
    margin-bottom: 2rem;
}

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

.contact-form-field {
    display: flex;
    flex-direction: column;
}

.contact-form-field.full-width {
    grid-column: 1 / -1;
}

.contact-form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 0.35rem;
}

.contact-form-field input,
.contact-form-field textarea {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-family);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--border-radius);
    background: var(--color-light);
    color: var(--color-text-dark);
    transition: var(--transition);
    outline: none;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(148, 171, 105, 0.15);
}

.contact-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.contact-form-submit .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }
    .contact-form-fields {
        grid-template-columns: 1fr;
    }
}

/* ======================================
   Product Detail Page (PDP)
   ====================================== */

/* Breadcrumbs */
.pdp-breadcrumbs {
    background: var(--color-primary-dark);
    padding: 5.5rem 0 0.75rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumb-sep {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-current {
    color: var(--color-accent);
    font-weight: 500;
}

/* PDP Section */
.pdp-section {
    padding-top: 3rem;
}

/* PDP Layout */
.pdp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Gallery */
.pdp-gallery {
    position: sticky;
    top: 5rem;
}

.pdp-main-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #e8e8e4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdp-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.pdp-no-image {
    background: #e8e8e4;
}

.pdp-no-image svg {
    opacity: 0.3;
}

.pdp-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    overflow-x: auto;
}

.pdp-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: #e8e8e4;
    padding: 0;
    transition: var(--transition);
}

.pdp-thumb:hover {
    border-color: rgba(148, 171, 105, 0.5);
}

.pdp-thumb.active {
    border-color: var(--color-accent);
}

.pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.pdp-info {
    padding-top: 0.5rem;
}

.pdp-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pdp-category-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(148, 171, 105, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
}

.pdp-info h1 {
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.pdp-sku {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1rem;
    font-weight: 500;
}

.pdp-stock {
    margin-bottom: 1.25rem;
}

.pdp-stock-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
}

.pdp-in-stock {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.pdp-quote-only {
    background: rgba(148, 171, 105, 0.12);
    color: #6b7c3e;
}

.pdp-short-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-short-desc p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* CTA Actions */
.pdp-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
}

/* Trust Signals */
.pdp-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: var(--color-light);
    border-radius: var(--border-radius);
}

.pdp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.pdp-trust-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Detailed Description */
.pdp-details {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp-details h2 {
    color: var(--color-primary-dark);
    margin-bottom: 1.5rem;
}

.pdp-details-content {
    max-width: 800px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
}

.pdp-details-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pdp-details-content strong {
    color: var(--color-primary-dark);
}

/* Back Link */
.pdp-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* PDP Responsive */
@media (max-width: 768px) {
    .pdp-breadcrumbs {
        padding-top: 4.5rem;
    }

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

    .pdp-gallery {
        position: static;
    }

    .pdp-main-image {
        aspect-ratio: 4 / 3;
    }

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

    .pdp-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pdp-thumb {
        width: 56px;
        height: 56px;
    }
}