/* ==================== ROOT & COLORS ==================== */
:root {
    --bg-cream: #FAF8F5;
    --text-dark: #2C2C2C;
    --accent-gold: #C4A747;
    --accent-blue: #3D4E5C;
    --accent-terracotta: #A0663F;
    --border-light: #E8E6E1;
    --text-light: #666666;
}

/* ==================== TYPOGRAPHY ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 { font-size: 3rem; line-height: 1.1; }
h2 { font-size: 2.2rem; line-height: 1.2; margin-bottom: 1.5rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; color: var(--text-light); }

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ==================== NAVIGATION ==================== */
.navbar {
    background: var(--accent-blue);
    border-bottom: 3px solid var(--accent-gold);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.logo-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #D4CCC5;
    margin-top: 0.2rem;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* ==================== LANGUAGE SELECTOR ==================== */
.nav-language {
    margin-left: auto;
}

/* Desktop: Language Boxes */
.language-boxes {
    display: flex;
    gap: 0.5rem;
}

.lang-box {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.lang-box:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-gold);
}

.lang-box.active {
    background: white;
    color: var(--accent-blue);
    border-color: white;
    font-weight: 700;
}

/* Mobile: Language Dropdown */
.language-dropdown-mobile {
    position: relative;
    display: none;
}

.language-selector-mobile {
    background: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-selector-mobile:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-gold);
}

.language-menu-mobile {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    min-width: 140px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    margin-top: 0.5rem;
}

.language-menu-mobile a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.language-menu-mobile a:last-child {
    border-bottom: none;
}

.language-menu-mobile a:hover {
    background: var(--bg-cream);
    color: var(--accent-blue);
}

/* Mobile Media Query for Language Selector */
@media (max-width: 768px) {
    .language-boxes {
        display: none;
    }
    
    .language-dropdown-mobile {
        display: block;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #F5F9FC 100%);
    border-bottom: 3px solid var(--accent-blue);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.hero-content h1 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-location {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.9rem 2rem;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-terracotta);
}

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

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

/* ==================== FEATURED SECTION ==================== */
.featured-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 58, 82, 0.03) 0%, rgba(62, 74, 92, 0.05) 100%);
    border-top: 3px solid var(--accent-blue);
    border-bottom: 3px solid var(--accent-gold);
}

.featured-container {
    background: white;
    padding: 3rem;
    border-radius: 4px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.08);
}

.featured-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-blue);
}

.badge {
    display: inline-block;
    background: var(--accent-gold);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-radius: 2px;
}

.featured-product {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 3rem;
    align-items: start;
}

.featured-image {
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/5;
}

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

