Aunty Gladys - One-of-a-Kind Professional Performance Hand Puppet
:root { /* Updated Palette: Soft Lavender & Warm Peach */ --reg-lavender: #a885ff; --reg-lavender-light: #f3f0ff; --reg-peach: #ffdbc5; --reg-peach-glow: rgba(255, 219, 197, 0.4); --reg-warm-gold: #b58500; --reg-soft-purple: #7c4dff; /* Semantic UI Colors */ --ui-bg-light: #ffffff; --ui-bg-muted: #fdfbf7; /* Warm cream background */ --ui-bg-accent: #f8f5ff; /* Soft lavender section background */ --ui-text-main: #2d2d2d; --ui-text-muted: #5f6368; --ui-border: rgba(124, 77, 255, 0.1); --ui-shadow-card: 0 12px 40px rgba(124, 77, 255, 0.08); /* Layout & Styling */ --radius-lg: 32px; --radius-md: 20px; --radius-sm: 10px; --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } .reg-product-page * { box-sizing: border-box; margin: 0; padding: 0; } .reg-product-page { font-family: var(--font-stack); color: var(--ui-text-main); background-color: var(--ui-bg-muted); line-height: 1.6; -webkit-font-smoothing: antialiased; } .reg-container { max-width: 1100px; margin: 0 auto; padding: 20px; } .reg-card { background: var(--ui-bg-light); border-radius: var(--radius-lg); box-shadow: var(--ui-shadow-card); padding: 35px; margin-bottom: 24px; border: 1px solid var(--ui-border); } .reg-section-title { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 25px; text-align: center; color: var(--reg-soft-purple); } /* HERO HEADER (Lighter & Friendlier) */ .reg-hero { background: linear-gradient(135deg, #fdf8f5 0%, #f5f0ff 100%); color: var(--ui-text-main); padding: 80px 20px; text-align: center; border-radius: var(--radius-lg); margin-bottom: 30px; position: relative; overflow: hidden; border: 1px solid var(--ui-border); } /* Soft glowing decorative circles */ .reg-hero::before, .reg-hero::after { content: ''; position: absolute; width: 350px; height: 350px; border-radius: 50%; filter: blur(100px); opacity: 0.5; z-index: 0; } .reg-hero::before { background: var(--reg-peach); top: -150px; left: -150px; } .reg-hero::after { background: var(--reg-lavender); bottom: -150px; right: -150px; } .reg-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } .reg-title { font-size: 4rem; font-weight: 900; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; } .reg-title span { background: linear-gradient(90deg, var(--reg-soft-purple), var(--reg-lavender)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .reg-subtitle { font-size: 1.3rem; color: var(--ui-text-muted); max-width: 650px; margin: 0 auto 35px; font-weight: 400; } .reg-hero-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; } .reg-hero-badges span { display: inline-block; padding: 12px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; border: 1px solid rgba(124, 77, 255, 0.15); background: white; color: var(--reg-soft-purple); } .reg-hero-badges span.special { background: var(--reg-soft-purple); border: none; color: white; box-shadow: 0 4px 15px rgba(124, 77, 255, 0.2); } /* VALUE PROP (FUNDRAISER) */ .reg-value-prop { background: linear-gradient(135deg, #fffcf5, #fff8f0); border: 2px solid #ffecb3; text-align: center; padding: 45px; } .reg-value-icon { font-size: 3.5rem; margin-bottom: 15px; display: block; } .reg-value-prop h2 { color: var(--reg-warm-gold); font-size: 1.8rem; margin-bottom: 10px; } .reg-value-prop p { font-size: 1.15rem; color: #614d15; max-width: 600px; margin: 0 auto; } /* FEATURE GRID */ .reg-feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; } .reg-feature-item { background: var(--ui-bg-accent); padding: 25px; border-radius: var(--radius-md); border: 1px solid var(--ui-border); display: flex; align-items: start; gap: 18px; } .reg-feature-icon { font-size: 1.6rem; color: var(--reg-lavender); margin-top: 2px; } .reg-feature-text strong { display: block; color: var(--ui-text-main); font-size: 1.15rem; margin-bottom: 4px; } .reg-feature-text span { color: var(--ui-text-muted); font-size: 1rem; } /* INCLUDED LIST */ .reg-included-list { list-style: none; max-width: 650px; margin: 0 auto; } .reg-included-list li { padding: 18px 25px; background: var(--ui-bg-accent); border-radius: var(--radius-md); margin-bottom: 12px; border: 1px solid var(--ui-border); display: flex; align-items: center; gap: 18px; font-size: 1.1rem; } .reg-check-icon { color: #10b981; font-weight: bold; font-size: 1.3rem; } /* BUILDER NOTE */ .reg-builder-card { text-align: center; background-image: radial-gradient(circle at top right, var(--reg-peach-glow), transparent 50%); } .reg-builder-note { font-size: 1.2rem; font-style: italic; color: var(--ui-text-muted); max-width: 750px; margin: 0 auto 35px; line-height: 1.9; position: relative; padding: 0 20px; } .reg-builder-sig { font-weight: 800; font-size: 1.2rem; color: var(--reg-soft-purple); } /* FAQ */ .reg-faq-container { max-width: 850px; margin: 0 auto; } .reg-faq-details { background: var(--ui-bg-light); border: 1px solid var(--ui-border); border-radius: var(--radius-md); margin-bottom: 15px; overflow: hidden; } .reg-faq-summary { display: flex; justify-content: space-between; align-items: center; padding: 22px 28px; font-weight: 700; font-size: 1.1rem; cursor: pointer; list-style: none; color: var(--ui-text-main); } .reg-faq-icon { color: var(--reg-lavender); font-size: 0.9rem; } .reg-faq-answer { padding: 0 28px 28px; color: var(--ui-text-muted); border-top: 1px solid var(--ui-border); background-color: var(--ui-bg-accent); font-size: 1.05rem; } @media (min-width: 768px) { .reg-container { padding: 40px; } .reg-title { font-size: 5.5rem; } .reg-feature-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; } } 1-of-1 Original Build By James Marshall Ships Worldwide from Thailand Meet Aunty Gladys 🌼 Warm, thoughtful, and full of gentle wisdom—the kind of character who always has a story to tell and a cup of tea ready. ⛪ Special April 2026 Fundraiser $100 from this purchase goes directly to Kingfisher Church Pattaya here in Thailand to help with operating costs. Who is Aunty Gladys? Aunty Gladys has the gentle personality of a beloved grandmother figure. She’s the kind of character who enjoys watching birds in the garden, sharing stories from long ago, and helping younger characters learn important lessons about kindness and patience. 📏 70cm Performance Build Roughly 28 inches tall with a commanding, grandmotherly presence. 👓 Bling White Glasses Featuring her signature oversized white frames that add spunk and character. 👗 Vintage Styling A soft peach lace cardigan paired with yellow flower sandals for that grandma charm. ✨ Expressive Features Designed for slower, story-driven performances where personality really shines. 🤲 Arm-Rod Ready Compatible with optional arm rods for maximum expressiveness. 💎 True One-Off Creation This exact Aunty Gladys will never be made again. 1 of 1 created by James Marshall. A Note from the Builder “I built Aunty Gladys as a warm, storytelling character. While working on her, I kept imagining a grandmother sitting by the window watching birds and sharing stories with the children around her. Characters like this are wonderful for slower storytelling moments where the audience can really connect. Whoever ends up with Gladys will own the only one I will ever make.” — James MarshallThe Papa of Pubbets What’s Included ✓ Aunty Gladys (Pubbets Original, 1 of 1) ✓ Lace cardigan, outfit, and flower sandals as shown ✓ 👜 Protective carry bag included ✓ 🚢 Worldwide Shipping (Thailand Post/EMS options) ✓ ⛪ Transparency: $100 donation to Kingfisher Church included. Got Questions? Is Gladys a custom order? ▼ No. Aunty Gladys is a finished, unique performance puppet sold exactly as shown. Once she’s gone, she’s gone. What performances is she best for? ▼ She works beautifully for storytelling, church programs, education, and gentle character interactions. Shipping times? ▼ Ships from Thailand. Thai Post Standard takes around 2 weeks, while EMS takes 6–7 days. U.S. orders generally use Thai Post.
More you might like
Related
Funny Aunty Gifts from Loved Ones, Oval Ornament for Aunty,
Related
GLADYS KNIGHT - NEITHER ONE OF US
Related
Gladys Serrano Flores / FOTOGRAFÍA "ONE OF A KIND"
Related