        /* CSS RESET & VARIABLES */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; font-size: 16px; }
        
        :root {
            --color-terracotta: #DE802B;
            --color-stone: #EEEEEE;
            --color-olive: #84934A;
            --color-charcoal: #1B1B1B;
            --color-warm-gray: #F8F8F6;
            --color-white: #FFFFFF;
            --font-lora: "Lora", serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            font-family: var(--font-lora);
            background-color: var(--color-stone);
            color: var(--color-charcoal);
            overflow-x: hidden;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* UTILITIES & TYPOGRAPHY STYLE GUIDE */
        h1, h2, h3, h4, h5, h6 { font-weight: 400; line-height: 1.2; color: var(--color-charcoal); }
        p { font-size: 1.05rem; font-weight: 300; margin-bottom: 1rem; color: #333; }
        a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
        img { width: 100%; height: auto; object-fit: cover; display: block; }
        
        .section-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--color-olive);
            margin-bottom: 1rem;
            display: block;
            font-weight: 500;
        }
        
        .editorial-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            margin-bottom: 2rem;
            letter-spacing: -1px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background-color: var(--color-terracotta);
            color: var(--color-white);
            padding: 14px 36px;
            font-size: 0.9rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
            z-index: 1;
        }
        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: var(--color-charcoal);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: -1;
        }
        .cta-btn:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        .cta-btn:hover { color: var(--color-white); }

        /* MULTI-PAGE ROUTER APP CONTAINER */
        .app-view { display: none; width: 100%; min-height: 100vh; }
        .app-view.active-view { display: block; animation: fadeInView 0.8s forwards; }
        @keyframes fadeInView { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

        /* HEADER & NAVIGATION */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
            height: 100px;
            display: flex; justify-content: space-between; align-items: center;
            padding: 30px 5%; transition: var(--transition-smooth);
        }
        header.scrolled {
            background: rgba(238, 238, 238, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 15px 5%;
            border-bottom: 1px solid var(--color-olive);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }
        .logo { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px; }
        .logo span { color: var(--color-terracotta); }
        
        nav { display: flex; gap: 40px; }
        nav a { font-size: 0.95rem; letter-spacing: 1px; font-weight: 400; position: relative; padding: 5px 0; }
        nav a::after {
            content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
            background: var(--color-terracotta); transition: var(--transition-smooth); transform: translateX(-50%);
        }
        nav a:hover { transform: translateY(-2px); color: var(--color-terracotta); }
        nav a:hover::after { width: 100%; }
        nav a.active-nav { color: var(--color-terracotta); }
        nav a.active-nav::after { width: 100%; }

        .header-actions { display: flex; align-items: center; gap: 25px; font-size: 1.2rem; }
        .action-icon { cursor: pointer; position: relative; transition: var(--transition-smooth); }
        .action-icon:hover { color: var(--color-terracotta); transform: scale(1.1); }
        .counter-badge {
            position: absolute; top: -8px; right: -12px;
            background: var(--color-terracotta); color: white;
            font-size: 0.7rem; font-family: sans-serif;
            padding: 2px 6px; border-radius: 10px; font-weight: bold;
        }

        /* HAMBURGER MENU */
        .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
        .hamburger div { width: 28px; height: 2px; background-color: var(--color-charcoal); transition: var(--transition-smooth); }

        /* SEARCH OVERLAY */
        .search-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(27,27,27,0.98); z-index: 2000;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            opacity: 0; pointer-events: none; transition: var(--transition-smooth);
        }
        .search-overlay.active { opacity: 1; pointer-events: auto; }
        .search-input {
            width: 60%; background: transparent; border: none; border-bottom: 2px solid var(--color-stone);
            color: var(--color-stone); font-family: var(--font-lora); font-size: 2.5rem; padding: 15px; text-align: center; outline: none;
        }
        .close-search { position: absolute; top: 40px; right: 5%; color: white; font-size: 2.5rem; cursor: pointer; }

        /* SHOPPING OVERLAYS */
        .side-drawer {
            position: fixed; top: 0; right: -450px; width: 450px; height: 100%;
            background: var(--color-white); z-index: 1500; box-shadow: -10px 0 40px rgba(0,0,0,0.1);
            transition: var(--transition-smooth); padding: 40px; display: flex; flex-direction: column;
        }
        .side-drawer.active { right: 0; }
        .drawer-close { position: absolute; top: 30px; right: 30px; font-size: 1.5rem; cursor: pointer; }
        .drawer-items { flex: 1; overflow-y: auto; margin-top: 40px; }
        .drawer-item { display: flex; gap: 15px; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #ddd; }
        .drawer-item img { width: 80px; height: 80px; object-fit: cover; }
        .drawer-total { font-size: 1.3rem; margin-top: 20px; display: flex; justify-content: space-between; font-weight: bold; }

        /* HERO SECTION */
        .hero-gallery {
            position: relative; width: 100%; height: 130vh; overflow: hidden;
            display: flex; align-items: center; justify-content: center; background-color: var(--color-charcoal);
        }
        .hero-video-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover; opacity: 0.45; filter: saturate(0.8) contrast(1.1);
        }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(27,27,27,0.4) 0%, rgba(248,248,246,1) 95%);
        }
        .architectural-frame {
            position: relative; background: rgba(255,255,255,0.08);
            backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2); padding: 60px 80px;
            max-width: 850px; text-align: center; color: var(--color-charcoal);
            box-shadow: 0 30px 60px rgba(0,0,0,0.08); transform: translateY(0px);
            animation: floatFrame 6s ease-in-out infinite;
        }
        @keyframes floatFrame { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
        .architectural-frame h1 { font-size: clamp(2.5rem, 4.5vw, 4.2rem); margin-bottom: 20px; line-height: 1.1; }
        
        .timeline-nav { position: absolute; left: 5%; top: 40%; display: flex; flex-direction: column; gap: 25px; z-index: 10; }
        .timeline-node { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: rgba(27,27,27,0.4); cursor: pointer; position: relative; transition: var(--transition-smooth); }
        .timeline-node::before { content: ''; position: absolute; left: -25px; top: 50%; width: 15px; height: 1px; background: rgba(27,27,27,0.3); transition: var(--transition-smooth); }
        .timeline-node.active, .timeline-node:hover { color: var(--color-terracotta); font-weight: bold; }
        .timeline-node.active::before { width: 30px; background: var(--color-terracotta); }

        .mood-board {
            position: absolute; right: 5%; top: 35%; display: grid; grid-template-columns: repeat(2, 70px); gap: 15px; z-index: 10;
            background: rgba(255,255,255,0.5); padding: 15px; border-radius: 4px; backdrop-filter: blur(5px);
        }
        .mood-swatch { width: 70px; height: 70px; background-size: cover; border-radius: 2px; cursor: pointer; transition: var(--transition-smooth); border: 2px solid transparent; }
        .mood-swatch:hover { transform: scale(1.15) rotate(3deg); z-index: 5; border-color: var(--color-terracotta); }

        /* SIGNATURE COLLECTIONS */
        .signature-section { padding: 140px 5%; background: var(--color-white); }
        .stagger-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 30px; margin-top: 80px; }
        .showcase-block { grid-column: span 6; background: var(--color-warm-gray); padding: 30px; transition: var(--transition-smooth); position: relative; }
        .showcase-block:nth-child(even) { margin-top: 60px; }
        .showcase-block:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(0,0,0,0.05); }
        .showcase-block .img-container { overflow: hidden; height: 450px; margin-bottom: 25px; position: relative; }
        .showcase-block img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .showcase-block:hover img { transform: scale(1.08); }
        .designer-note { font-style: italic; color: #666; font-size: 0.95rem; margin-top: 10px; }

        /* ROOM EXPERIENCE */
        .room-experience { display: flex; min-height: 100vh; width: 100%; background: var(--color-charcoal); }
        .room-panel { flex: 1; position: relative; overflow: hidden; transition: flex 0.8s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; min-height: 70vh; }
        .room-panel img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: var(--transition-smooth); filter: grayscale(30%); }
        .room-content { position: absolute; bottom: 50px; left: 50px; right: 50px; color: var(--color-white); z-index: 10; transition: var(--transition-smooth); }
        .room-panel p { color: rgba(255,255,255,0); transform: translateY(20px); transition: var(--transition-smooth); }
        .room-panel:hover { flex: 2; }
        .room-panel:hover img { opacity: 0.9; filter: grayscale(0%); }
        .room-panel:hover p { color: rgba(255,255,255,0.85); transform: translateY(0); }

        /* MATERIAL ATLAS */
        .material-atlas { padding: 140px 5%; background-color: var(--color-warm-gray); text-align: center; }
        .material-layout { display: flex; align-items: center; justify-content: center; gap: 80px; margin-top: 60px; flex-wrap: wrap; }
        .material-wheel { display: flex; flex-direction: column; gap: 20px; text-align: left; }
        .material-btn { font-size: 1.8rem; opacity: 0.4; cursor: pointer; transition: var(--transition-smooth); }
        .material-btn.active, .material-btn:hover { opacity: 1; color: var(--color-terracotta); transform: translateX(10px); }
        .material-display { display: flex; background: var(--color-white); padding: 40px; max-width: 750px; box-shadow: 0 20px 40px rgba(0,0,0,0.03); gap: 30px; text-align: left; align-items: center; }
        .material-display img { width: 300px; height: 300px; object-fit: cover; }

        /* DESIGN BLUEPRINT */
        .blueprint-section {
            padding: 140px 5%; background-color: #111518; background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 0);
            background-size: 24px 24px; color: white; position: relative;
        }
        .blueprint-section h2, .blueprint-section span { color: white; }
        .blueprint-timeline { display: flex; justify-content: space-between; margin-top: 80px; position: relative; flex-wrap: wrap; gap: 30px; }
        .blueprint-timeline::before { content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,0.2); }
        .blueprint-step { flex: 1; min-width: 200px; position: relative; padding-top: 70px; }
        .blueprint-circle { position: absolute; top: 26px; left: 0; width: 30px; height: 30px; border-radius: 50%; background: #111518; border: 2px solid var(--color-terracotta); transform: scale(1); transition: var(--transition-smooth); }
        .blueprint-step:hover .blueprint-circle { background: var(--color-terracotta); transform: scale(1.3); box-shadow: 0 0 15px var(--color-terracotta); }

        /* FURNITURE MOSAIC MASONRY & GENERAL PRODUCT CARD UI */
        .mosaic-section { padding: 140px 5%; background: var(--color-stone); }
        .mosaic-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 30px; margin-top: 60px; }
        .mosaic-item { position: relative; overflow: hidden; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
        .mosaic-item img { height: 380px; width: 100%; object-fit: cover; }
        .col-4 { grid-column: span 4; }
        .col-8 { grid-column: span 8; }
        .col-6 { grid-column: span 6; }
        
        .product-card-ui { position: relative; }
        .product-badge { position: absolute; top: 30px; left: 30px; background: var(--color-olive); color: white; padding: 4px 12px; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; z-index: 5; }
        .card-actions-overlay {
            position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; gap: 10px;
            opacity: 0; transform: translateY(10px); transition: var(--transition-smooth); z-index: 10;
        }
        .mosaic-item:hover .card-actions-overlay, .product-slide:hover .card-actions-overlay { opacity: 1; transform: translateY(0); }
        .action-btn { flex: 1; padding: 12px; background: var(--color-charcoal); color: white; border: none; font-size: 0.85rem; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition-smooth); }
        .action-btn:hover { background: var(--color-terracotta); }
        .action-btn.wish-btn { background: #444; width: 50px; flex: none; }
        .action-btn.wish-btn:hover { background: #e74c3c; }

        /* FEATURED CAROUSEL */
        .carousel-section { padding: 140px 5%; background: var(--color-white); overflow: hidden; }
        .carousel-container { display: flex; gap: 40px; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); margin-top: 60px; }
        .product-slide { min-width: 450px; max-width: 450px; background: var(--color-warm-gray); padding: 25px; position: relative; }
        .product-slide img { height: 480px; object-fit: cover; }
        .carousel-controls { display: flex; gap: 20px; margin-top: 40px; justify-content: flex-end; }
        .control-arrow { width: 60px; height: 60px; border: 1px solid var(--color-charcoal); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-smooth); }
        .control-arrow:hover { background: var(--color-charcoal); color: white; }

        /* ROOM PLANNER SIMULATION INTERFACE */
        .planner-section { padding: 140px 5%; background: #E2E4E0; }
        .planner-workspace { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-top: 60px; background: var(--color-white); padding: 30px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
        .planner-inventory { border-right: 1px solid #eee; padding-right: 20px; }
        .inventory-item { display: flex; align-items: center; gap: 15px; padding: 15px; background: var(--color-warm-gray); margin-bottom: 15px; cursor: pointer; border: 1px dashed transparent; transition: var(--transition-smooth); }
        .inventory-item:hover { border-color: var(--color-terracotta); background: #fff; }
        .inventory-item img { width: 50px; height: 50px; }
        .canvas-area { height: 600px; background: radial-gradient(#ccc 1px, transparent 1px); background-size: 20px 20px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
        .canvas-placeholder-msg { font-style: italic; color: #888; text-align: center; }
        .placed-element { position: absolute; cursor: move; padding: 10px; background: rgba(255,255,255,0.9); border: 1px solid var(--color-terracotta); box-shadow: 0 4px 10px rgba(0,0,0,0.1); display: flex; flex-direction: column; align-items: center; gap: 5px; animation: popIn 0.3s forwards; }
        @keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
        .placed-element img { width: 70px; height: 70px; }
        .remove-element { font-size: 0.75rem; color: red; cursor: pointer; margin-top: 3px; }

        /* DESIGN JOURNAL */
        .journal-section { padding: 140px 5%; background: var(--color-white); }
        .journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
        .journal-card { background: var(--color-warm-gray); overflow: hidden; transition: var(--transition-smooth); }
        .journal-card:hover { transform: translateY(-8px); }
        .journal-img-wrapper { height: 300px; overflow: hidden; }
        .journal-meta { padding: 30px; }
        .journal-date { font-size: 0.8rem; color: var(--color-olive); text-transform: uppercase; margin-bottom: 10px; display: block; }

        /* SUSTAINABILITY */
        .sustainability-section { padding: 140px 5%; background: var(--color-olive); color: var(--color-white); }
        .sustainability-section h2, .sustainability-section span { color: var(--color-white); }
        .sustainability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; margin-top: 60px; align-items: center; }

        /* NEWSLETTER STUDIO */
        .newsletter-studio { padding: 140px 5%; background: var(--color-stone); }
        .newsletter-container { display: grid; grid-template-columns: repeat(2, 1fr); background: var(--color-white); box-shadow: 0 40px 80px rgba(0,0,0,0.04); }
        .newsletter-form-side { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
        .glass-form-card { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
        .glass-input { padding: 18px; border: 1px solid #ddd; font-family: var(--font-lora); font-size: 1rem; width: 100%; outline: none; }
        .glass-input:focus { border-color: var(--color-terracotta); }

        /* ACCORDION / FAQ ENGINE STYLE GUIDE */
        .faq-container { max-width: 1000px; margin: 60px auto 0 auto; text-align: left; }
        .faq-category-block { margin-bottom: 50px; }
        .faq-cat-title { font-size: 1.6rem; color: var(--color-olive); border-bottom: 1px solid #ddd; padding-bottom: 10px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
        .faq-item { background: var(--color-white); border-bottom: 1px solid #eee; margin-bottom: 10px; }
        .faq-trigger { width: 100%; padding: 22px 30px; text-align: left; background: none; border: none; font-family: var(--font-lora); font-size: 1.15rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth); }
        .faq-trigger:hover { color: var(--color-terracotta); background: var(--color-warm-gray); }
        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); padding: 0 30px; background: #fafafa; }
        .faq-content p { padding: 20px 0; font-size: 1rem; color: #555; margin: 0; }
        .faq-item.active .faq-content { max-height: 300px; }
        .faq-item.active .faq-trigger i { transform: rotate(180deg); color: var(--color-terracotta); }

        /* LEGAL LAYOUT PAGES */
        .legal-wrapper { padding: 160px 5% 100px 5%; background: var(--color-warm-gray); min-height: 100vh; }
        .legal-layout { display: grid; grid-template-columns: 300px 1fr; gap: 60px; max-width: 1400px; margin: 50px auto 0 auto; }
        .legal-sidebar { position: sticky; top: 120px; height: fit-content; background: var(--color-white); padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
        .legal-nav-link { display: block; padding: 12px 0; border-bottom: 1px solid #eee; font-size: 0.95rem; color: #666; }
        .legal-nav-link:hover, .legal-nav-link.active { color: var(--color-terracotta); font-weight: bold; padding-left: 5px; }
        .legal-content-body { background: var(--color-white); padding: 60px; box-shadow: 0 10px 40px rgba(0,0,0,0.02); }
        .legal-content-body h3 { font-size: 1.8rem; margin: 35px 0 15px 0; color: var(--color-olive); }
        .legal-content-body p { margin-bottom: 1.5rem; color: #444; text-align: justify; }

        /* CONTACT INTERFACE */
        .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
        .map-preview { height: 450px; background: #e0e0e0; position: relative; overflow: hidden; }

        /* FOOTER BACKGROUND & TYPOGRAPHY */
        footer { background-color: var(--color-olive); color: var(--color-white); padding: 100px 5% 40px 5%; font-size: 0.95rem; }
        footer h4 { color: var(--color-terracotta); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; font-size: 1.1rem; }
        footer p { color: rgba(255,255,255,0.8); }
        .footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.75); }
        .footer-links a:hover { color: var(--color-terracotta); padding-left: 5px; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.6); flex-wrap: wrap; gap: 20px; }
        
        /* BACK TO TOP */
        .back-to-top { position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px; background: var(--color-terracotta); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transition: var(--transition-smooth); z-index: 999; }
        .back-to-top.visible { opacity: 1; pointer-events: auto; }

        /* RESPONSIVE RESPONSIVENESS */
        @media(max-width: 1024px) {
            nav { display: none; }
            .hamburger { display: flex; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .legal-layout { grid-template-columns: 1fr; }
            .legal-sidebar { display: none; }
            .stagger-grid, .mosaic-grid, .journal-grid, .sustainability-grid, .newsletter-container, .contact-grid { grid-template-columns: 1fr; }
            .showcase-block, .mosaic-item { grid-column: span 12 !important; }
            .material-layout { gap: 40px; }
            .material-display { flex-direction: column; }
            .material-display img { width: 100%; height: auto; }
            .side-drawer { width: 100%; right: -100%; }
        }

        /* MOBILE MENU OVERLAY */
        .mobile-nav-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--color-charcoal);
            z-index: 1200; display: flex; flex-direction: column; justify-content: center; align-items: center;
            gap: 30px; opacity: 0; pointer-events: none; transition: var(--transition-smooth);
        }
        .mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }
        .mobile-nav-overlay a { color: white; font-size: 2rem; }
            .filter-chip {
        transition: all 0.3s ease;
    }
    .filter-chip:hover {
        background: var(--color-terracotta) !important;
        color: white !important;
        border-color: var(--color-terracotta) !important;
        transform: translateY(-2px);
    }
    .mosaic-item.product-card-ui {
        transition: all 0.3s ease;
    }
    .mosaic-item.product-card-ui:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    .no-results-msg {
        animation: fadeInView 0.5s ease;
    }
        .journal-filter {
        transition: all 0.3s ease;
    }
    .journal-filter:hover {
        background: var(--color-terracotta) !important;
        color: white !important;
        border-color: var(--color-terracotta) !important;
        transform: translateY(-2px);
    }
    .journal-card {
        transition: all 0.3s ease;
    }
    .journal-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    .no-journal-results {
        animation: fadeInView 0.5s ease;
    }

        /* Additional styles for newsletter */
    .glass-form-card {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 5px;
    }
    
    #newsletterStatus {
        animation: fadeInStatus 0.5s ease;
    }
    
    @keyframes fadeInStatus {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @media (max-width: 768px) {
        #newsletterUnsubscribeForm > div {
            flex-direction: column;
        }
        #newsletterUnsubscribeForm input {
            width: 100%;
        }
        #newsletterUnsubscribeForm button {
            width: 100%;
        }
    }