.featured-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.featured-details {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.featured-story {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.featured-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge-auth, .badge-rare {
    display: inline-block;
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 2px;
}

.featured-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

/* ==================== WHY SECTION ==================== */
.why-section {
    padding: 4rem 2rem;
    background: white;
}

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

.why-container h2 {
    text-align: center;
}

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

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

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
    padding: 4rem 2rem;
}

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

.categories-container h2 {
    text-align: center;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.category-card h3, .category-card p {
    position: absolute;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}

.category-card h3 {
    bottom: 2rem;
    left: 1.5rem;
    font-size: 1.5rem;
}

.category-card p {
    bottom: 0.5rem;
    left: 1.5rem;
    font-size: 0.9rem;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.category-card:hover::after {
    background: rgba(0,0,0,0.35);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(30, 58, 82, 0.02) 0%, rgba(62, 74, 92, 0.03) 100%);
    border-top: 3px solid var(--accent-blue);
    border-bottom: 3px solid var(--accent-gold);
}

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

.services-container h2 {
    text-align: center;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

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

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 0;
    border-left: 4px solid var(--accent-blue);
    border-top: 2px solid var(--accent-gold);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(62, 74, 92, 0.1);
    transform: translateY(-2px);
    border-left-color: var(--accent-gold);
}

.service-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #FCFAF6 100%);
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==================== SHOP PAGE ==================== */
.filters-section {
    padding: 2rem;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.filter-group select,
.filter-group input {
    padding: 0.7rem;
    border: 1px solid var(--border-light);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    background: white;
    color: var(--text-dark);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(196, 167, 71, 0.1);
}

/* ==================== PRODUCTS GRID ==================== */
.shop-section {
    padding: 3rem 2rem;
}

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

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

.product-card {
    background: white;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 8px 20px rgba(62, 74, 92, 0.15);
    transform: translateY(-4px);
    border-color: var(--accent-blue);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
    margin-bottom: 1rem;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-details {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-details span {
    display: inline-block;
}

.product-story {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text-dark);
    min-height: auto;
    flex-grow: 1;
}

.product-badges {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-badge {
    font-size: 0.7rem;
    background: rgba(62, 74, 92, 0.06);
    color: #5a6f88;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    white-space: nowrap;
    font-weight: 500;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

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

.product-actions .btn {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.btn-inquire {
    background: var(--accent-blue);
    color: white;
    font-weight: 600;
}

.btn-inquire:hover {
    background: var(--accent-terracotta);
}

.btn-details {
    background: transparent;
    color: var(--accent-blue);
    border: 1.5px solid var(--accent-blue);
    font-weight: 600;
}

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

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==================== STORY & ABOUT SECTION ==================== */
.story-section {
    padding: 4rem 2rem;
    background: white;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

.story-content {
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.credentials-section {
    padding: 4rem 2rem;
}

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

.credentials-container h2 {
    text-align: center;
}

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

.credential-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-light);
    text-align: center;
}

.credential-card h3 {
    color: var(--accent-blue);
    margin-bottom: 0.8rem;
}

.credential-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ==================== SERVICES DETAIL ==================== */
.services-detail-section {
    padding: 4rem 2rem;
    background: white;
}

.services-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-detail-container h2 {
    text-align: center;
}

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

.service-detail-card {
    padding: 2rem;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
}

.service-detail-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.service-detail-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    color: var(--accent-blue);
    font-weight: 500;
}

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

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 3rem 2rem;
}

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

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

.contact-form-container {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.contact-form-container h2 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1.5px solid var(--border-light);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: white;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(62, 74, 92, 0.08), 0 0 0 1px var(--accent-blue);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.contact-info-container {
    background: var(--bg-cream);
    padding: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2a3f52 100%);
    text-align: center;
    color: white;
    border-top: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.cta-section .btn-primary:hover {
    background: #D4A73E;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 3rem 2rem;
    background: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem;
    border: 1px solid var(--border-light);
    border-radius: 3px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--accent-blue);
    color: white;
    padding: 3rem 2rem 2rem;
    margin-top: 3rem;
    border-top: 3px solid var(--accent-gold);
}

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

.footer-section h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.footer-section a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #E8D8A8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.75rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .featured-product {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .language-menu {
        right: auto;
        left: -20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-buttons {
        flex-direction: column;
    }
    
    .featured-buttons .btn {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.5rem 0.75rem;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 0.95rem;
        font-weight: 700;
        letter-spacing: -0.3px;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
        display: none;
    }
    
    .nav-menu {
        gap: 0.75rem;
        font-size: 0.75rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .featured-section {
        padding: 2rem 1rem;
    }
    
    .featured-container {
        padding: 1.5rem;
    }
    
    .filter-group {
        min-width: 100%;
    }
}

/* ==============================
   SHOP CARDS - REFRESHED v2
   ============================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #B8860B;
}

.product-image-container {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f5f3f0;
    overflow: hidden;
}

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

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

.no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #999;
    font-size: 2rem;
    background: linear-gradient(135deg, #f5f3f0 0%, #eae5dd 100%);
}
.no-image-placeholder span {
    font-size: 0.85rem;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.photo-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 60%;
}

.product-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-authenticated { background: rgba(27, 58, 82, 0.9); color: white; }
.badge-rare { background: rgba(184, 134, 11, 0.9); color: white; }
.badge-documented { background: rgba(107, 91, 149, 0.9); color: white; }
.badge-museum { background: rgba(139, 69, 19, 0.9); color: white; }
.badge-provenance { background: rgba(85, 107, 47, 0.9); color: white; }

/* Product info section */
.product-info {
    padding: 20px 20px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8860B;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0 0 10px 0;
    line-height: 1.3;
    min-height: 1.6em;
}

.product-hook {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 14px 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B3A52;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* Action buttons */
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 20px 20px;
}

.btn-inquire, .btn-details {
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    font-family: inherit;
}

.btn-inquire {
    background: transparent;
    color: #1B3A52;
    border: 1.5px solid #1B3A52;
}
.btn-inquire:hover {
    background: #1B3A52;
    color: white;
    transform: translateY(-1px);
}

.btn-details {
    background: #1B3A52;
    color: white;
    border: 1.5px solid #1B3A52;
}
.btn-details:hover {
    background: #B8860B;
    border-color: #B8860B;
    transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 12px;
    }
    .product-badges { max-width: 70%; }
    .product-badge { font-size: 0.65rem; padding: 3px 8px; }
    .product-info { padding: 16px 16px 12px; }
    .product-name { font-size: 1.1rem; }
    .product-actions { padding: 0 16px 16px; grid-template-columns: 1fr; }
}

/* ==============================
   MOBILE FIXES v3
   ============================== */

/* Mobile: smaller language button */
@media (max-width: 768px) {
    .language-boxes { display: none !important; }
    .language-dropdown-mobile { display: block !important; }
    .language-selector-mobile {
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        background: transparent !important;
        border: 1px solid #ccc !important;
        color: #666 !important;
        border-radius: 4px !important;
        cursor: pointer;
    }
    .language-selector-mobile:hover {
        border-color: #1B3A52 !important;
        color: #1B3A52 !important;
    }
    .language-menu-mobile {
        right: 0; left: auto;
        min-width: 130px;
    }
}

/* Hide photo count badge - clean look */
.photo-count { display: none !important; }

/* Product detail: NO sticky gallery on mobile */
@media (max-width: 900px) {
    .gallery-container {
        position: static !important;
        align-self: unset !important;
    }
    .main-image-wrapper {
        aspect-ratio: unset;
        max-height: 60vh;
    }
    .main-image {
        max-height: 60vh;
        object-fit: contain;
    }
}

/* WhatsApp button - subtler, no flicker */
.cta-whatsapp {
    background: #4a5f4a !important;
    color: white;
}
.cta-whatsapp:hover {
    background: #3a4f3a !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ==============================
   HOMEPAGE FEATURED SECTION - v2
   ============================== */

.homepage-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 30px auto 0;
}

.homepage-featured-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-style: italic;
}

.homepage-featured-empty p {
    margin: 0;
}

/* Categories without images - just clean text tiles */
.categories-grid.no-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.category-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f3f0 0%, #eae5dd 100%);
    border-radius: 8px;
    text-decoration: none;
    color: #2C2C2C;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    min-height: 140px;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #B8860B;
    background: linear-gradient(135deg, #fff 0%, #f5f3f0 100%);
}

.category-tile-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #B8860B;
}

.category-tile-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.category-tile-label {
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.category-tile-count {
    font-size: 0.75rem;
    color: #999;
    margin-top: 8px;
}

/* Note about description language */
.description-note {
    background: #f9f7f4;
    border-left: 3px solid #B8860B;
    padding: 12px 16px;
    margin: 20px 0;
    font-size: 0.85rem;
    color: #666;
    border-radius: 4px;
}


/* ==============================
   MOBILE FIXES v4 - Navbar alignment & language button
   ============================== */

@media (max-width: 768px) {
    /* Ensure nav items are vertically centered and don't wrap */
    .nav-menu {
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .nav-menu li {
        display: flex;
        align-items: center;
    }
    
    .nav-menu a {
        white-space: nowrap !important;
        display: inline-flex;
        align-items: center;
        line-height: 1;
    }
    
    /* Language button - clearer but still subtle */
    .language-selector-mobile {
        padding: 5px 10px !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.5px !important;
        background: rgba(255, 255, 255, 0.6) !important;
        border: 1px solid #999 !important;
        color: #333 !important;
        border-radius: 4px !important;
        font-weight: 600 !important;
        cursor: pointer;
        line-height: 1;
        white-space: nowrap;
    }
    .language-selector-mobile:hover {
        background: white !important;
        border-color: #1B3A52 !important;
        color: #1B3A52 !important;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.6rem !important;
    }
    
    .nav-menu a {
        font-size: 0.72rem !important;
        padding: 4px 2px !important;
    }
    
    /* Prevent About/other tabs from wrapping */
    .nav-menu li a {
        white-space: nowrap !important;
    }
    
    .language-selector-mobile {
        padding: 4px 8px !important;
        font-size: 0.68rem !important;
    }
}

/* Even tighter for very narrow screens */
@media (max-width: 380px) {
    .nav-container {
        padding: 0.5rem 0.5rem !important;
    }
    
    .nav-menu {
        gap: 0.4rem !important;
    }
    
    .nav-menu a {
        font-size: 0.68rem !important;
    }
    
    .logo {
        font-size: 0.85rem !important;
    }
}

/* ==============================
   SHOP TABS (Available / Archive)
   ============================== */

.shop-tabs-section {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.shop-tabs-container {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 0;
}

.shop-tab {
    padding: 14px 24px;
    border: none;
    background: transparent;
    color: #999;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.shop-tab:hover {
    color: #2C2C2C;
    background: rgba(184, 134, 11, 0.05);
}

.shop-tab.active {
    color: #1B3A52;
    border-bottom-color: #B8860B;
}

.shop-tab-count {
    display: inline-block;
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    min-width: 24px;
    text-align: center;
}

.shop-tab.active .shop-tab-count {
    background: #B8860B;
    color: white;
}

@media (max-width: 480px) {
    .shop-tab {
        padding: 10px 12px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
        flex: 1;
        justify-content: center;
    }
    
    .shop-tab-count {
        padding: 2px 6px;
        font-size: 0.7rem;
    }
}

/* ==============================
   NAV MOBILE - Show short text
   ============================== */

.nav-text-short { display: none; }
.nav-text-full { display: inline; }

@media (max-width: 640px) {
    .nav-text-short { display: inline; }
    .nav-text-full { display: none; }
}

/* Mobile: show only active language */
.lang-active-label {
    display: none;
}

@media (max-width: 768px) {
    .language-selector-mobile {
        min-width: 40px;
        padding: 5px 12px !important;
        background: rgba(255, 255, 255, 0.85) !important;
        border: 1px solid #999 !important;
        color: #1B3A52 !important;
        font-weight: 700 !important;
        text-transform: uppercase;
    }
}

/* ==============================
   REFINED HERO (clean & elegant)
   ============================== */

.hero-refined {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #F5F3F0 0%, #F5F9FC 100%);
    border-bottom: 3px solid #1B3A52;
    position: relative;
}

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

/* Decorative line + ornament above title */
.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;  /* Slightly tighter */
}
.hero-line-left,
.hero-line-right {
    display: inline-block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, #B8860B, transparent);
}
.hero-ornament {
    color: #B8860B;
    font-size: 0.9rem;
    letter-spacing: 4px;
}

/* Tighten spacing inside hero */
.hero-refined h1 {
    margin-bottom: 0.5rem;
}
.hero-refined .hero-subtitle {
    margin-bottom: 0.4rem;
}
.hero-refined .hero-location {
    margin-bottom: 1.5rem;  /* Reduced from 2rem */
}

/* ==============================
   FEATURED MOSAIC (homepage)
   ============================== */

.featured-mosaic-section {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f9f7f4 0%, #f5f3f0 100%);
    border-top: 1px solid rgba(184, 134, 11, 0.15);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    position: relative;
}

/* Subtle decorative accents on borders */
.featured-mosaic-section::before,
.featured-mosaic-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
}
.featured-mosaic-section::before {
    top: -2px;
}
.featured-mosaic-section::after {
    bottom: -2px;
}

.featured-mosaic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-mosaic-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-mosaic-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #2C2C2C;
    margin: 8px 0 0;
}

.featured-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 10px;
}

/* 9 items with large: 4 cols x 3 rows = 12 cells, large=4 + 8x1 = 12 ✓ */
.featured-mosaic.with-large.items-9 {
    grid-template-rows: repeat(3, 180px);
}

/* 5 items with large: 4 cols x 2 rows = 8 cells, large=4 + 4x1 = 8 ✓ */
.featured-mosaic.with-large.items-5 {
    grid-template-rows: repeat(2, 180px);
}

/* Uniform 8: 4 cols x 2 rows */
.featured-mosaic.uniform.items-8 {
    grid-template-rows: repeat(2, 180px);
}

.mosaic-tile {
    position: relative;
    overflow: hidden;
    background: #f5f3f0;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.4s;
    display: block;
}

.mosaic-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(184, 134, 11, 0.25);
    z-index: 5;
}

.mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}

.mosaic-tile:hover img {
    transform: scale(1.06);
}

/* Large tile takes 2x2 space */
.mosaic-tile.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Featured star badge */
.mosaic-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(184, 134, 11, 0.95);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Overlay slides up on hover */
.mosaic-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(28, 40, 60, 0.95) 0%, rgba(28, 40, 60, 0.85) 60%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.35s ease;
    text-align: left;
}

.mosaic-tile:hover .mosaic-tile-overlay {
    transform: translateY(0);
}

/* On mobile the overlay is always visible (touch devices don't hover) */
@media (hover: none) {
    .mosaic-tile-overlay {
        transform: translateY(0);
    }
}

.mosaic-tile-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 4px;
    color: white;
}

.mosaic-tile-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: #E5C687;
}

/* Placeholder for missing images */
.mosaic-tile.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f3f0, #eae5dd);
    color: #B8860B;
    font-size: 2rem;
}
.mosaic-tile.placeholder::before {
    content: '📷';
}

/* Tablet */
@media (max-width: 900px) {
    .featured-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }
    .mosaic-tile.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .featured-mosaic-section {
        padding: 3rem 1rem;
    }
    .featured-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 8px;
    }
    .mosaic-tile.large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .mosaic-tile-overlay {
        padding: 10px;
        transform: translateY(0);
    }
    .mosaic-tile-name {
        font-size: 0.8rem;
    }
    .mosaic-tile-price {
        font-size: 0.7rem;
    }
    .hero-refined {
        padding: 2rem 1.5rem;
    }
}



