 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --rose-primary: #E91E63;
            --rose-light: #FCE4EC;
            --rose-medium: #F8BBD0;
            --rose-dark: #C2185B;
            --text-primary: #2C2C2C;
            --text-secondary: #666;
            --bg-cream: #FFF8F5;
            --white: #FFFFFF;
            --shadow-soft: 0 4px 20px rgba(233, 30, 99, 0.1);
            --shadow-medium: 0 8px 30px rgba(233, 30, 99, 0.15);
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
        }

        /* Typography */
        .rfgl-h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 300;
            color: var(--rose-dark);
            text-align: center;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .rfgl-h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 400;
            color: var(--rose-primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .rfgl-h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--rose-primary), transparent);
        }

        /* Container */
        .rfgl-article {
            width: 100%;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }

        /* Hero Section */
        .rfgl-hero {
            text-align: center;
            padding: 3rem 0 4rem;
            background: var(--white);
            border-radius: 20px;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-soft);
        }

        .rfgl-client {
            font-size: 1.2rem;
            color: var(--text-secondary);
            font-style: italic;
            max-width: 700px;
            margin: 0 auto 2rem;
            padding: 0 1rem;
        }

        .rfgl-intro {
            max-width: 90% ;
            margin: 0 auto;
            padding: 2rem;
            background: var(--rose-light);
            border-radius: 15px;
            border-left: 4px solid var(--rose-primary);
        }

        .rfgl-intro p {
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        /* Rosy Card */
        .rfgl-rosy {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: linear-gradient(135deg, var(--rose-medium) 0%, var(--rose-light) 100%);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 80%;
            box-shadow: var(--shadow-soft);
        }

        .rfgl-rosy-img {
            width: 80px;
            height: 80px;
            flex-shrink: 0;
            border-radius: 50%;
            border: 3px solid var(--white);
        }

        .rfgl-rosy-title {
            font-weight: 600;
            color: var(--rose-dark);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .rfgl-rosy-text {
            color: var(--text-primary);
        }

        /* Step Sections */
        .rfgl-step {
            background: var(--white);
            padding: 3rem 2rem;
            margin-bottom: 2rem;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rfgl-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .rfgl-text {
            max-width: 99%;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
            font-size: 1.05rem;
        }

        .rfgl-text p {
            margin-bottom: 1rem;
        }

        /* Quote */
        .rfgl-quote {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: var(--bg-cream);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem auto;
            max-width: 80%;
            border-left: 4px solid var(--rose-primary);
        }

        .rfgl-quote-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .rfgl-quote-title {
            font-weight: 600;
            color: var(--rose-dark);
            margin-bottom: 0.5rem;
        }

        .rfgl-quote-text {
            color: var(--text-primary);
            font-style: italic;
        }

        /* Minimal Card */
        .rfgl-minimal {
            background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
            color: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem auto;
            max-width: 800px;
            text-align: center;
            box-shadow: var(--shadow-medium);
        }

        .rfgl-minimal strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        /* Product List */
        .rfgl-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            list-style: none;
            margin: 3rem 0;
        }

        .rfgl-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rfgl-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }

        .rfgl-thumb {
            display: block;
            overflow: hidden;
            aspect-ratio: 1;
        }

        .rfgl-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .rfgl-item:hover .rfgl-thumb img {
            transform: scale(1.08);
        }

        .rfgl-meta {
            padding: 1.5rem;
        }

        .rfgl-title {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .rfgl-title:hover {
            color: var(--rose-primary);
        }

        .rfgl-price {
            font-size: 1.3rem;
            color: var(--rose-dark);
            font-weight: 600;
        }

        .rfgl-price del {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-right: 0.5rem;
        }

        /* Actions */
        .rfgl-actions {
            display: flex;
            gap: 0.5rem;
            padding: 0 1.5rem 1.5rem;
        }

        .rfgl-atc,
        .rfgl-view {
            flex: 1;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .rfgl-atc {
            background: var(--rose-primary);
            color: var(--white);
        }

        .rfgl-atc:hover {
            background: var(--rose-dark);
            transform: translateY(-2px);
        }

        .rfgl-view {
            background: transparent;
            color: var(--rose-primary);
            border: 2px solid var(--rose-primary);
        }

        .rfgl-view:hover {
            background: var(--rose-primary);
            color: var(--white);
        }

        /* CTA Row */
        .rfgl-ctaRow {
            text-align: center;
            margin: 3rem 0;
        }

        .rfgl-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, var(--rose-primary), var(--rose-dark));
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .rfgl-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(233, 30, 99, 0.25);
        }

        .rfgl-hint {
            display: block;
            margin-top: 0.8rem;
            color: var(--text-secondary);
            font-style: italic;
            font-size: 0.9rem;
        }

        /* Footer */
        .rfgl-footer {
            text-align: center;
            padding: 3rem 2rem;
            background: var(--rose-light);
            border-radius: 20px;
            margin-top: 3rem;
        }

        .rfgl-footer-text {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-primary);
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rfgl-article {
                padding: 1rem;
            }

            .rfgl-rosy,
            .rfgl-quote {
                flex-direction: column;
                text-align: center;
            }

            .rfgl-rosy-img,
            .rfgl-quote-avatar {
                margin: 0 auto;
            }

            .rfgl-list {
                grid-template-columns: 1fr;
            }

            .rfgl-step {
                padding: 2rem 1.5rem;
            }
        }