        body {
            background-color: #F8F7BA;
            color: #4A2C40;
            font-family: 'Nunito Sans', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }

        /* Floating Animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        .floating-tile { animation: float 4s ease-in-out infinite; }
        .floating-tile:nth-child(even) { animation-delay: 1.5s; }

        /* Store Shelves */
        .shelf-row {
            position: relative;
            padding-bottom: 2.5rem;
            margin-bottom: 6rem;
            border-bottom: 14px solid #F5C857;
            border-radius: 0 0 30px 30px;
        }
        .shelf-row::after {
            content: '';
            position: absolute;
            bottom: -22px;
            left: 2%;
            width: 96%;
            height: 12px;
            background: rgba(0,0,0,0.15);
            filter: blur(10px);
            z-index: -1;
        }

        /* Polaroid Cards */
        .polaroid {
            background: white;
            padding: 12px 12px 45px 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .polaroid:hover {
            transform: scale(1.05) rotate(0deg) !important;
            z-index: 50;
        }

        /* Views */
        .view-section { display: none; opacity: 0; }
        .view-section.active { display: block; opacity: 1; transition: opacity 0.5s ease-in; }

        .modal-overlay {
            background: rgba(74, 44, 64, 0.9);
            backdrop-filter: blur(8px);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #F8F7BA; }
        ::-webkit-scrollbar-thumb { background: #9B5DE0; border-radius: 10px; }

        .btn-gold {
            background-color: #F5C857;
            color: #4A2C40;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(245, 200, 87, 0.3);
        }

        .masonry-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            grid-auto-rows: 10px;
            gap: 20px;
        }