/* ==============================
   REFINED ABOUT PAGE (text-focused with typography design)
   ============================== */

.story-refined {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #F5F3F0 0%, white 100%);
}

.story-container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.story-decoration-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.story-refined .story-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    text-align: center;
    color: #2C2C2C;
    margin: 0 0 40px 0;
    line-height: 1.3;
    font-weight: 500;
}

.story-refined p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
    margin: 0 0 1.5rem 0;
    text-align: justify;
    hyphens: auto;
}

/* First paragraph with elegant drop cap */
.story-first-p p::first-letter {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    float: left;
    line-height: 0.85;
    padding: 6px 12px 0 0;
    color: #B8860B;
    font-weight: 500;
}

/* Elegant pull-quote block */
.story-pullquote {
    margin: 3rem 0;
    padding: 2rem 3rem;
    text-align: center;
    position: relative;
    border-top: 1px solid #eae5dd;
    border-bottom: 1px solid #eae5dd;
}

.story-pullquote::before,
.story-pullquote::after {
    content: '◆';
    position: absolute;
    color: #B8860B;
    font-size: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #F5F3F0 0%, white 100%);
    padding: 0 10px;
}

.story-pullquote::before {
    top: -5px;
}
.story-pullquote::after {
    bottom: -5px;
}

.story-pullquote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem !important;
    font-style: italic;
    color: #1B3A52;
    text-align: center !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    hyphens: none !important;
}

