 /* CONTENT */
        .content {
            padding-top: 90px;
            padding-bottom: 90px;
        }

        /* LOGO */
        .logo-center {
            text-align: center;
            margin-bottom: 30px;
        }

              .logo-wrapper {
            position: relative;
            width: 110px;
            height: 110px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 10px;
        }
        

 /* Logo tetap diam */
        .logo-wrapper img {
            width: 100px;
            height: 100px;
            border-radius: 15px;
            position: relative;
            z-index: 2;
        }

        /* Lingkaran berputar */
        .logo-spin {
            position: absolute;
            inset: 0;
            border: 5px solid rgba(255, 255, 255, 0);
            border-top: 5px solid #ffffff;
            border-radius: 50%;
            animation: spin 3s linear infinite;
            z-index: 1;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .logo-center h2 {
            margin-top: 6px;
            font-size: 22px;
            line-height: 1.2;
            /* atau 0.95 jika ingin lebih rapat */
            letter-spacing: 1px;
            color: #ffffff;
        }

        /* GRID */
        .store {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
            padding: 20px;
            max-width: 1200px;
            margin: auto;
        }

        /* CARD */
        .card {
            background: #ffffffc5;
            border-radius: 0px;
            padding: 16px;
            text-align: center;
            transition: .3s;
            cursor: pointer;
        }

        .card:hover {
            transform: translateY(-6px);
            background: #ffffff;
            box-shadow: 0 15px 35px rgba(0, 0, 0, .8);
        }

        .card img {
            width: 140px;
            height: 120px;
            object-fit: cover;
            border-radius: 0px;
            margin-bottom: 12px;
        }

        .label {
            color: #000000;
            font-size: 17px;
            font-weight: bold;
            padding: 6px 10px;
            border-radius: 0px;
            margin-bottom: 6px;
            display: inline-block;
        }

        .desc {
            font-size: 14px;
            opacity: .9;
            color: #000;
        }

        .card {
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }