body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            background: #fff;
            color: #333;
        }

        /* .container {
            display: flex;
            min-height: 100vh;
        } */

        /* Sidebar */
        .sidebar {
            /* width: 80px; */
            background: #b42e83;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 20px;
        }

        .sidebar-icon {
            margin: 20px 0;
            font-size: 30px;
            position: relative;
            cursor: pointer;
        }

        .sidebar-icon.active::after {
            content: '✔';
            position: absolute;
            top: -10px;
            right: -10px;
            background: #6fcf97;
            border-radius: 50%;
            font-size: 12px;
            padding: 2px 5px;
        }

        /* Main Content */
        /* .main {
            flex: 1;
            padding: 20px 40px;
        } */

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }



        .tag {
            margin-top: 8px;
            display: inline-block;
            background: #f5c8d3;
            color: #b42e83;
            padding: 2px 8px;
            font-size: 12px;
            border-radius: 12px;
        }

        .footer {
            margin-top: 40px;
            text-align: center;
        }

        .next-btn {
            background: #b42e83;
            color: #fff;
            padding: 12px 40px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            cursor: pointer;
        }

        .swiper {
            width: 100%;
            height: 100%;
            margin: 0 auto 30px auto;
        }

        .swiper-wrapper {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .swiper-slide canvas {
            max-width: 100%;
            max-height: 100%;
            display: block;
        }

        .swiper-button-prev,
        .swiper-button-next {
            color: #333;
        }

        .swiper-pagination {
            bottom: 10px !important;
        }
        .colors-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        gap: 25px;
        padding: 0 40px;
    }

    .color-option {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid transparent;
        cursor: pointer;
        transition: 0.3s;
    }

    .color-option.selected {
        border-color: #b42e83;
        box-shadow: 0 0 0 4px #f5c8d3;
    }

    .color-option.custom {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid #fff;
        box-shadow: 0 0 0 2px #b9338d;
        /* magenta outer ring */
    }

    .custom-color-input {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        appearance: none;
    }

    .pencil-icon {
        position: absolute;
        bottom: 4px;
        right: 4px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        padding: 2px;
        pointer-events: none;
    }
    .slice-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .slice-card {
        width: 160px;
        background: #fdf6fa;
        border-radius: 15px;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.3s;
    }

    .slice-card img {
        width: 95%;
        height: auto;
        border-radius: 10px;
    }

    .slice-title {
        font-weight: bold;
        margin: 10px 0 5px;
    }

    .slice-info {
        font-size: 14px;
        color: #666;
    }

    .slice-price {
        margin-top: 5px;
        color: #b42e83;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .slice-grid {
            justify-content: center;
        }

        .slice-card {
            width: 45%;
        }
    }
    .cake-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .cake-card {
        width: 160px;
        background: #fdf6fa;
        border-radius: 15px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.3s;
    }

    .cake-card:hover,
    .cake-card.selected {
        border: 2px solid #b42e83;
    }

    .cake-card img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .cake-title {
        font-weight: bold;
        margin: 10px 0 5px;
    }

    .cake-info {
        font-size: 14px;
        color: #666;
    }

    .cake-price {
        margin-top: 5px;
        color: #b42e83;
        font-weight: bold;
    }

    @media (max-width: 768px) {
        .cake-grid {
            justify-content: center;
        }

        .cake-card {
            width: 45%;
        }
    }