/* Signature line at end */
.story-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 3rem;
    padding-top: 2rem;
}

.story-signature-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: #B8860B;
}

@media (max-width: 640px) {
    .story-refined {
        padding: 3rem 1.5rem;
    }
    
    .story-refined .story-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .story-refined p {
        font-size: 1rem;
        text-align: left;
    }
    
    .story-first-p p::first-letter {
        font-size: 3.2rem;
    }
    
    .story-pullquote {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .story-pullquote p {
        font-size: 1.05rem !important;
    }
}


/* ==============================
   ADAPTIVE MOSAIC - Tablet layout fix
   ============================== */

@media (max-width: 900px) {
    .featured-mosaic.with-large.items-9,
    .featured-mosaic.with-large.items-5,
    .featured-mosaic.uniform.items-8 {
        grid-template-rows: auto;
    }
}

/* ==============================
   REFINED CATEGORY TILES (elegant photos instead of emoji)
   ============================== */

.categories-refined {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.categories-refined .category-tile {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border: 1px solid #eae5dd;
    padding: 0;
    text-align: center;
    transition: all 0.35s;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    border-radius: 2px;
}

.categories-refined .category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(184, 134, 11, 0.2);
    border-color: #B8860B;
}

.category-tile-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #f5f3f0;
    position: relative;
    transition: transform 0.6s;
    background-image: linear-gradient(135deg, #f5f3f0 0%, #eae5dd 100%);
    overflow: hidden;
}

.category-tile-image.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.15) 100%);
    transition: background 0.3s;
}

/* Elegant placeholder when no image */
.category-tile-image:not(.has-image)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid #B8860B;
    border-radius: 50%;
    opacity: 0.3;
}
.category-tile-image:not(.has-image)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #B8860B;
    border-radius: 50%;
    opacity: 0.4;
}

.categories-refined .category-tile:hover .category-tile-image {
    transform: scale(1.04);
}

.categories-refined .category-tile:hover .category-tile-image.has-image::after {
    background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.05) 100%);
}

.categories-refined .category-tile-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: #2C2C2C;
    margin: 18px 0 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.categories-refined .category-tile-label {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #B8860B;
    font-weight: 600;
    margin: 0 0 8px;
}

.categories-refined .category-tile-count {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 20px;
    font-style: italic;
}

@media (max-width: 600px) {
    .categories-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
    .categories-refined .category-tile-name {
        font-size: 1.1rem;
        margin: 12px 0 4px;
    }
    .categories-refined .category-tile-label {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    .categories-refined .category-tile-count {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
}

/* ==============================
   WHY MATTHEW - REFINED (museum quality typography)
   ============================== */

.why-refined {
    padding: 5rem 2rem;
    background: white;
    position: relative;
}

.why-refined .why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.why-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #B8860B;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-refined h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #2C2C2C;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.why-grid-refined {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

.why-card-refined {
    background: transparent;
    padding: 0;
    text-align: left;
    box-shadow: none;
    border: none;
    position: relative;
    transition: transform 0.3s;
}

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

.why-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #B8860B;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.85;
}

.why-line {
    width: 40px;
    height: 1px;
    background: #B8860B;
    margin-bottom: 16px;
    transition: width 0.4s ease;
}

.why-card-refined:hover .why-line {
    width: 80px;
}

.why-card-refined h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    color: #2C2C2C;
    margin: 0 0 10px 0;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.why-card-refined p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 900px) {
    .why-grid-refined {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .why-refined {
        padding: 3rem 1.5rem;
    }
    .why-header {
        margin-bottom: 2.5rem;
    }
    .why-refined h2 {
        font-size: 1.6rem;
    }
    .why-number {
        font-size: 2rem;
    }
    .why-card-refined h3 {
        font-size: 1.15rem;
    }
    .why-grid-refined {
        gap: 2rem;
    }
}

/* ==============================
   ARCHIVE CATEGORY TILE (subtle differentiation)
   ============================== */

.category-tile-archive .category-tile-image {
    /* Slight desaturation for "past" feel — matches Archive page */
    filter: grayscale(15%);
    transition: filter 0.4s, transform 0.6s;
}

.category-tile-archive:hover .category-tile-image {
    filter: grayscale(0%);
}

.category-tile-archive .category-tile-image.has-image::before {
    content: 'VERKAUFT';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(139, 20, 20, 0.9);
    color: white;
    padding: 3px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    /* Reset the pattern-only placeholder styling */
    border: none;
    width: auto;
    height: auto;
    top: 12px !important;
    left: auto !important;
    transform: none !important;
    opacity: 1;
    border-radius: 2px;
}

.category-tile-archive .category-tile-image.has-image::after {
    /* Slightly darker overlay for archived feel */
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 100%);
}

/* ==========================================================
   IMAGE FIT — never crop the object
   For antiques and art, cutting off a statue's head is worse
   than a little letterboxing. `contain` guarantees the whole
   piece is always visible, whatever the photo's aspect ratio.
   ========================================================== */

