        :root {
            --arch-bg: #ffffff;
            --text-main: #1a1a1a;
            --accent-pink: #ff3e6c;
            /* Matching your previous theme */
            --transition-soft: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        /* 1. Refined Layout Grid */
        .product-link {
            text-decoration: none !important;
            color: inherit;
        }

        .arch-card {
            position: relative;
            padding-bottom: 10px;
            transition: var(--transition-soft);
        }

        /* 2. The Arch Shape - More Dramatic */
        .arch-image-wrap {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1.5;
            background: #f5f5f5;
            /* This creates the 'Pill' or 'Arch' look */
            border-radius: 40px 15px 40px 15px;

            overflow: hidden;
            z-index: 1;
            transition: var(--transition-soft);
        }

        .arch-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease;
        }

        /* 3. The Floating Info Box - Glassmorphism */
        .arch-info {
            position: relative;
            width: 90%;
            margin: -50px auto 0;
            /* Pull it up further */
            background: rgba(255, 255, 255, 0.207);
            padding: 20px 15px;
            border-radius: 30px 10px 30px 10px;
            z-index: 2;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.4);
            text-align: center;
            transition: var(--transition-soft);
        }



        .arch-card:hover .arch-image-wrap {
            /* Shape shifts slightly on hover for a 'squishy' organic feel */
            /* border-radius: 10px 30px 10px 30px; */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .arch-card:hover .arch-image-wrap img {
            /* transform: scale(1.1) rotate(1deg); */
        }

        .arch-card:hover .arch-info {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-radius: 10px 30px 10px 30px;

            /* width: 94%; */
            /* Expands slightly */
        }

        /* 5. Minimalist Typography */
        .badge-organic {
            position: absolute;
            top: 30px;
            right: 20px;
            background: var(--accent-pink);
            color: #fff;
            padding: 6px 14px;
            border-radius: 50px;
            font-size: 0.65rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
            box-shadow: 0 8px 15px rgba(255, 62, 108, 0.3);
        }

        .price-tag {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--accent);
        }

        .product-title {
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: -0.2px;
        }

        /* Mobile Tweaks */
        @media (max-width: 768px) {
            .arch-info {
                width: 95%;
                margin: -30px auto 0;
                padding: 5px;
            }
        }