        :root {
            --orange: #EF7722;
            --beige: #FFDBB6;
            --pink: #F7A5A5;
        }

        * {
            cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23EF7722' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 19 7-7 3 3-7 7-3-3Z'/%3E%3Cpath d='m18 13-1.5-7.5L2 2l3.5 14.5L13 18l5-5Z'/%3E%3Cpath d='m2 2 5 5'/%3E%3Cpath d='m9.5 14.5 4 4'/%3E%3C/svg%3E"), auto;
        }

        body {
            background-color: var(--beige);
            color: var(--orange);
            font-family: 'Slackside One', cursive;
            margin: 0;
            overflow-x: hidden;
            line-height: 1.2;
        }

        h1, h2, h3, h4, button {
            text-transform: uppercase;
            letter-spacing: -1px;
        }

        /* Responsive Container */
        .pd-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Storytelling Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px) rotate(2deg);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0) rotate(0);
        }

        /* Cart Sidebar */
        #cart-sidebar {
            background: var(--pink);
            border-left: 8px solid var(--orange);
            transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
            z-index: 2000;
        }

        /* Navigation Styles */
        .nav-link {
            position: relative;
            font-size: 1.8rem;
            transition: 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 4px;
            background: var(--orange);
            transition: 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* Buttons */
        .btn-action {
            background: var(--orange);
            color: var(--beige);
            padding: 15px 35px;
            border-radius: 12px;
            font-size: 2rem;
            border: 4px solid var(--orange);
            box-shadow: 8px 8px 0px var(--pink);
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-action:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0px var(--pink);
            background: var(--pink);
            color: var(--orange);
        }

        /* Card Styles */
        .design-card {
            background: var(--pink);
            border: 6px solid var(--orange);
            border-radius: 40px;
            padding: 25px;
            transition: 0.4s;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .design-card:hover {
            transform: rotate(-2deg) scale(1.02);
            background: var(--beige);
        }

        /* Modal Custom Scrollbar */
        #modal-content::-webkit-scrollbar { width: 12px; }
        #modal-content::-webkit-scrollbar-track { background: var(--beige); }
        #modal-content::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

        input {
            background: var(--beige) !important;
            border: 4px solid var(--orange) !important;
            color: var(--orange) !important;
        }
svg g {
    transition: transform 0.3s ease, opacity 0.3s ease;
}
svg:hover g {
    transform: translate(318px, 20px) rotate(-4deg);
    opacity: 1;
}
