﻿/* EngraveMount B2B - Custom Styles */

:root {
    --em-dark: #1C1C1E;
    --em-orange: #E8651E;
    --em-light: #FAFAFA;
    --em-gray: #86868B;
    --em-border: #E5E5E7;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--em-dark);
    background: var(--em-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: var(--em-dark);
}

/* Container */
.site-content {
    padding-top: 0;
}

/* Hero Section */
.em-hero {
    background: linear-gradient(135deg, #1C1C1E 0%, #2D2D2F 100%);
    color: #fff;
    padding: 120px 0 100px;
    text-align: center;
}
.em-hero h1 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.em-hero p {
    font-size: 1.25rem;
    color: #A1A1A3;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.em-btn-primary {
    display: inline-block;
    background: var(--em-orange);
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.em-btn-primary:hover {
    background: #D4541A;
    color: #fff;
    transform: translateY(-2px);
}

/* Trust Bar */
.em-trust-bar {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid var(--em-border);
}
.em-trust-bar img {
    max-height: 50px;
    opacity: 0.7;
    filter: grayscale(1);
}

/* Product Cards */
.em-products {
    padding: 80px 0;
}
.em-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.em-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.em-product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.em-product-card .em-card-body {
    padding: 24px;
}
.em-product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
.em-product-card p {
    color: var(--em-gray);
    font-size: 0.95rem;
}

/* Factory Section */
.em-factory {
    background: var(--em-dark);
    color: #fff;
    padding: 80px 0;
}
.em-factory h2 {
    color: #fff;
}

/* Customization Section */
.em-customization {
    padding: 80px 0;
}
.em-feature-item {
    text-align: center;
    padding: 20px;
}
.em-feature-item .em-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 101, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--em-orange);
    font-size: 24px;
}

/* Contact Section */
.em-contact {
    background: #fff;
    padding: 80px 0;
}

/* WhatsApp Floating Button */
.engravemount-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.engravemount-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Footer - clean single line */
.site-footer {
    background: var(--em-dark);
    color: #A1A1A3;
    padding: 0;
}
.site-footer a {
    color: #A1A1A3;
}

/* Hide duplicate Astra footer bars */
.ast-footer-copyright {
    display: none !important;
}
.ast-small-footer-wrap {
    padding: 20px 0 !important;
}
.ast-small-footer-section-2 {
    display: none !important;
}
.ast-small-footer {
    border-top: none !important;
    padding: 0 !important;
}

/* Hide page title on homepage (white bar above hero) */
.page-id-8 .entry-header,
.page-id-8 .ast-archive-description,
.page-id-8 #primary .entry-header,
body.home .entry-header,
body.home.page .entry-header,
body.home.ast-separate-container .entry-header,
.page-id-8.ast-separate-container .entry-header,
.page-id-8 .entry-title {
    display: none !important;
}
.page-id-8 .entry-content,
body.home .entry-content {
    margin-top: 0 !important;
}
.page-id-8 #primary,
body.home #primary {
    padding-top: 0 !important;
}

/* Language Switcher */
.main-header-bar {
    position: relative;
}
.em-lang-switcher {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 100;
    white-space: nowrap;
}
.em-lang-switcher a {
    text-decoration: none;
    color: #86868B;
    transition: color 0.2s;
}
.em-lang-switcher a:hover {
    color: #E8651E;
}
.em-lang-switcher .em-lang-active {
    color: #E8651E;
}
.em-lang-switcher .em-lang-sep {
    color: #D1D1D6;
}
@media (max-width: 921px) {
    .em-lang-switcher {
        right: 16px;
        font-size: 0.8rem;
    }
}
@media (max-width: 544px) {
    .em-lang-switcher {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        justify-content: center;
        padding: 8px 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .em-hero h1 {
        font-size: 2rem;
    }
    .em-hero p {
        font-size: 1rem;
    }
}