.product-image,
.mosaic-tile img,
.archive-image {
    object-fit: contain !important;
    background: #f7f5f2;
    padding: 6px;
}

.product-image-container {
    background: #f7f5f2;
}

/* Category tiles keep `cover` — they are decorative backdrops,
   not the object itself, so cropping is fine there. */
.category-tile-image {
    object-fit: cover;
}

/* ==========================================================
   SHOP SEARCH
   ========================================================== */

.shop-search-section {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.shop-search-wrap {
    position: relative;
    max-width: 520px;
}

.shop-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #B8860B;
    font-size: 1.15rem;
    pointer-events: none;
}

.shop-search-input {
    width: 100%;
    padding: 12px 40px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}

.shop-search-input:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}

.shop-search-input::-webkit-search-cancel-button { display: none; }

.shop-search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 8px;
}
.shop-search-clear:hover { color: #2C2C2C; }

.artist-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.artist-chip {
    background: white;
    border: 1px solid #e0dbd2;
    color: #444;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}
.artist-chip:hover {
    border-color: #B8860B;
    color: #1B3A52;
    background: rgba(184,134,11,0.06);
}
.artist-chip span {
    color: #B8860B;
    font-weight: 700;
    margin-left: 4px;
    font-size: 0.72rem;
}

/* ==========================================================
   CATEGORY PILLS
   ========================================================== */

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto 16px;
    padding: 0 20px;
}

.cat-pill {
    background: white;
    border: 1px solid #e0dbd2;
    color: #555;
    padding: 8px 16px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.cat-pill:hover {
    border-color: #B8860B;
    color: #1B3A52;
}
.cat-pill.active {
    background: #1B3A52;
    border-color: #1B3A52;
    color: white;
}
.cat-pill span {
    font-size: 0.72rem;
    opacity: 0.65;
    margin-left: 5px;
    font-weight: 600;
}
.cat-pill.active span { opacity: 0.85; }

.filter-result-count {
    margin-left: auto;
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

/* Pills on desktop, dropdown on mobile — saves vertical space on phones */
@media (min-width: 769px) {
    .filter-group-mobile-cat { display: none; }
}
@media (max-width: 768px) {
    .category-pills { display: none; }
    .filter-result-count { margin-left: 0; width: 100%; }
    .shop-search-section { padding: 0 12px; }
    .shop-search-wrap { max-width: 100%; }
}

/* ==========================================================
   BACK TO TOP
   ========================================================== */

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #B8860B;
    background: rgba(27, 58, 82, 0.94);
    color: white;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { background: #B8860B; }

@media (max-width: 600px) {
    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* Product detail: artist line + shipping note */
.detail-artist {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #B8860B;
    margin: 2px 0 8px;
}

.shipping-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    background: #f9f7f4;
    border-left: 2px solid #B8860B;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}
.shipping-note-icon { flex-shrink: 0; }

/* ==========================================================
   FILTER EMPHASIS
   The filters were competing with the artist chips and losing.
   Larger, bolder, with clearer separation from the search block.
   ========================================================== */

.filters-section {
    border-top: 1px solid #eae5dd;
    padding-top: 18px;
    margin-top: 18px;
}

.cat-pill {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 18px;
    letter-spacing: 0.2px;
}
.cat-pill span {
    font-size: 0.78rem;
    font-weight: 700;
}

.filters-container .filter-group label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #1B3A52;
    margin-right: 8px;
}

.filters-container select {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 9px 14px;
    border: 1px solid #d5cec2;
    border-radius: 3px;
    background: white;
    color: #2C2C2C;
    font-family: inherit;
    cursor: pointer;
}
.filters-container select:hover { border-color: #B8860B; }
.filters-container select:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.12);
}

/* Artist chips are a secondary aid — keep them visually quieter
   than the filters so the hierarchy reads correctly. */
.artist-chips { margin-top: 10px; opacity: 0.92; }
.artist-chip { font-size: 0.76rem; padding: 5px 11px; }

.filter-result-count { font-size: 0.9rem; font-weight: 600; font-style: normal; color: #777; }

@media (max-width: 768px) {
    .cat-pill { font-size: 0.88rem; padding: 9px 14px; }
    .filters-container select { font-size: 0.9rem; }
}

/* ==========================================================
   SEARCH BAR — clearer for older visitors
   Placeholder text removed (it was being read as content
   rather than a hint), so the icon has to carry the meaning.
   ========================================================== */

.shop-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    color: #1B3A52;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.shop-search-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.shop-search-input {
    padding: 15px 44px 15px 50px;
    font-size: 1.05rem;
    border: 2px solid #cfc7ba;
    background: white;
}

.shop-search-input:focus {
    border-color: #B8860B;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

.shop-search-clear {
    font-size: 1.7rem;
    padding: 4px 10px;
}

/* Artist chips removed from the shop page */
.artist-chips { display: none !important; }

@media (max-width: 600px) {
    .shop-search-icon,
    .shop-search-icon svg { width: 23px; height: 23px; }
    .shop-search-input {
        padding: 13px 40px 13px 45px;
        font-size: 1rem;
    }
}

/* ==========================================================
   CONTACT FORM STATUS + SPAM TRAP
   ========================================================== */

/* Honeypot: hidden from people, visible to bots that fill every field */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form-status {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.5;
}
.form-status.success {
    background: #edf7ed;
    border-left: 3px solid #2e7d32;
    color: #1b5e20;
}
.form-status.error {
    background: #fdecea;
    border-left: 3px solid #c62828;
    color: #8b1a1a;
}
.form-status a { color: inherit; font-weight: 600; }

/* ==========================================================
   FIELD VALIDATION
   ========================================================== */
.field-error {
    color: #c62828;
    font-size: 0.82rem;
    margin-top: 5px;
    line-height: 1.4;
}
input.input-error,
textarea.input-error {
    border-color: #c62828 !important;
    background: #fffafa;
}

/* Clickable contact line on product pages - tap to mail or call */
.detail-contact-line {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
    font-size: 0.9rem;
}
.detail-contact-line a {
    color: #1B3A52;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 4px;      /* generous tap target on phones */
    white-space: nowrap;
}
.detail-contact-line a:hover { color: #B8860B; }

/* ==========================================================
   NEWSLETTER SIGNUP (footer)
   ========================================================== */
.footer-newsletter { max-width: 320px; }

.newsletter-intro {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.9;
}

.newsletter-row { display: flex; gap: 0; }

.newsletter-input {
    flex: 1;
    min-width: 0;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.35);
    border-right: none;
    border-radius: 3px 0 0 3px;
    background: rgba(255,255,255,0.95);
    color: #2C2C2C;
    font-size: 0.9rem;
    font-family: inherit;
}
.newsletter-input:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 0 2px rgba(184,134,11,0.3);
}

.newsletter-btn {
    padding: 10px 16px;
    border: 1px solid #B8860B;
    border-radius: 0 3px 3px 0;
    background: #B8860B;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.newsletter-btn:hover:not(:disabled) { background: #9a7009; }
.newsletter-btn:disabled { opacity: 0.6; cursor: default; }

.newsletter-status {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.4;
    padding: 7px 10px;
    border-radius: 3px;
}
.newsletter-status.success { background: rgba(46,125,50,0.2); color: #c8e6c9; }
.newsletter-status.error   { background: rgba(198,40,40,0.2); color: #ffcdd2; }

.newsletter-privacy {
    font-size: 0.72rem;
    opacity: 0.65;
    margin-top: 8px;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .footer-newsletter { max-width: 100%; }
    .newsletter-row { flex-direction: column; gap: 8px; }
    .newsletter-input { border-right: 1px solid rgba(255,255,255,0.35); border-radius: 3px; }
    .newsletter-btn { border-radius: 3px; padding: 12px 16px; }
    .detail-contact-line { flex-direction: column; gap: 4px; }
    .detail-contact-line a { padding: 10px 4px; }
}

/* Sold badge on shop-page product cards (Verkauft/Archiv tab).
   Same visual language as the standalone archive.html page, so a sold
   piece reads as "sold" consistently wherever it appears on the site. */
.product-card .sold-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(139, 20, 20, 0.95);
    color: white;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 2;
}

.product-card-sold .product-image {
    filter: grayscale(15%);
    transition: filter 0.3s ease;
}

.product-card-sold:hover .product-image {
    filter: grayscale(0%);
}
