Curations By The Good Scent Marshmallow Sugar Eau De Parfum
Indulge in an enchanting blend of sugary sweetness with Marshmallow Sugar by Curations By The Good Scent. Opening with fluffy whipped marshmallow and spun cotton candy, this decadent fragrance transitions into delicate floral heart notes of sugared jasmine and rose chantilly. Base notes of creamy vanilla bean, white musk, and sandalwood wrap you in a warm, cozy finish.
Fragrance Notes
-
Top Notes: Whipped Marshmallow, Cotton Candy
-
Mid Notes: Sugared Jasmine, Rose Chantilly
-
Base Notes: White Musk, Vanilla Bean, Sandalwood
```[cite: 22]
**Category**
Beauty & Personal Care > Personal Care > Cosmetics > Perfume & Cologne
**Type**
Eau De Parfum[cite: 21, 23]
**Vendor**
Curations By The Good Scent[cite: 21, 23]
**Collections**
* eau-de-parfum
* womens-fragrances
* gourmand-fragrances
* the-good-scent
* beauty-personal-care
**Tags**
* curations-by-the-good-scent
* the-good-scent
* marshmallow-sugar
* eau-de-parfum
* perfume
* gourmand
* vanilla
* marshmallow
* womens-perfume
* fragrance
**Price & Compare-at**
* Price: $24.99
* Compare-at: $34.99
**SEO Title & Description**
* Page Title: Curations By The Good Scent Marshmallow Sugar Eau De Parfum 3.4 oz / 100 ml[cite: 21, 23]
* Meta Description: Shop Curations By The Good Scent Marshmallow Sugar Eau De Parfum (3.4 oz / 100 ml). A sweet gourmand fragrance with cotton candy, whipped marshmallow, and vanilla bean.[cite: 21, 22, 23]
* URL Handle: curations-by-the-good-scent-marshmallow-sugar-eau-de-parfum-3-4-oz-100-ml
**Category Metafields**
* Color: Pink / Clear / Gold[cite: 21, 22, 23]
* Material: Glass / Liquid[cite: 21, 22, 23]
* Condition: Mint(M)
* Item condition: New
* Recommended age group: Adult
* Gender: Women / Unisex
* Form: Liquid spray[cite: 21]
* Fragrance Family: Gourmand / Floral[cite: 22]
* Volume: 3.4 fl oz / 100 ml[cite: 21, 23]
* Dispenser type: Atomizer[cite: 21]
* Fragrance: Marshmallow, Cotton Candy, Jasmine, Rose, Vanilla, Sandalwood[cite: 22]
* Olfactory family: Sweet Gourmand[cite: 22]
* Product form: Liquid[cite: 21, 22, 23]
* Scent: Sweet, Warm, Floral[cite: 22]
* Season: All Seasons
* Suitable for skin type: All skin types
* Target gender: Women / Unisex
* Occasion: Daily Wear, Date Night, Casual Outings, Gifting
**Variant Metafields**
* Google Age Group: Adult
* Google Condition: new
* Google Gender: female
* MPN: TGS-MARSHMALLOWSUGAR-100ML
* Custom Label 0: Perfume
* Custom Label 1: Curations By The Good Scent[cite: 21, 23]
* Custom Label 2: Marshmallow Sugar[cite: 21, 23]
* Custom Label 3: Womens Fragrance
* Custom Label 4: entry-level
**Product Metafields**
* Google Custom Product: No
**Image Alt Text & Renamed File Names**
* Image 1: `curations-by-the-good-scent-marshmallow-sugar-eau-de-parfum-100ml.webp` | Alt: Curations By The Good Scent Marshmallow Sugar Eau De Parfum 3.4 oz square glass bottle with pink round cap[cite: 23]
* Image 2: `curations-by-the-good-scent-marshmallow-sugar-spray.webp` | Alt: Curations By The Good Scent Marshmallow Sugar Eau De Parfum spraying mist surrounded by marshmallows and roses[cite: 21]
* Image 3: `curations-by-the-good-scent-marshmallow-sugar-notes.webp` | Alt: Back view of Curations By The Good Scent Marshmallow Sugar Eau De Parfum showing full fragrance notes[cite: 22]
**Shipping & Origin**
* Weight: 1.1 lb
* Country of Origin: United States
---
### Python Script to Update `ZipMar_Batch_Tracker.xlsx`
```python
import openpyxl
from openpyxl.styles import PatternFill
# Load existing batch tracker or initialize workbook
try:
wb = openpyxl.load_workbook("ZipMar_Batch_Tracker.xlsx")
ws = wb.active
except FileNotFoundError:
wb = openpyxl.Workbook()
ws = wb.active
ws.title = "Batch Tracker"
# Create fixed 16-column header structure
headers = [
"Product Title", "Category", "Type", "Vendor", "SKU / MPN",
"Price", "Compare-at Price", "Tags", "Google Age Group",
"Google Gender", "Google Condition", "Custom Label 0",
"Custom Label 1", "Custom Label 2", "Custom Label 3", "Custom Label 4"
]
ws.append(headers)
# Soft Pink/Rose fill for Perfume / Beauty category
perfume_fill = PatternFill(start_color="F4CCCC", end_color="F4CCCC", fill_type="solid")
# Row data for Marshmallow Sugar perfume
row_data = [
"Curations By The Good Scent Marshmallow Sugar Eau De Parfum Spray 3.4 oz / 100 ml",
"Beauty & Personal Care > Personal Care > Cosmetics > Perfume & Cologne",
"Eau De Parfum",
"Curations By The Good Scent",
"TGS-MARSHMALLOWSUGAR-100ML",
24.99,
34.99,
"curations-by-the-good-scent, the-good-scent, marshmallow-sugar, eau-de-parfum, perfume, gourmand, vanilla, marshmallow, womens-perfume, fragrance",
"Adult",
"female",
"new",
"Perfume",
"Curations By The Good Scent",
"Marshmallow Sugar",
"Womens Fragrance",
"entry-level"
]
ws.append(row_data)
# Color-code the new row
for cell in ws[ws.max_row]:
cell.fill = perfume_fill
wb.save("ZipMar_Batch_Tracker.xlsx")