:root{--green-dark: #24262B;--green-med: #8F4CC3;--green-light: #C9AAE7;--green-pale: #EFE5FA;--green-bg: #F6F0FB;--white: #FFFFFF;--grey-50: #FCFAFF;--grey-100: #F7F3FB;--grey-200: #E8DFF3;--grey-400: #B7AAC8;--grey-600: #6D647A;--grey-800: #4D515C;--black: #24262B;--red: #C62828;--orange: #E65100;--yellow: #F57F17;--blue: #1565C0;--accent: #8F4CC3;--radius: 8px;--radius-lg: 12px;--shadow: 0 12px 30px rgba(45,24,66,.08);--shadow-lg: 0 24px 48px rgba(45,24,66,.16);--sidebar-w: 240px;--header-h: 60px;--transition: all .2s ease}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}body{font-family:Poppins,Inter,system-ui,sans-serif;font-size:14px;color:var(--black);background:var(--grey-100);line-height:1.5}.loading-screen{display:flex;align-items:center;justify-content:center;height:100vh;background:var(--green-bg)}.spinner{width:40px;height:40px;border:4px solid var(--green-pale);border-top-color:var(--green-med);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.app-layout{display:flex;min-height:100vh}.sidebar{width:var(--sidebar-w);min-height:100vh;background:var(--green-dark);display:flex;flex-direction:column;position:fixed;left:0;top:0;bottom:0;z-index:100;transition:transform .3s ease,box-shadow .3s ease;overflow-y:auto}.sidebar-auto-hide .sidebar{transform:translate(calc(-1 * var(--sidebar-w) + 18px));box-shadow:8px 0 22px #0000001f}.sidebar-auto-hide .sidebar:hover,.sidebar-auto-hide .sidebar:focus-within{transform:translate(0)}.sidebar-peek{display:none}.sidebar-auto-hide .sidebar-peek{position:absolute;top:82px;right:0;display:grid;place-items:center;width:18px;min-height:86px;padding:8px 0;border-radius:0 10px 10px 0;background:var(--green-light);color:#fff;font-size:9px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;writing-mode:vertical-rl;pointer-events:none}.sidebar-logo{padding:20px 16px;border-bottom:1px solid rgba(255,255,255,.15)}.sidebar-logo h1{color:#fff;font-size:18px;font-weight:700;display:flex;align-items:center;gap:8px}.sidebar-logo span{color:var(--green-pale);font-size:12px;display:block;margin-top:2px}.sidebar-nav{flex:1;padding:12px 8px}.nav-section{margin-bottom:20px}.nav-section-title,.nav-section-label{color:#ffffff73;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px;padding:0 8px;margin-bottom:4px}.nav-link{display:flex;align-items:center;gap:10px;padding:9px 12px;border-radius:var(--radius);color:#fffc;text-decoration:none;font-size:13px;font-weight:500;transition:var(--transition)}.nav-link:hover,.nav-link.active{background:#ffffff26;color:#fff}.nav-link.active{background:var(--green-light)}.nav-icon{font-size:16px;width:20px;text-align:center}.sidebar-user{padding:12px 16px;border-top:1px solid rgba(255,255,255,.15)}.sidebar-user .user-name{color:#fff;font-size:13px;font-weight:600}.sidebar-user .user-role{color:var(--green-pale);font-size:11px;text-transform:capitalize}.logout-btn{margin-top:8px;background:#ffffff1a;color:#fffc;border:none;cursor:pointer;width:100%;padding:7px;border-radius:var(--radius);font-size:12px;transition:var(--transition)}.logout-btn:hover{background:#fff3}.sidebar-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;border:0;background:#2d18426b;opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:90}.sidebar-backdrop.open{opacity:1;pointer-events:auto}.main-area{flex:1;margin-left:var(--sidebar-w);display:flex;flex-direction:column;min-height:100vh;transition:margin-left .3s ease}.sidebar-auto-hide .main-area{margin-left:18px}.topbar{height:var(--header-h);background:#fff;border-bottom:1px solid var(--grey-200);display:flex;align-items:center;padding:0 24px;gap:12px;position:sticky;top:0;z-index:50}.topbar-heading{flex:1;min-width:0;display:flex;flex-direction:column;gap:4px}.topbar-title{font-size:16px;font-weight:600;min-width:0}.topbar-meta{display:flex;flex-wrap:wrap;gap:6px}.topbar-meta-chip{display:inline-flex;align-items:center;gap:4px;padding:2px 8px;border-radius:999px;background:#f1e8fb;color:#6b3696;font-size:11px;font-weight:600}.topbar-meta-chip-role{background:#e6d4f8;color:#5f2f85}.topbar-branch{background:var(--green-bg);color:var(--green-dark);padding:4px 10px;border-radius:20px;font-size:12px;font-weight:600}.sidebar-toggle-btn{border:1px solid var(--grey-200);background:var(--grey-50);color:var(--green-dark);border-radius:999px;padding:6px 10px;font-size:12px;font-weight:700;cursor:pointer;transition:var(--transition)}.sidebar-toggle-btn:hover{border-color:var(--green-med);background:var(--green-bg)}.topbar-link-btn{border:1px solid rgba(143,76,195,.16);background:#fbf7ff;color:var(--green-dark);border-radius:999px;padding:7px 12px;font-size:12px;font-weight:700;cursor:pointer;transition:var(--transition)}.topbar-link-btn:hover{border-color:var(--green-med);background:var(--green-bg)}.page-content{flex:1;padding:24px}.card{background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow);padding:20px}.card-title{font-size:15px;font-weight:600;margin-bottom:16px;color:var(--green-dark)}.btn{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;border-radius:var(--radius);font-size:13px;font-weight:500;cursor:pointer;border:none;transition:var(--transition);text-decoration:none}.btn-primary{background:var(--green-med);color:#fff}.btn-primary:hover{background:var(--green-dark)}.btn-secondary{background:var(--grey-100);color:var(--grey-800);border:1px solid var(--grey-200)}.btn-secondary:hover{background:var(--grey-200)}.btn-danger{background:var(--red);color:#fff}.btn-danger:hover{background:#8b0000}.btn-outline{background:transparent;color:var(--green-med);border:1.5px solid var(--green-med)}.btn-outline:hover{background:var(--green-bg)}.btn-lg{padding:12px 24px;font-size:15px}.btn-sm{padding:5px 10px;font-size:12px}.btn:disabled{opacity:.5;cursor:not-allowed}.form-group{margin-bottom:14px}.form-label{display:block;font-size:12px;font-weight:600;margin-bottom:5px;color:var(--grey-800)}.form-input,.form-select,.form-textarea{width:100%;padding:9px 12px;border-radius:var(--radius);border:1.5px solid var(--grey-200);font-size:14px;transition:var(--transition);background:#fff}.form-input:focus,.form-select:focus,.form-textarea:focus{outline:none;border-color:var(--green-med);box-shadow:0 0 0 3px #2e7d321a}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.form-row-3{display:grid;grid-template-columns:1fr 1fr 1fr;gap:12px}.table-wrapper{overflow-x:auto}table{width:100%;border-collapse:collapse}thead tr{background:var(--green-dark)}thead th{padding:11px 14px;color:#fff;font-size:12px;font-weight:600;text-align:left;white-space:nowrap}tbody tr{border-bottom:1px solid var(--grey-200);transition:var(--transition)}tbody tr:hover{background:var(--green-bg)}tbody td{padding:10px 14px;font-size:13px}tbody tr:last-child{border-bottom:none}.badge{display:inline-flex;align-items:center;padding:2px 8px;border-radius:20px;font-size:11px;font-weight:600}.badge-ok{background:#f0e7fb;color:var(--green-dark)}.badge-low{background:#fff9c4;color:#f57f17}.badge-critical{background:#ffebee;color:#c62828}.badge-out{background:#ef9a9a;color:#7f0000}.badge-admin{background:var(--green-pale);color:var(--green-dark)}.badge-employee{background:#bbdefb;color:#1565c0}.badge-customer{background:var(--grey-200);color:var(--grey-800)}.badge-bulk{background:#ffe0b2;color:#e65100}.badge-paid{background:#f0e7fb;color:var(--green-dark)}.badge-voided{background:#ffebee;color:#c62828}.badge-pending{background:#fff9c4;color:#f57f17}.stat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px}.stat-card{background:#fff;border-radius:var(--radius-lg);padding:18px;box-shadow:var(--shadow);border-left:4px solid var(--green-med)}.stat-card.warning{border-left-color:var(--yellow)}.stat-card.danger{border-left-color:var(--red)}.stat-card.info{border-left-color:var(--blue)}.stat-label{font-size:12px;color:var(--grey-600);font-weight:500;margin-bottom:6px}.stat-value{font-size:28px;font-weight:700;color:var(--black)}.stat-sub{font-size:11px;color:var(--grey-600);margin-top:4px}.dashboard-shell{display:grid;gap:16px}.dashboard-toolbar{border:1px solid rgba(143,76,195,.08);background:linear-gradient(180deg,#e8f5e9b8,#fffffff5),#fff}.dashboard-toolbar-row{display:grid;grid-template-columns:repeat(4,minmax(0,auto));gap:16px;align-items:end}.dashboard-toolbar-label,.dashboard-section-label{font-size:11px;font-weight:700;color:var(--green-dark);text-transform:uppercase;letter-spacing:.08em;margin-bottom:7px}.dashboard-toolbar-branch{min-width:190px}.dashboard-toolbar-actions{display:flex;gap:8px;justify-content:flex-end;align-self:end}.dashboard-toolbar-footnote{margin-top:14px;font-size:12px;color:var(--grey-600)}.dashboard-chip-row{display:flex;flex-wrap:wrap;gap:8px}.dashboard-chip{border:1px solid rgba(143,76,195,.12);background:#fff;color:var(--green-dark);border-radius:999px;padding:7px 12px;font-size:12px;font-weight:700;cursor:pointer;transition:var(--transition)}.dashboard-chip:hover,.dashboard-chip.is-active{background:var(--green-dark);color:#fff;border-color:var(--green-dark)}.dashboard-stat-card{border:1px solid rgba(143,76,195,.06);text-align:left;cursor:pointer;transition:var(--transition)}.dashboard-stat-card:hover,.dashboard-stat-card.is-active{transform:translateY(-2px);box-shadow:var(--shadow-lg)}.dashboard-stat-card.is-active{outline:2px solid rgba(46,125,50,.18)}.dashboard-pill-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:10px}.dashboard-pill{display:flex;justify-content:space-between;align-items:center;gap:10px;background:#fff;border:1px solid var(--grey-200);border-radius:var(--radius-lg);padding:12px 14px;color:var(--grey-800);cursor:pointer;transition:var(--transition);text-align:left}.dashboard-pill:hover,.dashboard-pill.is-active{border-color:var(--green-med);background:var(--green-bg)}.dashboard-pill span{font-size:12px;color:var(--grey-600)}.dashboard-pill strong{font-size:14px;color:var(--green-dark)}.dashboard-interactive-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(360px,.95fr);gap:16px;align-items:start}.dashboard-visual-column{display:grid;gap:16px}.dashboard-branch-list{display:grid;gap:8px}.dashboard-branch-card{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:10px;align-items:center;padding:10px 12px;border-radius:var(--radius);border:1px solid var(--grey-200);background:#fff;color:var(--grey-800);cursor:pointer;transition:var(--transition);text-align:left}.dashboard-branch-card:hover,.dashboard-branch-card.is-active{border-color:var(--green-med);background:var(--green-bg)}.dashboard-branch-card span:last-child{font-weight:700;color:var(--green-dark)}.dashboard-health-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:12px}.dashboard-health-card{background:#fff;border:1px solid var(--grey-200);border-radius:var(--radius-lg);padding:16px;text-align:center;cursor:pointer;transition:var(--transition)}.dashboard-health-card:hover,.dashboard-health-card.is-active{border-color:var(--green-med);background:var(--green-bg)}.dashboard-health-value{font-size:28px;font-weight:700;margin-bottom:8px}.dashboard-drilldown-card{position:sticky;top:calc(var(--header-h) + 16px)}.dashboard-summary-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-bottom:16px}.dashboard-summary-strip>div{background:#2e7d320f;border-radius:var(--radius);padding:12px}.dashboard-summary-strip span{display:block;font-size:11px;color:var(--grey-600);margin-bottom:4px}.dashboard-summary-strip strong{color:var(--green-dark);font-size:16px}.dashboard-product-highlight{background:linear-gradient(135deg,#2e7d3214,#76c4421a);border:1px solid rgba(46,125,50,.1);border-radius:var(--radius-lg);padding:16px}.dashboard-product-highlight-title{font-size:18px;font-weight:700;color:var(--green-dark);margin-bottom:12px}.dashboard-metric-groups{display:grid;gap:14px}.dashboard-metric-list{list-style:none;padding:0;margin:0;display:grid;gap:8px}.dashboard-metric-list li{display:flex;justify-content:space-between;gap:16px;padding:10px 12px;border-radius:var(--radius);background:var(--grey-50)}.dashboard-metric-list span{color:var(--grey-700);font-size:12px}.dashboard-metric-list strong{color:var(--green-dark)}.dashboard-empty-state{padding:24px;border:1px dashed var(--grey-200);border-radius:var(--radius-lg);text-align:center;color:var(--grey-600);font-size:13px}.dashboard-row-active{background:#e8f5e9cc}@media (max-width: 1100px){.dashboard-toolbar-row,.dashboard-interactive-grid{grid-template-columns:1fr}.dashboard-toolbar-actions{justify-content:flex-start}.dashboard-drilldown-card{position:static}}@media (max-width: 720px){.dashboard-summary-strip,.dashboard-health-grid,.dashboard-branch-card{grid-template-columns:1fr}.dashboard-pill-grid{grid-template-columns:1fr 1fr}}.attendance-shell{display:grid;gap:16px}.attendance-live-badge{display:inline-flex;align-items:center;padding:9px 14px;border-radius:999px;background:#8f4cc31a;color:var(--green-dark);font-size:12px;font-weight:700}.attendance-filter-row{display:grid;gap:16px}.attendance-presets{display:flex;flex-wrap:wrap;gap:8px}.attendance-filter-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px}.attendance-layout{display:grid;grid-template-columns:1.05fr 1.35fr;gap:16px}.attendance-current-card{border-left:4px solid var(--green-med)}.attendance-current-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;align-items:end}.attendance-current-action{display:flex;justify-content:flex-end}.pos-layout{display:grid;grid-template-columns:1fr 380px;gap:16px;height:calc(100vh - var(--header-h) - 48px)}.pos-branch-banner{grid-column:1 / -1;display:flex;justify-content:space-between;align-items:center;gap:12px;padding:12px 16px;border-radius:var(--radius-lg);background:linear-gradient(135deg,#e8f5e9f2,#fffffffa);border:1px solid rgba(67,160,71,.18);color:var(--green-dark);box-shadow:var(--shadow)}.pos-branch-banner span{font-size:12px;color:var(--grey-600)}.pos-mobile-switcher{display:none}.pos-mobile-tab{border:1px solid rgba(143,76,195,.12);background:#ffffffe6;color:var(--green-dark);border-radius:16px;padding:10px 12px;display:flex;flex-direction:column;align-items:flex-start;gap:4px;cursor:pointer;transition:var(--transition)}.pos-mobile-tab strong{font-size:16px}.pos-mobile-tab em{font-style:normal;font-size:11px;font-weight:700;color:var(--green-med)}.pos-mobile-tab.active{background:linear-gradient(135deg,#1f6a31,#2f8a46);color:#fff;border-color:transparent;box-shadow:var(--shadow)}.pos-mobile-tab.active em{color:#ffffffd9}.pos-panel-hidden{display:none}.pos-products{overflow-y:auto}.pos-basket{background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow);display:flex;flex-direction:column;overflow:hidden}.pos-search{padding:12px;border-bottom:1px solid var(--grey-200)}.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:10px;padding-bottom:12px}.product-tile{background:#fff;border-radius:var(--radius);padding:12px;box-shadow:var(--shadow);cursor:pointer;transition:var(--transition);border:2px solid transparent;text-align:center}.product-tile:hover{border-color:var(--green-med);transform:translateY(-2px);box-shadow:var(--shadow-lg)}.product-tile img{width:60px;height:60px;object-fit:contain;margin-bottom:6px;border-radius:6px}.product-tile .name{font-size:12px;font-weight:600;margin-bottom:3px}.product-tile .sku{font-size:10px;color:var(--grey-600);margin-bottom:5px}.product-tile .price{font-size:15px;font-weight:700;color:var(--green-med)}.product-tile .stock-badge{font-size:10px;margin-top:4px}.basket-header{padding:14px 16px;border-bottom:1px solid var(--grey-200);font-weight:600}.basket-items{flex:1;overflow-y:auto;padding:8px}.basket-item{display:flex;align-items:center;gap:8px;padding:8px;border-radius:var(--radius);border:1px solid var(--grey-200);margin-bottom:6px}.basket-item-name{flex:1;font-size:12px;font-weight:500}.basket-item-price{display:flex;flex-wrap:wrap;gap:6px;font-size:12px;color:var(--grey-600)}.basket-price-original{text-decoration:line-through;color:var(--grey-500)}.basket-price-special{color:var(--green-dark);font-weight:700}.basket-item-actions{display:flex;flex-wrap:wrap;gap:6px;margin-top:8px}.basket-item-total{min-width:60px;text-align:right;font-weight:700;font-size:13px}.qty-control{display:flex;align-items:center;gap:4px}.qty-btn{width:24px;height:24px;border:1px solid var(--grey-200);border-radius:4px;background:#fff;cursor:pointer;font-size:14px;display:flex;align-items:center;justify-content:center}.qty-btn:hover{background:var(--green-bg);border-color:var(--green-med)}.qty-val{width:30px;text-align:center;font-size:13px;font-weight:600}.basket-footer{padding:12px 16px;border-top:1px solid var(--grey-200);background:var(--grey-50)}.basket-total{display:flex;justify-content:space-between;margin-bottom:6px;font-size:13px}.basket-total.grand{font-size:18px;font-weight:700;color:var(--green-dark)}.modal-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:1000}.modal{background:#fff;border-radius:var(--radius-lg);padding:24px;width:90%;max-width:520px;max-height:85vh;overflow-y:auto;box-shadow:var(--shadow-lg)}.modal-title{font-size:17px;font-weight:700;margin-bottom:18px;color:var(--green-dark)}.modal-footer{display:flex;gap:10px;justify-content:flex-end;margin-top:20px}.alert{padding:10px 14px;border-radius:var(--radius);margin-bottom:12px;font-size:13px}.alert-error{background:#ffebee;color:var(--red);border:1px solid #FFCDD2}.alert-success{background:#f0e7fb;color:var(--green-dark);border:1px solid var(--green-pale)}.alert-warning{background:#fff9c4;color:#6d4c00;border:1px solid #FFF176}.flex{display:flex}.flex-between{display:flex;justify-content:space-between;align-items:center}.flex-center{display:flex;align-items:center;justify-content:center}.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-20{margin-top:20px}.mb-12{margin-bottom:12px}.mb-16{margin-bottom:16px}.text-muted{color:var(--grey-600)}.text-green{color:var(--green-med)}.text-red{color:var(--red)}.text-bold{font-weight:600}.text-right{text-align:right}.text-center{text-align:center}.w-full{width:100%}.login-page{min-height:100vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--green-dark) 0%,var(--green-light) 100%)}.login-box{background:#fff;border-radius:var(--radius-lg);padding:40px;width:90%;max-width:400px;box-shadow:var(--shadow-lg)}.login-logo{text-align:center;margin-bottom:24px}.login-logo h1{font-size:26px;font-weight:700;color:var(--green-dark)}.login-logo p{color:var(--grey-600);font-size:13px}.shop-shell{--shop-ink: #24262B;--shop-forest: #5F2F85;--shop-forest-2: #8F4CC3;--shop-cream: #F6F0FB;--shop-card: #FFFFFF;--shop-gold: #8F4CC3;--shop-gold-bright: #C9AAE7;--shop-font-heading: "Poppins", "Inter", system-ui, sans-serif;--shop-font-body: "Poppins", "Inter", system-ui, sans-serif;position:relative;isolation:isolate;min-height:100vh;overflow-x:clip;background:radial-gradient(circle at 12% 8%,rgba(201,170,231,.38),transparent 28%),radial-gradient(circle at 82% 2%,rgba(154,209,125,.18),transparent 34%),linear-gradient(180deg,#fcf9ff,#f4ecfb 48%,#f8f3fd);color:var(--shop-ink);font-family:var(--shop-font-body)}.shop-botanical-frame{position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;z-index:0}@keyframes shop-wisteria-float{0%,to{transform:translateY(0)}50%{transform:translateY(8px)}}@keyframes shop-wisteria-sway-left{0%,to{transform:rotate(-2deg) translateY(0)}50%{transform:rotate(2deg) translateY(7px)}}@keyframes shop-wisteria-sway-right{0%,to{transform:scaleX(-1) rotate(-4deg) translateY(0)}50%{transform:scaleX(-1) rotate(-8deg) translateY(8px)}}@keyframes shop-wisteria-sway-corner{0%,to{transform:translateY(0)}50%{transform:translateY(6px) rotate(2deg)}}.shop-wisteria-garland,.shop-wisteria-spray,.shop-wisteria-cluster,.shop-wisteria-corner{position:absolute;-webkit-user-select:none;user-select:none;-webkit-user-drag:none;filter:drop-shadow(0 18px 34px rgba(95,47,133,.12))}.shop-wisteria-garland{left:50%;width:min(640px,64vw);opacity:.84}.shop-wisteria-garland-top{top:40px;transform:translate(-50%);animation:shop-wisteria-float 11s ease-in-out infinite}.shop-wisteria-garland-bottom{bottom:-24px;width:min(520px,56vw);opacity:.34;transform:translate(-50%) rotate(180deg);animation:shop-wisteria-float 13s ease-in-out infinite reverse}.shop-wisteria-spray{width:clamp(130px,14vw,220px);opacity:.44}.shop-wisteria-spray-left{left:20px;top:430px;transform:rotate(-14deg);animation:shop-wisteria-float 12s ease-in-out infinite}.shop-wisteria-spray-right{right:14px;top:290px;transform:scaleX(-1) rotate(-4deg);animation:shop-wisteria-float 14s ease-in-out infinite reverse}.shop-wisteria-cluster{top:82px;width:clamp(148px,15vw,220px);opacity:.95}.shop-wisteria-cluster-left{left:clamp(-28px,2vw,34px);transform:rotate(-2deg);animation:shop-wisteria-sway-left 9s ease-in-out infinite}.shop-wisteria-cluster-right{right:clamp(-22px,1.5vw,30px);transform:scaleX(-1) rotate(-4deg);animation:shop-wisteria-sway-right 10s ease-in-out infinite}.shop-wisteria-corner{opacity:.54;animation:shop-wisteria-sway-corner 12s ease-in-out infinite}.shop-wisteria-corner-top{top:128px;left:clamp(8px,2.5vw,44px);width:clamp(170px,22vw,280px)}.shop-wisteria-corner-bottom{right:clamp(4px,1vw,26px);bottom:28px;width:clamp(190px,24vw,320px);opacity:.42;transform:rotate(180deg)}.shop-announcement,.shop-header,.shop-message-wrap,.shop-container{position:relative;z-index:1}.shop-shell :is(h1,h2,h3,h4,h5,h6),.shop-shell .modal-title,.shop-shell .shop-brand strong,.shop-shell .shop-brand-mark{font-family:var(--shop-font-heading)}.shop-announcement{display:flex;justify-content:center;gap:26px;padding:9px 18px;background:#6b3696;color:#fff;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.shop-announcement span:not(:last-child):after{content:"";display:inline-block;width:4px;height:4px;margin-left:26px;border-radius:50%;background:var(--shop-gold);vertical-align:middle}.shop-header{position:sticky;top:0;z-index:100;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px clamp(18px,4vw,56px);background:linear-gradient(135deg,#5f2f85f5,#8f4cc3f0);border-bottom:1px solid rgba(201,170,231,.28);box-shadow:0 18px 40px #2d18423d;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.shop-brand{display:inline-flex;align-items:center;gap:12px;min-width:190px;border:0;background:transparent;color:#fff;cursor:pointer;text-align:left}.shop-brand-mark{display:grid;place-items:center;width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,var(--shop-gold-bright),var(--shop-gold));color:#24262b;font-size:12px;font-weight:800;letter-spacing:.08em;box-shadow:0 10px 30px #8f4cc35c}.shop-brand strong{display:block;font-size:18px;line-height:1}.shop-brand small{display:block;margin-top:4px;color:#ffffffbd;font-size:11px}.shop-mobile-menu-toggle{display:none;align-items:center;justify-content:center;gap:4px;flex-direction:column;width:46px;height:46px;border:1px solid rgba(255,255,255,.18);border-radius:16px;background:#ffffff14;box-shadow:0 12px 26px #2d184233;cursor:pointer;transition:transform .2s ease,background .2s ease,border-color .2s ease}.shop-mobile-menu-toggle:hover{transform:translateY(-1px);background:#ffffff24;border-color:#c9aae770}.shop-mobile-menu-toggle span{display:block;width:18px;height:2px;border-radius:999px;background:#fff;transition:transform .2s ease,opacity .2s ease}.shop-mobile-menu-toggle.is-open span:nth-child(1){transform:translateY(6px) rotate(45deg)}.shop-mobile-menu-toggle.is-open span:nth-child(2){opacity:0}.shop-mobile-menu-toggle.is-open span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}.shop-nav{display:flex;align-items:center;gap:6px;padding:5px;border:1px solid rgba(255,255,255,.1);border-radius:999px;background:#ffffff0f}.shop-nav button,.shop-ghost-button,.shop-gold-button,.shop-outline-light,.shop-cart-button,.shop-filter-row button,.shop-add-button,.shop-category-card{font-family:inherit}.shop-nav button{border:0;border-radius:999px;background:transparent;color:#ffffffc7;padding:8px 12px;font-size:12px;font-weight:700;cursor:pointer;transition:transform .2s ease,background .2s ease,color .2s ease}.shop-nav button:hover{transform:translateY(-1px);background:#ffffff1f;color:#fff}.shop-header-actions,.shop-header-account-actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap}.shop-user-chip{display:inline-flex;align-items:center;gap:9px;padding:7px 11px;border:1px solid rgba(255,255,255,.14);border-radius:999px;color:#ffffffd1;background:#ffffff12;font-size:12px;font-weight:600}.shop-user-chip strong{color:#f3ebfc}.shop-ghost-button,.shop-outline-light{border:1px solid rgba(255,255,255,.28);border-radius:999px;background:#ffffff0f;color:#fff;padding:9px 14px;font-size:12px;font-weight:800;cursor:pointer;transition:transform .2s ease,background .2s ease}.shop-ghost-button:hover,.shop-outline-light:hover{transform:translateY(-1px);background:#ffffff24}.shop-gold-button,.shop-cart-button,.shop-add-button{border:0;border-radius:999px;background:linear-gradient(135deg,var(--shop-gold-bright),var(--shop-gold));color:#24262b;padding:10px 16px;font-size:12px;font-weight:800;cursor:pointer;box-shadow:0 12px 26px #8f4cc347;transition:transform .2s ease,box-shadow .2s ease,filter .2s ease}.shop-gold-button:hover,.shop-cart-button:hover,.shop-add-button:hover{transform:translateY(-2px);filter:saturate(1.05);box-shadow:0 16px 32px #8f4cc357}.shop-cart-button:disabled{cursor:not-allowed;opacity:.55;transform:none;box-shadow:none}.shop-mobile-nav-backdrop,.shop-mobile-nav-drawer{display:none}.shop-mobile-nav-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;border:0;background:#2d184285;opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:98}.shop-mobile-nav-backdrop.is-open{opacity:1;pointer-events:auto}.shop-mobile-nav-drawer{position:fixed;top:88px;left:14px;right:14px;z-index:99;opacity:0;pointer-events:none;transform:translateY(-14px);transition:opacity .22s ease,transform .22s ease}.shop-mobile-nav-drawer.is-open{opacity:1;pointer-events:auto;transform:translateY(0)}.shop-mobile-nav-panel{display:grid;gap:16px;padding:18px;border:1px solid rgba(201,170,231,.2);border-radius:24px;background:linear-gradient(180deg,#112417fa,#0a170efa);box-shadow:0 22px 48px #2d184259}.shop-mobile-nav-links,.shop-mobile-nav-actions{display:grid;gap:8px}.shop-mobile-nav-links button{width:100%;border:1px solid rgba(255,255,255,.12);border-radius:16px;background:#ffffff0f;color:#fff;padding:13px 14px;font-size:14px;font-weight:800;text-align:left;cursor:pointer;transition:transform .2s ease,background .2s ease}.shop-mobile-nav-links button:hover{transform:translateY(-1px);background:#ffffff1f}.shop-mobile-nav-account{display:grid;gap:12px;padding-top:14px;border-top:1px solid rgba(255,255,255,.1)}.shop-mobile-user-chip{justify-content:space-between;width:100%}.shop-mobile-nav-actions .shop-ghost-button,.shop-mobile-nav-actions .shop-gold-button,.shop-mobile-nav-cart{width:100%;justify-content:center;text-align:center}.shop-message-wrap{max-width:1180px;margin:0 auto;padding:16px 24px 0}.shop-message{display:flex;align-items:center;justify-content:space-between;gap:12px;border-radius:16px}.shop-message button{border:0;background:transparent;color:inherit;cursor:pointer;font-weight:800}.shop-container{position:relative;isolation:isolate;width:min(1880px,calc(100% - 32px));margin:0 auto;padding:34px 14px 74px}.shop-container:before,.shop-container:after{content:"";position:absolute;pointer-events:none;z-index:0}.shop-container:before{top:6px;right:0;bottom:16px;left:0;border:1px solid rgba(143,76,195,.14);border-radius:42px;box-shadow:inset 0 0 0 10px #ffffff3d,0 24px 58px #2d18420f}.shop-container:after{top:18px;right:12px;bottom:28px;left:12px;border:1px solid rgba(201,170,231,.22);border-radius:34px}.shop-container>*{position:relative;z-index:1}.shop-shell.shop-frame-minimal .shop-botanical-frame,.shop-shell.shop-frame-none .shop-botanical-frame,.shop-shell.shop-frame-minimal .shop-hero-wisteria,.shop-shell.shop-frame-none .shop-hero-wisteria{display:none}.shop-shell.shop-frame-minimal .shop-container:before{border-color:#8f4cc32e;box-shadow:inset 0 0 0 8px #ffffff42,0 18px 40px #2d18420d}.shop-shell.shop-frame-minimal .shop-container:after{border-color:#c9aae729}.shop-shell.shop-frame-none .shop-container:before,.shop-shell.shop-frame-none .shop-container:after{display:none}.shop-specials-wisteria,.shop-hero-garland,.shop-panel-garland,.shop-panel-spray,.shop-strip-wisteria,.shop-products-wisteria{position:absolute;z-index:0;pointer-events:none;-webkit-user-select:none;user-select:none;-webkit-user-drag:none;filter:drop-shadow(0 16px 28px rgba(95,47,133,.14))}.shop-specials-wisteria-garland{left:50%;top:-10px;width:min(460px,54vw);transform:translate(-50%);opacity:.9}.shop-specials-wisteria-left{left:-10px;bottom:-18px;width:clamp(118px,14vw,170px);opacity:.48;transform:rotate(-10deg)}.shop-specials-wisteria-right{right:-4px;top:34px;width:clamp(118px,14vw,170px);opacity:.4;transform:scaleX(-1) rotate(-6deg)}.shop-hero-garland{left:50%;top:-14px;width:min(460px,48vw);opacity:.74;transform:translate(-50%)}.shop-panel-garland{left:50%;top:-4px;width:min(420px,46vw);opacity:.78;transform:translate(-50%)}.shop-panel-spray-right{right:-10px;top:-8px;width:clamp(120px,13vw,180px);opacity:.58}.shop-strip-wisteria{right:-18px;top:-20px;width:102px;opacity:.5}.shop-products-wisteria-garland{right:88px;top:-10px;width:min(360px,42vw);opacity:.82}.shop-products-wisteria-spray{right:-12px;top:18px;width:clamp(120px,13vw,170px);opacity:.5;transform:scaleX(-1) rotate(-4deg)}.shop-specials-banner{position:relative;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr);gap:22px;margin-bottom:24px;overflow:hidden;padding:24px 28px;border:1px solid rgba(143,76,195,.16);border-radius:32px;background:linear-gradient(135deg,#fffcf5fa,#f5ecd9f0),radial-gradient(circle at 85% 18%,rgba(143,76,195,.18),transparent 26%);box-shadow:0 24px 54px #2d18421a}.shop-specials-banner:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cg fill='none' stroke='%23bd9524' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='.55'%3E%3Cpath d='M48 4v88' opacity='.25'/%3E%3Cpath d='M48 28c-8-17-8-24 0-28c8 4 8 11 0 28Z'/%3E%3Cpath d='M48 28C29 20 18 13 11 4c18 0 30 7 37 24Z'/%3E%3Cpath d='M48 28c19-8 30-15 37-24c-18 0-30 7-37 24Z'/%3E%3Cpath d='M48 60c-8-17-8-24 0-28c8 4 8 11 0 28Z'/%3E%3Cpath d='M48 60C29 52 18 45 11 36c18 0 30 7 37 24Z'/%3E%3Cpath d='M48 60c19-8 30-15 37-24c-18 0-30 7-37 24Z'/%3E%3Cpath d='M48 92c-8-17-8-24 0-28c8 4 8 11 0 28Z'/%3E%3Cpath d='M48 92C29 84 18 77 11 68c18 0 30 7 37 24Z'/%3E%3Cpath d='M48 92c19-8 30-15 37-24c-18 0-30 7-37 24Z'/%3E%3C/g%3E%3C/svg%3E");background-repeat:repeat;background-size:108px 108px;opacity:.08;pointer-events:none}.shop-specials-banner:after{content:"";position:absolute;right:-90px;top:-110px;width:320px;height:320px;border-radius:50%;background:radial-gradient(circle,rgba(143,76,195,.24),transparent 68%);pointer-events:none}.shop-specials-banner-copy,.shop-specials-banner-callout{position:relative;z-index:1}.shop-specials-banner h2{max-width:720px;margin-top:10px;color:var(--shop-forest);font-size:clamp(30px,3vw,46px);font-weight:800;line-height:.98;letter-spacing:-.05em}.shop-specials-banner p{max-width:700px;margin-top:14px;color:#687265;font-size:14px;line-height:1.75}.shop-specials-banner-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.shop-specials-banner-chips span{padding:10px 14px;border:1px solid rgba(143,76,195,.12);border-radius:999px;background:#ffffff94;color:var(--shop-forest);font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.shop-specials-banner-callout{align-self:stretch;display:grid;align-content:start;gap:10px;padding:22px;border:1px solid rgba(255,255,255,.18);border-radius:26px;background:linear-gradient(135deg,#5f2f85f5,#8f4cc3eb),radial-gradient(circle at 80% 0%,rgba(201,170,231,.26),transparent 28%);box-shadow:inset 0 1px #ffffff1f,0 24px 48px #2d184233}.shop-specials-banner-callout span{color:#fff4cfb8;font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.shop-specials-banner-callout strong{color:#fff7d7;font-size:28px;line-height:1.02;letter-spacing:-.04em}.shop-specials-banner-callout p{margin-top:0;color:#ffffffb8;font-size:13px;line-height:1.65}.shop-specials-banner-callout .shop-gold-button{justify-self:start;margin-top:4px}.shop-showcase{display:grid;gap:24px;align-items:start}.shop-showcase.has-specials{grid-template-columns:minmax(240px,280px) minmax(0,1fr) minmax(240px,280px)}.shop-specials-rail{position:sticky;top:102px;align-self:start}.shop-specials-rail-frame{position:relative;display:grid;gap:18px;overflow:hidden;padding:24px 40px;border:1px solid rgba(143,76,195,.16);border-radius:34px;background:radial-gradient(circle at 50% 0%,rgba(143,76,195,.14),transparent 32%),linear-gradient(180deg,#fffcf5f5,#f6eedfeb);box-shadow:0 24px 54px #2d18421f}.shop-specials-rail-frame:before,.shop-specials-rail-frame:after{content:"";position:absolute;top:18px;bottom:18px;width:26px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='96' viewBox='0 0 26 96'%3E%3Cg fill='none' stroke='%23bd9524' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round' opacity='.88'%3E%3Cpath d='M13 0v96' opacity='.22'/%3E%3Cpath d='M13 16c-3-9-3-12 0-16c3 4 3 7 0 16Z'/%3E%3Cpath d='M13 16C6 13 2 9 0 4c7 0 11 3 13 12Z'/%3E%3Cpath d='M13 16c7-3 11-7 13-12c-7 0-11 3-13 12Z'/%3E%3Cpath d='M13 48c-3-9-3-12 0-16c3 4 3 7 0 16Z'/%3E%3Cpath d='M13 48C6 45 2 41 0 36c7 0 11 3 13 12Z'/%3E%3Cpath d='M13 48c7-3 11-7 13-12c-7 0-11 3-13 12Z'/%3E%3Cpath d='M13 80c-3-9-3-12 0-16c3 4 3 7 0 16Z'/%3E%3Cpath d='M13 80C6 77 2 73 0 68c7 0 11 3 13 12Z'/%3E%3Cpath d='M13 80c7-3 11-7 13-12c-7 0-11 3-13 12Z'/%3E%3C/g%3E%3C/svg%3E");background-repeat:repeat-y;background-position:center top;background-size:24px 96px;opacity:.84;pointer-events:none}.shop-specials-rail-frame:before{left:10px}.shop-specials-rail-frame:after{right:10px;transform:scaleX(-1)}.shop-specials-rail-header{display:grid;gap:8px;margin-bottom:18px}.shop-specials-rail-header h2{color:var(--shop-forest);font-size:clamp(24px,2.2vw,34px);font-weight:800;line-height:.96;letter-spacing:-.04em}.shop-specials-rail-header p{color:#6b7668;font-size:13px;line-height:1.65}.shop-specials-rail-list{display:grid;gap:16px}.shop-specials-rail-note{padding:18px;border:1px dashed rgba(143,76,195,.18);border-radius:24px;background:#fffaf09e;color:#667162;font-size:13px;line-height:1.7}.shop-shell.shop-specials-theme-gold .shop-specials-banner,.shop-shell.shop-specials-theme-gold .shop-specials-rail-frame{border-color:#8f4cc352;box-shadow:0 26px 56px #5a3f071f}.shop-shell.shop-specials-theme-gold .shop-specials-banner:before{background-image:linear-gradient(90deg,transparent 0,transparent 8%,rgba(143,76,195,.26) 8%,rgba(143,76,195,.26) 11%,transparent 11%,transparent 89%,rgba(143,76,195,.26) 89%,rgba(143,76,195,.26) 92%,transparent 92%),linear-gradient(0deg,transparent 0,transparent 8%,rgba(143,76,195,.18) 8%,rgba(143,76,195,.18) 11%,transparent 11%,transparent 89%,rgba(143,76,195,.18) 89%,rgba(143,76,195,.18) 92%,transparent 92%);background-size:100% 100%;opacity:.18}.shop-shell.shop-specials-theme-gold .shop-specials-rail-frame:before,.shop-shell.shop-specials-theme-gold .shop-specials-rail-frame:after{width:18px;background-image:linear-gradient(180deg,#8f4cc30d,#8f4cc3f2,#8f4cc30d),radial-gradient(circle at center,rgba(255,245,213,.95) 0,rgba(255,245,213,.95) 28%,transparent 29%);background-repeat:no-repeat,repeat-y;background-position:center,center top;background-size:3px 100%,14px 34px;opacity:.9}.shop-shell.shop-specials-theme-clean .shop-specials-banner,.shop-shell.shop-specials-theme-clean .shop-specials-rail-frame{border-color:#8f4cc32e;box-shadow:0 18px 38px #2d184214}.shop-shell.shop-specials-theme-clean .shop-specials-banner:before,.shop-shell.shop-specials-theme-clean .shop-specials-rail-frame:before,.shop-shell.shop-specials-theme-clean .shop-specials-rail-frame:after{background-image:none;opacity:0}.shop-shell.shop-specials-theme-clean .shop-specials-banner:after,.shop-shell.shop-specials-theme-clean .shop-specials-spotlight:after{opacity:.45}.shop-shell.shop-specials-theme-wisteria .shop-specials-banner,.shop-shell.shop-specials-theme-wisteria .shop-specials-rail-frame{border-color:#8f4cc347;background:linear-gradient(145deg,#fffbfffa,#f6ecfcf0),radial-gradient(circle at 82% 12%,rgba(143,76,195,.16),transparent 26%);box-shadow:0 26px 58px #5f2f851f}.shop-shell.shop-specials-theme-wisteria .shop-specials-banner:before{background-image:linear-gradient(90deg,rgba(143,76,195,.16) 0,rgba(143,76,195,.16) 1px,transparent 1px,transparent calc(100% - 1px),rgba(143,76,195,.16) calc(100% - 1px)),linear-gradient(180deg,rgba(143,76,195,.13) 0,rgba(143,76,195,.13) 1px,transparent 1px,transparent calc(100% - 1px),rgba(143,76,195,.13) calc(100% - 1px)),radial-gradient(circle at 18% 22%,rgba(201,170,231,.22),transparent 20%),radial-gradient(circle at 84% 32%,rgba(201,170,231,.16),transparent 18%);background-size:100% 100%;opacity:.34}.shop-shell.shop-specials-theme-wisteria .shop-specials-banner:after{background:radial-gradient(circle,rgba(201,170,231,.32),transparent 70%);opacity:.8}.shop-shell.shop-specials-theme-wisteria .shop-specials-rail-frame:before,.shop-shell.shop-specials-theme-wisteria .shop-specials-rail-frame:after{top:8px;bottom:8px;width:52px;background-image:url(/assets/wisteria-cascade-Cfs5DnwM.svg);background-repeat:repeat-y;background-position:center top;background-size:42px 128px;opacity:.78}.shop-shell.shop-specials-theme-wisteria .shop-specials-banner-callout{border-color:#ffffff3d;background:linear-gradient(145deg,#6d359af7,#5f2f85eb),radial-gradient(circle at 78% 8%,rgba(214,188,242,.28),transparent 28%);box-shadow:inset 0 1px #ffffff24,0 26px 52px #5f2f853d}.shop-shell.shop-specials-theme-wisteria .shop-specials-spotlight{border-color:#fff3;background:linear-gradient(180deg,#612c8dfa,#213c2df2),radial-gradient(circle at 78% 10%,rgba(214,188,242,.24),transparent 28%)}.shop-special-card{position:relative;overflow:hidden;border:1px solid rgba(143,76,195,.1);border-radius:26px;background:#fffaf0f5;box-shadow:0 18px 36px #2d18421a;transition:transform .22s ease,box-shadow .22s ease}.shop-shell.shop-specials-theme-wisteria .shop-special-card{border-color:#8f4cc32e;background:linear-gradient(180deg,#fffdfffa,#f6eefcf0),radial-gradient(circle at 82% 14%,rgba(201,170,231,.14),transparent 24%)}.shop-shell.shop-specials-theme-wisteria .shop-special-card:after{content:"";position:absolute;right:-12px;top:-6px;width:92px;height:92px;background:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20280'%20fill='none'%3e%3cdefs%3e%3clinearGradient%20id='sprayLeaf'%20x1='0'%20y1='0'%20x2='1'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23D7ECC1'/%3e%3cstop%20offset='1'%20stop-color='%236C984F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalA'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23F6EEFF'/%3e%3cstop%20offset='0.48'%20stop-color='%23D7BCF2'/%3e%3cstop%20offset='1'%20stop-color='%238F4CC3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalB'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23EADAF9'/%3e%3cstop%20offset='0.5'%20stop-color='%23BB8DDD'/%3e%3cstop%20offset='1'%20stop-color='%237A39B0'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20d='M20%20242c42-48%2081-90%20127-122c36-25%2073-43%20113-56'%20stroke='%236C984F'%20stroke-width='4.5'%20stroke-linecap='round'/%3e%3cpath%20d='M74%20193c-27-2-50%205-71%2023c28%207%2052%200%2071-23Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M116%20159c-26%202-47%2013-63%2033c27%202%2048-9%2063-33Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M159%20126c-21%200-41%208-57%2025c22%204%2041-4%2057-25Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M178%20111c6-23%2020-43%2041-61c5%2028-10%2050-41%2061Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M212%2095c18-16%2038-24%2061-24c-14%2021-34%2029-61%2024Z'%20fill='url(%23sprayLeaf)'/%3e%3cg%20transform='translate(26%20178)'%3e%3cpath%20d='M34%200c-9%2018-14%2038-14%2059'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='30'%20cy='16'%20rx='14'%20ry='8'%20transform='rotate(-12%2030%2016)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='32'%20cy='29'%20rx='13'%20ry='8'%20transform='rotate(-7%2032%2029)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='42'%20rx='12'%20ry='7'%20transform='rotate(-12%2028%2042)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='30'%20cy='54'%20rx='11'%20ry='7'%20transform='rotate(-6%2030%2054)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='65'%20rx='10'%20ry='6'%20transform='rotate(-12%2027%2065)'%20fill='url(%23sprayPetalA)'/%3e%3c/g%3e%3cg%20transform='translate(98%20124)'%3e%3cpath%20d='M30%200c-8%2018-10%2038-6%2058'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='26'%20cy='16'%20rx='13'%20ry='8'%20transform='rotate(-10%2026%2016)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='29'%20rx='12'%20ry='7'%20transform='rotate(-5%2028%2029)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='41'%20rx='11'%20ry='7'%20transform='rotate(-10%2025%2041)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='53'%20rx='10'%20ry='6'%20transform='rotate(-4%2027%2053)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='64'%20rx='9'%20ry='5'%20transform='rotate(-10%2024%2064)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3cg%20transform='translate(170%2080)'%3e%3cpath%20d='M26%200c-6%2016-7%2034-3%2051'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='23'%20cy='14'%20rx='12'%20ry='7'%20transform='rotate(-8%2023%2014)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='26'%20rx='11'%20ry='7'%20transform='rotate(-3%2025%2026)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='22'%20cy='37'%20rx='10'%20ry='6'%20transform='rotate(-8%2022%2037)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='47'%20rx='9'%20ry='5'%20transform='rotate(-3%2024%2047)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;opacity:.16;transform:scaleX(-1) rotate(-8deg);pointer-events:none}.shop-shell.shop-specials-theme-wisteria .shop-special-card-media,.shop-shell.shop-specials-theme-wisteria .shop-special-card-body{position:relative;z-index:1}.shop-special-card:hover{transform:translateY(-4px);box-shadow:0 24px 46px #2d184229}.shop-special-card-media{position:relative;display:block;width:100%;height:170px;overflow:hidden;border:0;background:radial-gradient(circle at 50% 18%,rgba(143,76,195,.2),transparent 34%),#ebe2d1;cursor:pointer}.shop-special-card-image{width:100%;height:100%;object-fit:cover;transition:transform .28s ease}.shop-special-card:hover .shop-special-card-image{transform:scale(1.045)}.shop-special-card-body{display:grid;gap:10px;padding:16px}.shop-special-card-body h3{color:var(--shop-forest);font-size:18px;line-height:1.2}.shop-special-card-body p{color:#687266;font-size:12px;line-height:1.65}.shop-special-card-price small{display:block;color:#909686;font-size:12px;text-decoration:line-through}.shop-special-card-price strong{display:block;color:var(--shop-forest);font-size:27px;line-height:1}.shop-special-card-price span{display:block;margin-top:4px;color:#70786d;font-size:11px}.shop-special-card-actions{display:flex;flex-wrap:wrap;gap:10px}.shop-special-card-actions .shop-detail-button,.shop-special-card-actions .shop-add-button{flex:1 1 0;text-align:center}.shop-specials-spotlight{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:28px;background:linear-gradient(180deg,#5f2f85f7,#193422f0),radial-gradient(circle at 80% 12%,rgba(201,170,231,.24),transparent 28%);box-shadow:inset 0 1px #ffffff1a,0 24px 48px #2d184238}.shop-specials-spotlight:after{content:"";position:absolute;right:-76px;bottom:-96px;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle,rgba(201,170,231,.2),transparent 70%);pointer-events:none}.shop-specials-spotlight-ribbon{position:absolute;left:14px;top:14px;z-index:2;padding:8px 12px;border-radius:999px;background:linear-gradient(135deg,var(--shop-gold-bright),var(--shop-gold));color:#173019;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.shop-specials-spotlight-media{position:relative;display:block;width:100%;height:260px;overflow:hidden;border:0;background:radial-gradient(circle at 50% 18%,rgba(143,76,195,.18),transparent 34%),#1c2d1d;cursor:pointer}.shop-specials-spotlight-image{width:100%;height:100%;object-fit:cover;transition:transform .34s ease}.shop-specials-spotlight:hover .shop-specials-spotlight-image{transform:scale(1.05)}.shop-specials-spotlight .shop-card-badge{left:auto;right:14px;top:14px}.shop-specials-spotlight-body{position:relative;z-index:1;display:grid;gap:12px;padding:18px}.shop-specials-spotlight-body h3{color:#fff7d7;font-size:30px;line-height:.98;letter-spacing:-.05em}.shop-specials-spotlight-body p{color:#ffffffb8;font-size:13px;line-height:1.7}.shop-specials-spotlight-price small{display:block;color:#ffffff85;font-size:12px;text-decoration:line-through}.shop-specials-spotlight-price strong{display:block;color:#fff7d7;font-size:34px;line-height:1}.shop-specials-spotlight-price span{display:block;margin-top:6px;color:#ead9a4;font-size:11px}.shop-specials-spotlight-actions{display:flex;flex-wrap:wrap;gap:10px}.shop-specials-spotlight-actions .shop-detail-button,.shop-specials-spotlight-actions .shop-add-button{flex:1 1 0;text-align:center}.shop-specials-dots{display:flex;flex-wrap:wrap;gap:8px}.shop-specials-dot{width:10px;height:10px;border:1px solid rgba(255,255,255,.32);border-radius:999px;background:#ffffff38;cursor:pointer;transition:transform .2s ease,background .2s ease,width .2s ease,border-color .2s ease}.shop-specials-dot.is-active{width:28px;border-color:transparent;background:linear-gradient(135deg,var(--shop-gold-bright),var(--shop-gold));box-shadow:0 10px 22px #8f4cc347}.shop-rating-summary{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:-2px}.shop-rating-summary.is-compact{gap:6px}.shop-rating-summary span{color:var(--shop-forest);font-size:12px;font-weight:800}.shop-rating-summary small{color:#778176;font-size:11px}.shop-rating-stars{display:inline-flex;align-items:center;gap:2px}.shop-star,.shop-star-button{padding:0;border:0;background:none;color:#8f4cc347;line-height:1}.shop-star.is-active,.shop-star-button.is-active{color:var(--shop-gold-bright);text-shadow:0 4px 12px rgba(143,76,195,.24)}.shop-star-button{cursor:pointer;transition:transform .18s ease,color .18s ease}.shop-star-button:hover{transform:translateY(-1px)}.shop-hero{position:relative;display:grid;grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);gap:28px;min-height:500px;overflow:hidden;padding:clamp(32px,5vw,64px);border:1px solid rgba(255,255,255,.16);border-radius:34px;background:linear-gradient(135deg,#5f2f85f5,#183522eb),radial-gradient(circle at 85% 12%,rgba(201,170,231,.26),transparent 28%);color:#fff;box-shadow:0 28px 70px #2d184247}.shop-hero-wisteria{position:absolute;z-index:0;width:clamp(122px,15vw,210px);opacity:.34;pointer-events:none;filter:drop-shadow(0 18px 36px rgba(20,9,34,.26))}.shop-hero-wisteria-left{left:-26px;bottom:-12px}.shop-hero-wisteria-right{right:-10px;top:14px;transform:scaleX(-1) rotate(10deg)}.shop-hero:before{content:"";position:absolute;top:18px;right:18px;bottom:18px;left:18px;pointer-events:none;border:1px solid rgba(246,232,189,.12);border-radius:26px}.shop-hero:after{content:"";position:absolute;right:-130px;top:-110px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(201,170,231,.24),transparent 68%)}.shop-hero-copy,.shop-hero-card{position:relative;z-index:1}.shop-shell.shop-frame-wisteria .shop-hero:before{border-color:#f4e8bd33;box-shadow:inset 0 0 0 1px #c9aae71f}.shop-eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--shop-gold);font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.shop-hero .shop-eyebrow{color:#f4d36f}.shop-hero h1{max-width:760px;margin:16px 0 18px;font-size:clamp(38px,6vw,74px);font-weight:800;line-height:.95;letter-spacing:-.06em}.shop-hero p{max-width:620px;color:#ffffffc2;font-size:16px;line-height:1.8}.shop-hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:28px}.shop-hero-cta,.shop-outline-light{padding:13px 20px;font-size:13px}.shop-hero-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:36px;max-width:620px}.shop-hero-metrics div{padding:16px;border:1px solid rgba(255,255,255,.14);border-radius:20px;background:#ffffff12}.shop-hero-metrics strong{display:block;color:#fff7d7;font-size:22px;line-height:1}.shop-hero-metrics span{display:block;margin-top:6px;color:#ffffffa3;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.08em}.shop-hero-card{align-self:center;padding:18px;border:1px solid rgba(255,255,255,.16);border-radius:28px;background:#fffaf01a;box-shadow:inset 0 1px #ffffff29,0 24px 48px #0000003d;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}.shop-hero-card-top,.shop-hero-product-copy{display:flex;align-items:center;justify-content:space-between;gap:12px}.shop-hero-card-top span,.shop-hero-product-copy span{color:#ffffffa3;font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.shop-hero-card-top strong,.shop-hero-product-copy strong{color:#f3ebfc;font-size:13px}.shop-hero-product-frame{display:grid;place-items:center;height:335px;margin:16px 0;overflow:hidden;border-radius:24px;background:linear-gradient(145deg,#fffaf02e,#fffaf00d),radial-gradient(circle at 50% 20%,rgba(201,170,231,.22),transparent 42%)}.shop-hero-product-frame img{width:100%;height:100%;object-fit:cover}.shop-section,.shop-products-section{margin-top:36px}.shop-featured-panel,.shop-experience-panel,.shop-products-section,.shop-wellness-strip article,.shop-category-card{position:relative}.shop-discovery-layout{display:grid;gap:24px;margin-top:36px;align-items:start}.shop-discovery-layout.has-featured{grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr)}.shop-discovery-layout.no-featured{grid-template-columns:1fr}.shop-discovery-layout .shop-section,.shop-discovery-layout .shop-wellness-strip{margin-top:0}.shop-featured-panel,.shop-experience-panel{overflow:hidden;padding:28px;border:1px solid rgba(143,76,195,.12);border-radius:32px;background:linear-gradient(180deg,#fffcf5f0,#f7efe0e0),radial-gradient(circle at 82% 10%,rgba(143,76,195,.12),transparent 28%);box-shadow:0 22px 48px #2d184217}.shop-shell.shop-frame-wisteria .shop-featured-panel:after,.shop-shell.shop-frame-wisteria .shop-experience-panel:after{content:"";position:absolute;right:-26px;bottom:-28px;width:180px;height:180px;background:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20280'%20fill='none'%3e%3cdefs%3e%3clinearGradient%20id='sprayLeaf'%20x1='0'%20y1='0'%20x2='1'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23D7ECC1'/%3e%3cstop%20offset='1'%20stop-color='%236C984F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalA'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23F6EEFF'/%3e%3cstop%20offset='0.48'%20stop-color='%23D7BCF2'/%3e%3cstop%20offset='1'%20stop-color='%238F4CC3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalB'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23EADAF9'/%3e%3cstop%20offset='0.5'%20stop-color='%23BB8DDD'/%3e%3cstop%20offset='1'%20stop-color='%237A39B0'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20d='M20%20242c42-48%2081-90%20127-122c36-25%2073-43%20113-56'%20stroke='%236C984F'%20stroke-width='4.5'%20stroke-linecap='round'/%3e%3cpath%20d='M74%20193c-27-2-50%205-71%2023c28%207%2052%200%2071-23Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M116%20159c-26%202-47%2013-63%2033c27%202%2048-9%2063-33Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M159%20126c-21%200-41%208-57%2025c22%204%2041-4%2057-25Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M178%20111c6-23%2020-43%2041-61c5%2028-10%2050-41%2061Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M212%2095c18-16%2038-24%2061-24c-14%2021-34%2029-61%2024Z'%20fill='url(%23sprayLeaf)'/%3e%3cg%20transform='translate(26%20178)'%3e%3cpath%20d='M34%200c-9%2018-14%2038-14%2059'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='30'%20cy='16'%20rx='14'%20ry='8'%20transform='rotate(-12%2030%2016)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='32'%20cy='29'%20rx='13'%20ry='8'%20transform='rotate(-7%2032%2029)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='42'%20rx='12'%20ry='7'%20transform='rotate(-12%2028%2042)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='30'%20cy='54'%20rx='11'%20ry='7'%20transform='rotate(-6%2030%2054)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='65'%20rx='10'%20ry='6'%20transform='rotate(-12%2027%2065)'%20fill='url(%23sprayPetalA)'/%3e%3c/g%3e%3cg%20transform='translate(98%20124)'%3e%3cpath%20d='M30%200c-8%2018-10%2038-6%2058'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='26'%20cy='16'%20rx='13'%20ry='8'%20transform='rotate(-10%2026%2016)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='29'%20rx='12'%20ry='7'%20transform='rotate(-5%2028%2029)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='41'%20rx='11'%20ry='7'%20transform='rotate(-10%2025%2041)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='53'%20rx='10'%20ry='6'%20transform='rotate(-4%2027%2053)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='64'%20rx='9'%20ry='5'%20transform='rotate(-10%2024%2064)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3cg%20transform='translate(170%2080)'%3e%3cpath%20d='M26%200c-6%2016-7%2034-3%2051'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='23'%20cy='14'%20rx='12'%20ry='7'%20transform='rotate(-8%2023%2014)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='26'%20rx='11'%20ry='7'%20transform='rotate(-3%2025%2026)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='22'%20cy='37'%20rx='10'%20ry='6'%20transform='rotate(-8%2022%2037)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='47'%20rx='9'%20ry='5'%20transform='rotate(-3%2024%2047)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;opacity:.22;pointer-events:none}.shop-shell.shop-frame-wisteria .shop-experience-panel:after{right:auto;left:-26px;bottom:auto;top:10px;transform:scaleX(-1);opacity:.18}.shop-featured-panel-content{display:grid;gap:18px;align-items:start}.shop-featured-panel-content.is-single{grid-template-columns:minmax(300px,380px) minmax(280px,360px);justify-content:space-between}.shop-featured-panel-content.is-multi{grid-template-columns:minmax(0,1fr) minmax(260px,320px)}.shop-featured-grid{align-content:start}.shop-featured-grid.is-single{grid-template-columns:minmax(300px,380px);justify-content:start}.shop-featured-grid.is-multi{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}.shop-featured-note{position:relative;overflow:hidden;display:grid;align-content:start;gap:14px;min-height:100%;padding:24px;border-radius:28px;background:linear-gradient(135deg,#11281af5,#1e3e29eb),radial-gradient(circle at 84% 8%,rgba(201,170,231,.22),transparent 30%);color:#fff;box-shadow:inset 0 1px #ffffff14,0 22px 46px #2d184233}.shop-shell.shop-frame-wisteria .shop-featured-note:before{content:"";position:absolute;right:-10px;top:-8px;width:138px;height:138px;background:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20280'%20fill='none'%3e%3cdefs%3e%3clinearGradient%20id='sprayLeaf'%20x1='0'%20y1='0'%20x2='1'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23D7ECC1'/%3e%3cstop%20offset='1'%20stop-color='%236C984F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalA'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23F6EEFF'/%3e%3cstop%20offset='0.48'%20stop-color='%23D7BCF2'/%3e%3cstop%20offset='1'%20stop-color='%238F4CC3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalB'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23EADAF9'/%3e%3cstop%20offset='0.5'%20stop-color='%23BB8DDD'/%3e%3cstop%20offset='1'%20stop-color='%237A39B0'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20d='M20%20242c42-48%2081-90%20127-122c36-25%2073-43%20113-56'%20stroke='%236C984F'%20stroke-width='4.5'%20stroke-linecap='round'/%3e%3cpath%20d='M74%20193c-27-2-50%205-71%2023c28%207%2052%200%2071-23Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M116%20159c-26%202-47%2013-63%2033c27%202%2048-9%2063-33Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M159%20126c-21%200-41%208-57%2025c22%204%2041-4%2057-25Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M178%20111c6-23%2020-43%2041-61c5%2028-10%2050-41%2061Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M212%2095c18-16%2038-24%2061-24c-14%2021-34%2029-61%2024Z'%20fill='url(%23sprayLeaf)'/%3e%3cg%20transform='translate(26%20178)'%3e%3cpath%20d='M34%200c-9%2018-14%2038-14%2059'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='30'%20cy='16'%20rx='14'%20ry='8'%20transform='rotate(-12%2030%2016)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='32'%20cy='29'%20rx='13'%20ry='8'%20transform='rotate(-7%2032%2029)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='42'%20rx='12'%20ry='7'%20transform='rotate(-12%2028%2042)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='30'%20cy='54'%20rx='11'%20ry='7'%20transform='rotate(-6%2030%2054)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='65'%20rx='10'%20ry='6'%20transform='rotate(-12%2027%2065)'%20fill='url(%23sprayPetalA)'/%3e%3c/g%3e%3cg%20transform='translate(98%20124)'%3e%3cpath%20d='M30%200c-8%2018-10%2038-6%2058'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='26'%20cy='16'%20rx='13'%20ry='8'%20transform='rotate(-10%2026%2016)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='29'%20rx='12'%20ry='7'%20transform='rotate(-5%2028%2029)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='41'%20rx='11'%20ry='7'%20transform='rotate(-10%2025%2041)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='53'%20rx='10'%20ry='6'%20transform='rotate(-4%2027%2053)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='64'%20rx='9'%20ry='5'%20transform='rotate(-10%2024%2064)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3cg%20transform='translate(170%2080)'%3e%3cpath%20d='M26%200c-6%2016-7%2034-3%2051'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='23'%20cy='14'%20rx='12'%20ry='7'%20transform='rotate(-8%2023%2014)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='26'%20rx='11'%20ry='7'%20transform='rotate(-3%2025%2026)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='22'%20cy='37'%20rx='10'%20ry='6'%20transform='rotate(-8%2022%2037)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='47'%20rx='9'%20ry='5'%20transform='rotate(-3%2024%2047)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;opacity:.34;transform:scaleX(-1) rotate(-10deg);pointer-events:none}.shop-featured-note:after{content:"";position:absolute;right:-82px;bottom:-96px;width:230px;height:230px;border-radius:50%;background:radial-gradient(circle,rgba(201,170,231,.16),transparent 70%);pointer-events:none}.shop-featured-note .shop-eyebrow,.shop-featured-note h3,.shop-featured-note p,.shop-featured-note-stats,.shop-featured-note-actions{position:relative;z-index:1}.shop-featured-note .shop-eyebrow{color:#f4d36f}.shop-featured-note h3{font-size:clamp(28px,2.6vw,40px);line-height:.96;letter-spacing:-.05em}.shop-featured-note p{color:#ffffffbd;font-size:14px;line-height:1.75}.shop-featured-note-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.shop-featured-note-stats div{padding:14px 12px;border:1px solid rgba(255,255,255,.12);border-radius:20px;background:#ffffff0f}.shop-featured-note-stats strong{display:block;color:#fff7d7;font-size:24px;line-height:1}.shop-featured-note-stats span{display:block;margin-top:5px;color:#ffffffa3;font-size:10px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.shop-featured-note-actions{display:flex;flex-wrap:wrap;gap:10px}.shop-featured-note-actions .shop-gold-button,.shop-featured-note-actions .shop-detail-button{flex:1 1 0;justify-content:center}.shop-discovery-stack{display:grid;gap:24px}.shop-section-heading{display:grid;gap:8px;margin-bottom:18px}.shop-section-heading h2,.shop-toolbar h2{color:var(--shop-forest);font-size:clamp(26px,4vw,42px);font-weight:800;letter-spacing:-.04em}.shop-section-heading p,.shop-toolbar p{max-width:620px;color:#647063;font-size:14px}.shop-category-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.shop-experience-panel .shop-category-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-category-card{overflow:hidden;min-height:172px;padding:18px;border:1px solid rgba(143,76,195,.12);border-radius:24px;background:#fffaf0d1;color:var(--shop-forest);text-align:left;cursor:pointer;box-shadow:0 16px 34px #2d184214;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.shop-shell.shop-frame-wisteria .shop-category-card:after{content:"";position:absolute;right:-8px;top:-10px;width:72px;height:72px;background:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20280'%20fill='none'%3e%3cdefs%3e%3clinearGradient%20id='sprayLeaf'%20x1='0'%20y1='0'%20x2='1'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23D7ECC1'/%3e%3cstop%20offset='1'%20stop-color='%236C984F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalA'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23F6EEFF'/%3e%3cstop%20offset='0.48'%20stop-color='%23D7BCF2'/%3e%3cstop%20offset='1'%20stop-color='%238F4CC3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalB'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23EADAF9'/%3e%3cstop%20offset='0.5'%20stop-color='%23BB8DDD'/%3e%3cstop%20offset='1'%20stop-color='%237A39B0'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20d='M20%20242c42-48%2081-90%20127-122c36-25%2073-43%20113-56'%20stroke='%236C984F'%20stroke-width='4.5'%20stroke-linecap='round'/%3e%3cpath%20d='M74%20193c-27-2-50%205-71%2023c28%207%2052%200%2071-23Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M116%20159c-26%202-47%2013-63%2033c27%202%2048-9%2063-33Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M159%20126c-21%200-41%208-57%2025c22%204%2041-4%2057-25Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M178%20111c6-23%2020-43%2041-61c5%2028-10%2050-41%2061Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M212%2095c18-16%2038-24%2061-24c-14%2021-34%2029-61%2024Z'%20fill='url(%23sprayLeaf)'/%3e%3cg%20transform='translate(26%20178)'%3e%3cpath%20d='M34%200c-9%2018-14%2038-14%2059'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='30'%20cy='16'%20rx='14'%20ry='8'%20transform='rotate(-12%2030%2016)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='32'%20cy='29'%20rx='13'%20ry='8'%20transform='rotate(-7%2032%2029)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='42'%20rx='12'%20ry='7'%20transform='rotate(-12%2028%2042)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='30'%20cy='54'%20rx='11'%20ry='7'%20transform='rotate(-6%2030%2054)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='65'%20rx='10'%20ry='6'%20transform='rotate(-12%2027%2065)'%20fill='url(%23sprayPetalA)'/%3e%3c/g%3e%3cg%20transform='translate(98%20124)'%3e%3cpath%20d='M30%200c-8%2018-10%2038-6%2058'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='26'%20cy='16'%20rx='13'%20ry='8'%20transform='rotate(-10%2026%2016)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='29'%20rx='12'%20ry='7'%20transform='rotate(-5%2028%2029)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='41'%20rx='11'%20ry='7'%20transform='rotate(-10%2025%2041)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='53'%20rx='10'%20ry='6'%20transform='rotate(-4%2027%2053)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='64'%20rx='9'%20ry='5'%20transform='rotate(-10%2024%2064)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3cg%20transform='translate(170%2080)'%3e%3cpath%20d='M26%200c-6%2016-7%2034-3%2051'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='23'%20cy='14'%20rx='12'%20ry='7'%20transform='rotate(-8%2023%2014)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='26'%20rx='11'%20ry='7'%20transform='rotate(-3%2025%2026)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='22'%20cy='37'%20rx='10'%20ry='6'%20transform='rotate(-8%2022%2037)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='47'%20rx='9'%20ry='5'%20transform='rotate(-3%2024%2047)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;opacity:.18;transform:rotate(4deg);pointer-events:none}.shop-category-card:hover,.shop-category-card.active{transform:translateY(-4px);border-color:#8f4cc36b;box-shadow:0 22px 44px #2d184224}.shop-category-index{display:grid;place-items:center;width:38px;height:38px;margin-bottom:18px;border-radius:50%;background:#efe0b8;color:#795e16;font-size:12px;font-weight:800}.shop-category-card strong{display:block;margin-bottom:8px;font-size:18px}.shop-category-card small{display:block;color:#6e766d;font-size:12px;line-height:1.6}.shop-wellness-strip{display:grid;width:min(1120px,100%);grid-template-columns:repeat(3,minmax(240px,1fr));gap:18px;margin:30px auto 0}.shop-wellness-strip article{overflow:hidden;min-height:206px;display:grid;align-content:center;justify-items:center;text-align:center;gap:10px;padding:28px 24px;border-radius:26px;background:var(--shop-forest);color:#fff;box-shadow:0 20px 44px #14261829}.shop-shell.shop-frame-wisteria .shop-wellness-strip article:after{content:"";position:absolute;left:-12px;bottom:-18px;width:92px;height:92px;background:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20280%20280'%20fill='none'%3e%3cdefs%3e%3clinearGradient%20id='sprayLeaf'%20x1='0'%20y1='0'%20x2='1'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23D7ECC1'/%3e%3cstop%20offset='1'%20stop-color='%236C984F'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalA'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23F6EEFF'/%3e%3cstop%20offset='0.48'%20stop-color='%23D7BCF2'/%3e%3cstop%20offset='1'%20stop-color='%238F4CC3'/%3e%3c/linearGradient%3e%3clinearGradient%20id='sprayPetalB'%20x1='0'%20y1='0'%20x2='0'%20y2='1'%3e%3cstop%20offset='0'%20stop-color='%23EADAF9'/%3e%3cstop%20offset='0.5'%20stop-color='%23BB8DDD'/%3e%3cstop%20offset='1'%20stop-color='%237A39B0'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20d='M20%20242c42-48%2081-90%20127-122c36-25%2073-43%20113-56'%20stroke='%236C984F'%20stroke-width='4.5'%20stroke-linecap='round'/%3e%3cpath%20d='M74%20193c-27-2-50%205-71%2023c28%207%2052%200%2071-23Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M116%20159c-26%202-47%2013-63%2033c27%202%2048-9%2063-33Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M159%20126c-21%200-41%208-57%2025c22%204%2041-4%2057-25Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M178%20111c6-23%2020-43%2041-61c5%2028-10%2050-41%2061Z'%20fill='url(%23sprayLeaf)'/%3e%3cpath%20d='M212%2095c18-16%2038-24%2061-24c-14%2021-34%2029-61%2024Z'%20fill='url(%23sprayLeaf)'/%3e%3cg%20transform='translate(26%20178)'%3e%3cpath%20d='M34%200c-9%2018-14%2038-14%2059'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='30'%20cy='16'%20rx='14'%20ry='8'%20transform='rotate(-12%2030%2016)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='32'%20cy='29'%20rx='13'%20ry='8'%20transform='rotate(-7%2032%2029)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='42'%20rx='12'%20ry='7'%20transform='rotate(-12%2028%2042)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='30'%20cy='54'%20rx='11'%20ry='7'%20transform='rotate(-6%2030%2054)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='65'%20rx='10'%20ry='6'%20transform='rotate(-12%2027%2065)'%20fill='url(%23sprayPetalA)'/%3e%3c/g%3e%3cg%20transform='translate(98%20124)'%3e%3cpath%20d='M30%200c-8%2018-10%2038-6%2058'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='26'%20cy='16'%20rx='13'%20ry='8'%20transform='rotate(-10%2026%2016)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='28'%20cy='29'%20rx='12'%20ry='7'%20transform='rotate(-5%2028%2029)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='41'%20rx='11'%20ry='7'%20transform='rotate(-10%2025%2041)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='27'%20cy='53'%20rx='10'%20ry='6'%20transform='rotate(-4%2027%2053)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='64'%20rx='9'%20ry='5'%20transform='rotate(-10%2024%2064)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3cg%20transform='translate(170%2080)'%3e%3cpath%20d='M26%200c-6%2016-7%2034-3%2051'%20stroke='%236C984F'%20stroke-width='3'%20stroke-linecap='round'/%3e%3cellipse%20cx='23'%20cy='14'%20rx='12'%20ry='7'%20transform='rotate(-8%2023%2014)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='25'%20cy='26'%20rx='11'%20ry='7'%20transform='rotate(-3%2025%2026)'%20fill='url(%23sprayPetalB)'/%3e%3cellipse%20cx='22'%20cy='37'%20rx='10'%20ry='6'%20transform='rotate(-8%2022%2037)'%20fill='url(%23sprayPetalA)'/%3e%3cellipse%20cx='24'%20cy='47'%20rx='9'%20ry='5'%20transform='rotate(-3%2024%2047)'%20fill='url(%23sprayPetalB)'/%3e%3c/g%3e%3c/svg%3e") center/contain no-repeat;opacity:.18;pointer-events:none}.shop-wellness-strip article:nth-child(2){background:#fff;color:var(--shop-forest)}.shop-wellness-strip article:nth-child(3){background:linear-gradient(135deg,#b98f24,#e3c060);color:#172018}.shop-wellness-strip span{color:inherit;opacity:.7;font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.shop-wellness-strip h3{margin:0;font-size:21px;line-height:1.1}.shop-wellness-strip p{max-width:26ch;color:inherit;opacity:.76;font-size:13px;line-height:1.7}.shop-products-section{overflow:hidden;scroll-margin-top:120px}.shop-shell.shop-frame-wisteria .shop-products-section{padding:30px 26px 18px;border:1px solid rgba(143,76,195,.12);border-radius:34px;background:linear-gradient(180deg,#fffdfff2,#f6effce0),radial-gradient(circle at 88% 14%,rgba(201,170,231,.16),transparent 22%);box-shadow:0 24px 52px #2d184214}.shop-toolbar{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:18px}.shop-controls{display:grid;justify-items:end;gap:10px;min-width:min(520px,100%)}.shop-search{width:min(360px,100%);padding:13px 16px;border:1px solid rgba(143,76,195,.16);border-radius:999px;background:#fffaf0db;color:var(--shop-forest);font:inherit;font-size:13px;outline:none;box-shadow:0 10px 24px #2d184214}.shop-search:focus{border-color:var(--shop-gold);box-shadow:0 0 0 4px #8f4cc324}.shop-filter-row{display:flex;justify-content:flex-end;flex-wrap:wrap;gap:8px}.shop-filter-row button{border:1px solid rgba(143,76,195,.12);border-radius:999px;background:#fffaf0b8;color:var(--shop-forest);padding:8px 12px;font-size:12px;font-weight:800;cursor:pointer}.shop-filter-row button.active,.shop-filter-row button:hover{border-color:transparent;background:var(--shop-forest);color:#fff}.shop-product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(235px,1fr));gap:18px}.shop-product-card{overflow:hidden;border:1px solid rgba(143,76,195,.1);border-radius:26px;background:#fffaf0eb;box-shadow:0 16px 38px #2d18421a;transition:transform .22s ease,box-shadow .22s ease}.shop-product-card:hover{transform:translateY(-5px);box-shadow:0 24px 50px #2d184229}.shop-product-media{position:relative;display:block;width:100%;height:245px;overflow:hidden;border:0;background:radial-gradient(circle at 50% 18%,rgba(143,76,195,.18),transparent 34%),#ebe2d1;cursor:pointer}.shop-product-image{width:100%;height:100%;object-fit:cover;transition:transform .28s ease}.shop-product-card:hover .shop-product-image{transform:scale(1.045)}.shop-product-placeholder{display:grid;place-items:center;width:100%;height:100%;color:#1720185c;font-size:34px;font-weight:800;letter-spacing:.18em}.shop-card-badge{position:absolute;left:14px;top:14px;padding:7px 10px;border-radius:999px;background:#5f2f85db;color:#fff;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.shop-product-hover{position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;gap:8px;padding:18px;background:linear-gradient(180deg,#5f2f8514,#5f2f85e0);color:#fff;opacity:0;transform:translateY(12px);transition:opacity .22s ease,transform .22s ease;text-align:left}.shop-product-media:hover .shop-product-hover,.shop-product-media:focus-visible .shop-product-hover{opacity:1;transform:translateY(0)}.shop-product-hover strong{font-size:15px;font-weight:800}.shop-product-hover span{color:#ffffffc7;font-size:12px;line-height:1.55}.shop-product-body{display:grid;gap:8px;padding:18px}.shop-product-kicker{color:var(--shop-gold);font-size:10px;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.shop-product-body h3{color:var(--shop-forest);font-size:17px;line-height:1.25}.shop-product-body p{min-height:40px;color:#697367;font-size:12px;line-height:1.65}.shop-product-footer{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin-top:4px}.shop-product-footer strong{display:block;color:var(--shop-forest);font-size:21px}.shop-product-footer small{display:block;color:#71786e;font-size:11px}.shop-add-button{padding:9px 15px}.shop-detail-button{border:1px solid rgba(143,76,195,.18);border-radius:999px;background:#fffaf0cc;color:var(--shop-forest);padding:9px 13px;font-size:12px;font-weight:800;cursor:pointer;transition:transform .2s ease,background .2s ease}.shop-detail-button:hover{transform:translateY(-1px);background:#efe0b8}.shop-empty{grid-column:1 / -1;display:grid;place-items:center;gap:6px;min-height:220px;border:1px dashed rgba(143,76,195,.22);border-radius:26px;color:#70786e;background:#fffaf094}.shop-empty strong{color:var(--shop-forest);font-size:20px}.shop-shell .modal{border-radius:24px}.shop-shell .modal-title{color:var(--shop-forest);font-family:var(--shop-font-heading);font-size:20px}.shop-checkout-modal{max-width:560px}.shop-register-modal{max-width:540px}.shop-product-modal{position:relative;width:min(920px,92vw);max-width:920px;padding:18px}.shop-modal-close{position:absolute;top:14px;right:14px;z-index:2;display:grid;place-items:center;width:34px;height:34px;border:0;border-radius:50%;background:#5f2f851a;color:var(--shop-forest);cursor:pointer;font-weight:800}.shop-product-detail{display:grid;grid-template-columns:minmax(260px,.9fr) minmax(0,1.1fr);gap:24px;align-items:stretch}.shop-product-detail-media{min-height:430px;overflow:hidden;border-radius:24px;background:radial-gradient(circle at 50% 18%,rgba(143,76,195,.18),transparent 34%),#ebe2d1}.shop-product-detail-media img{width:100%;height:100%;object-fit:cover}.shop-product-detail-copy{display:flex;flex-direction:column;justify-content:center;gap:14px;padding:22px 18px 22px 0}.shop-product-detail-copy h2{color:var(--shop-forest);font-size:clamp(28px,4vw,46px);line-height:1;letter-spacing:-.05em}.shop-product-detail-copy p{color:#5f6a5d;font-size:14px;line-height:1.8}.shop-detail-pills{display:flex;flex-wrap:wrap;gap:8px}.shop-detail-pills span{padding:8px 10px;border-radius:999px;background:#f4ead3;color:#5b4814;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.shop-product-detail-price strong{display:block;color:var(--shop-forest);font-size:32px;line-height:1}.shop-product-detail-price small{display:block;margin-top:5px;color:var(--grey-600);font-size:12px}.shop-product-detail-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:4px}.shop-detail-note{color:#7b8378;font-size:12px;line-height:1.6}.shop-review-panel{display:grid;gap:14px;margin-top:8px;padding:18px;border:1px solid rgba(143,76,195,.12);border-radius:22px;background:#fffaf0b8}.shop-review-panel-header{display:flex;justify-content:space-between;gap:14px;align-items:center}.shop-review-panel-header strong{display:block;color:var(--shop-forest);font-size:15px}.shop-review-panel-header span{color:#768074;font-size:12px}.shop-review-form{display:grid;gap:10px}.shop-review-form-top{display:flex;justify-content:space-between;gap:12px;align-items:end;flex-wrap:wrap}.shop-review-label{display:block;margin-bottom:6px;color:var(--shop-forest);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.shop-review-form-actions{display:flex;justify-content:flex-end}.shop-review-list{display:grid;gap:10px}.shop-review-item{padding:14px 16px;border:1px solid rgba(143,76,195,.1);border-radius:18px;background:#ffffffad}.shop-review-item-top{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:4px}.shop-review-item-top strong{color:var(--shop-forest);font-size:14px}.shop-review-meta,.shop-review-note{color:#748073;font-size:12px;line-height:1.6}.shop-review-item p{margin-top:8px;color:#536052;font-size:13px;line-height:1.7}.shop-cart-lines{max-height:310px;overflow-y:auto;margin-bottom:14px}.shop-cart-line{display:flex;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid var(--grey-200)}.shop-cart-line img{width:48px;height:48px;object-fit:cover;border-radius:10px}.shop-cart-line-main{flex:1;min-width:0}.shop-cart-line-main strong{display:block;color:var(--shop-forest);font-size:13px}.shop-cart-line-main span{color:var(--grey-600);font-size:12px}.shop-cart-line-total{min-width:62px;color:var(--shop-forest);font-size:13px;text-align:right}.shop-remove-button{border:0;background:transparent;color:var(--red);cursor:pointer;font-weight:800}.shop-cart-totals{margin-bottom:14px;padding:14px;border-radius:16px;background:#f6efdf}.shop-modal-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}.shop-payment-options{display:grid;gap:10px;margin-bottom:14px}.shop-payment-options .btn-primary{justify-content:center;background:#1e7fbf}.shop-payment-options>span,.shop-secure-note,.shop-register-note{color:var(--grey-600);font-size:12px;text-align:center}.shop-secure-note{margin-top:12px}.shop-register-form{display:grid;gap:12px}.shop-register-field{display:grid;gap:6px;color:var(--shop-forest);font-size:12px;font-weight:800}.shop-register-checks{display:grid;gap:8px;padding:12px;border:1px solid rgba(143,76,195,.16);border-radius:16px;background:#f6efdf}.shop-register-check{display:flex;align-items:flex-start;gap:9px;color:#4e594c;font-size:12px;line-height:1.45}.shop-register-check input{margin-top:2px;accent-color:var(--shop-forest)}.shop-register-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.settings-shell{display:grid;gap:18px;max-width:1180px}.settings-hero{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(220px,.6fr);gap:18px;padding:26px 28px;border:1px solid rgba(143,76,195,.12);border-radius:28px;background:linear-gradient(135deg,#fffffff5,#f6eedff0),radial-gradient(circle at 90% 14%,rgba(143,76,195,.18),transparent 24%);box-shadow:0 24px 48px #2d184214}.settings-hero-eyebrow,.settings-card-eyebrow{color:var(--shop-gold);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.settings-hero h1{margin:10px 0 12px;color:var(--green-dark);font-size:clamp(28px,3vw,42px);line-height:.98;letter-spacing:-.04em}.settings-hero p,.settings-card-description,.settings-media-meta,.settings-hint,.settings-backup-note,.settings-savebar-copy{color:var(--grey-600);font-size:13px;line-height:1.7}.settings-hero-status{display:grid;gap:14px;align-content:start;justify-items:end}.settings-status-pill{display:inline-flex;align-items:center;padding:9px 14px;border-radius:999px;font-size:12px;font-weight:700}.settings-status-pill.is-saved{background:#167d461f;color:#167d46}.settings-status-pill.is-pending{background:#8f4cc324;color:#805d00}.settings-section-nav{position:sticky;top:76px;z-index:18;display:flex;flex-wrap:wrap;gap:10px;padding:14px 0 4px}.settings-section-link{display:grid;gap:2px;min-width:150px;padding:12px 14px;border:1px solid rgba(143,76,195,.1);border-radius:16px;background:#ffffffd6;color:var(--green-dark);text-decoration:none;box-shadow:0 12px 26px #2d18420f;-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.settings-section-link span{font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#8f4cc38c}.settings-section-link strong{font-size:13px;line-height:1.2}.settings-section-link:hover{transform:translateY(-1px);border-color:#8f4cc347;box-shadow:0 16px 32px #2d18421a}.settings-grid,.settings-media-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:18px}.settings-card{position:relative;overflow:hidden;padding:22px 22px 20px;border:1px solid rgba(143,76,195,.12);border-radius:24px;background:linear-gradient(180deg,#fffffff5,#f4ecfbeb);box-shadow:0 18px 36px #2d18420f}.settings-card-section:before{content:"";position:absolute;inset:0 auto 0 0;width:6px;background:linear-gradient(180deg,var(--settings-accent),rgba(255,255,255,0));opacity:.95}.settings-card-header{display:flex;justify-content:space-between;align-items:start;gap:12px;margin-bottom:10px}.settings-card h3,.settings-savebar-title{color:var(--green-dark);font-size:22px;line-height:1.08;letter-spacing:-.03em}.settings-card-stat{display:inline-flex;align-items:center;padding:8px 12px;border-radius:999px;background:#5f2f850f;color:#5f2f85b8;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.settings-field-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:16px}.settings-field{display:grid;gap:7px}.settings-label{color:var(--green-dark);font-size:12px;font-weight:700}.settings-input{width:100%;min-height:46px;padding:12px 14px;border:1px solid rgba(143,76,195,.14);border-radius:14px;background:#ffffffeb;color:var(--grey-800);font-size:14px;box-shadow:inset 0 1px #ffffffb3}.settings-input:focus{outline:none;border-color:#8f4cc394;box-shadow:0 0 0 3px #8f4cc31a}.settings-font-preview{padding:12px 14px;border:1px solid rgba(143,76,195,.1);border-radius:14px;background:linear-gradient(180deg,#fffffffa,#f6f0fbeb);color:#24262b;font-size:15px;line-height:1.45;box-shadow:inset 0 1px #ffffffb3}.settings-textarea{min-height:92px;resize:vertical}.settings-media-card{display:grid;gap:12px}.settings-media-preview{display:grid;place-items:center;min-height:180px;border:1px dashed rgba(143,76,195,.18);border-radius:20px;background:#ffffffa3}.settings-media-preview img{width:min(180px,100%);max-height:180px;object-fit:contain;padding:12px}.settings-media-placeholder{color:var(--grey-500);font-size:13px}.settings-media-actions,.settings-backup-actions{display:flex;flex-wrap:wrap;gap:10px}.settings-savebar{display:flex;justify-content:space-between;gap:16px;align-items:center;padding:18px 22px;border:1px solid rgba(143,76,195,.12);border-radius:22px;background:linear-gradient(135deg,#5f2f85f5,#8f4cc3eb);box-shadow:0 22px 44px #2d184229}.settings-savebar-title{color:#f3ebfc;font-size:20px}.settings-savebar-copy{color:#ffffffb8}.settings-alert{display:flex;justify-content:space-between;gap:12px;align-items:center}.settings-alert-close{border:0;background:none;color:inherit;cursor:pointer;font-size:16px}@media (max-width: 1320px){.shop-specials-banner,.shop-discovery-layout.has-featured,.shop-featured-panel-content.is-single,.shop-featured-panel-content.is-multi,.shop-showcase.has-specials{grid-template-columns:1fr}.shop-showcase .shop-hero{order:1}.shop-specials-rail{position:static;top:auto}.shop-specials-rail-left{order:2}.shop-specials-rail-right{order:3}.shop-specials-rail-list{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-wisteria-garland{width:min(520px,70vw)}.shop-wisteria-spray-left{left:4px;top:470px;opacity:.34}.shop-wisteria-spray-right{right:4px;top:320px;opacity:.3}.shop-specials-wisteria-garland{width:min(380px,68vw)}.shop-specials-wisteria-left,.shop-specials-wisteria-right{width:clamp(98px,15vw,148px);opacity:.34}.shop-products-wisteria-garland{right:52px;width:min(300px,48vw)}}@media (max-width: 1060px){.shop-header{align-items:flex-start;flex-wrap:wrap}.shop-nav{order:3;width:100%;justify-content:center}.shop-hero{grid-template-columns:1fr}.shop-hero-wisteria-right{opacity:.22}.shop-hero-card{max-width:520px}.shop-featured-note-stats{grid-template-columns:repeat(3,minmax(0,1fr))}.shop-category-grid,.shop-wellness-strip{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-toolbar{align-items:stretch;flex-direction:column}.shop-specials-rail-frame{padding:22px 34px}.shop-specials-banner{padding:22px}.shop-specials-spotlight-media{height:228px}.shop-controls{justify-items:stretch}.shop-search{width:100%}.shop-filter-row{justify-content:flex-start}.shop-wisteria-garland-top{top:58px;width:min(420px,72vw)}.shop-wisteria-garland-bottom{display:none}.shop-wisteria-spray-left,.shop-wisteria-spray-right{width:120px;opacity:.24}.shop-wisteria-spray-left{left:-16px;top:540px}.shop-wisteria-spray-right{right:-18px;top:340px}.shop-specials-wisteria-right,.shop-panel-spray-right,.shop-products-wisteria-spray{display:none}.shop-specials-wisteria-garland,.shop-hero-garland,.shop-panel-garland{width:min(320px,66vw)}.shop-strip-wisteria{width:84px;opacity:.36}}@media (max-width: 680px){.shop-announcement{align-items:center;flex-direction:column;gap:5px;letter-spacing:.08em}.shop-announcement span:after{display:none!important}.shop-header{align-items:center;padding:14px}.shop-brand{flex:1 1 auto;min-width:0}.shop-brand small,.shop-nav,.shop-header-account-actions{display:none}.shop-mobile-menu-toggle,.shop-mobile-nav-backdrop,.shop-mobile-nav-drawer{display:block}.shop-mobile-menu-toggle{display:inline-flex;flex:0 0 auto}.shop-header-actions{margin-left:auto;width:auto;justify-content:flex-end;flex-wrap:nowrap}.shop-cart-button{max-width:min(58vw,240px)}.shop-container{width:min(100% - 22px,1180px);padding:20px 10px 52px}.shop-container:before{top:4px;right:0;bottom:10px;left:0;border-radius:28px;box-shadow:inset 0 0 0 6px #fff3}.shop-container:after{top:12px;right:8px;bottom:18px;left:8px;border-radius:22px}.shop-wisteria-garland-bottom,.shop-wisteria-spray,.shop-specials-wisteria-left,.shop-specials-wisteria-right,.shop-panel-garland,.shop-panel-spray-right,.shop-products-wisteria-spray,.shop-strip-wisteria{display:none}.shop-wisteria-garland-top{top:86px;width:min(260px,70vw);opacity:.52}.shop-specials-wisteria-garland{top:4px;width:min(250px,70vw);opacity:.72}.shop-hero-garland{top:6px;width:min(250px,68vw);opacity:.58}.shop-products-wisteria-garland{right:18px;top:4px;width:min(220px,60vw);opacity:.56}.shop-shell.shop-specials-theme-wisteria .shop-specials-rail-frame:before,.shop-shell.shop-specials-theme-wisteria .shop-specials-rail-frame:after{width:32px;background-size:28px 92px;opacity:.42}.shop-shell.shop-frame-wisteria .shop-products-section{padding:24px 18px 14px;border-radius:28px}.shop-featured-panel,.shop-experience-panel{padding:22px}.shop-hero{min-height:auto;padding:28px 22px;border-radius:26px}.shop-wisteria-cluster{width:118px;top:118px;opacity:.7}.shop-wisteria-corner-bottom,.shop-hero-wisteria-right{display:none}.shop-wisteria-corner-top{width:148px;top:148px;opacity:.34}.shop-hero-wisteria-left{width:108px;left:-20px;bottom:auto;top:14px;opacity:.24}.shop-hero h1{font-size:40px}.shop-hero-metrics,.shop-category-grid,.shop-wellness-strip,.shop-register-grid,.shop-specials-rail-list{grid-template-columns:1fr}.shop-specials-banner-chips{flex-direction:column;align-items:flex-start}.shop-featured-grid.is-single,.shop-featured-grid.is-multi,.shop-featured-note-stats{grid-template-columns:1fr}.shop-featured-note-actions .shop-gold-button,.shop-featured-note-actions .shop-detail-button{flex-basis:auto}.shop-specials-spotlight-body h3{font-size:26px}.shop-specials-spotlight-actions .shop-detail-button,.shop-specials-spotlight-actions .shop-add-button,.shop-special-card-actions .shop-detail-button,.shop-special-card-actions .shop-add-button{flex-basis:auto}.shop-hero-product-frame{height:260px}.shop-product-grid{grid-template-columns:1fr}.shop-cart-line{align-items:flex-start;flex-wrap:wrap}.shop-cart-line-total{text-align:left}.shop-product-footer{align-items:flex-start;flex-wrap:wrap}.shop-product-modal{padding:14px}.shop-product-detail{grid-template-columns:1fr}.shop-product-detail-media{min-height:280px}.shop-product-detail-copy{padding:0 4px 8px}}@media (max-width: 768px){.settings-hero,.settings-savebar,.attendance-current-grid,.shop-review-panel-header,.shop-review-form-top{grid-template-columns:1fr;flex-direction:column;align-items:stretch}.settings-field-grid,.attendance-layout{grid-template-columns:1fr}.sidebar{transform:translate(-100%);max-width:min(86vw,var(--sidebar-w));box-shadow:18px 0 44px #00000042}.sidebar-auto-hide .sidebar{transform:translate(-100%)}.sidebar.open,.sidebar-auto-hide .sidebar.open{transform:translate(0)}.sidebar-backdrop{display:block}.main-area,.sidebar-auto-hide .main-area{margin-left:0}.topbar{min-height:var(--header-h);height:auto;padding:10px 14px;flex-wrap:wrap;row-gap:8px}.topbar-heading{order:3;flex:1 1 100%;gap:6px}.topbar-title{font-size:15px}.topbar-meta{gap:5px}.topbar-meta-chip{font-size:10px;padding:3px 7px}.sidebar-toggle-btn{padding:8px 12px;min-width:78px}.topbar-link-btn{margin-left:auto;padding:8px 11px}.topbar-branch{display:none}.page-content{padding:18px 14px}.pos-layout{grid-template-columns:1fr;height:auto;min-height:calc(100vh - var(--header-h) - 24px);align-content:start}.pos-mobile-switcher{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;position:sticky;top:0;z-index:6;padding-bottom:8px;background:var(--grey-100)}.pos-products,.pos-basket{min-height:calc(100vh - var(--header-h) - 148px)}.pos-search{position:sticky;top:54px;z-index:5;padding:0 0 10px;border-bottom:0;background:var(--grey-100)}.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.product-tile{padding:10px}.product-tile .name{font-size:11px}.basket-header{position:sticky;top:0;z-index:4;background:#fff}.basket-items{padding:8px}.basket-item{align-items:flex-start;flex-wrap:wrap}.basket-item>div:first-child{min-width:0}.pos-branch-banner{flex-direction:column;align-items:flex-start}.basket-item-actions{width:100%}.basket-item-total{margin-left:auto}.basket-footer{position:sticky;bottom:0;box-shadow:0 -10px 20px #0f172a14}.form-row,.form-row-3{grid-template-columns:1fr}}.shop-info-hub{margin-top:32px;padding:28px;border-radius:28px;border:1px solid rgba(143,76,195,.18);background:linear-gradient(180deg,#fffffff5,#f4ecfbeb),radial-gradient(circle at top right,rgba(154,209,125,.18),transparent 38%);box-shadow:0 18px 50px #5d3d7a14}.shop-info-card-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.shop-info-card{display:flex;flex-direction:column;gap:8px;min-height:152px;padding:20px;border-radius:22px;text-decoration:none;color:var(--green-dark);background:#ffffffd6;border:1px solid rgba(143,76,195,.14);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}.shop-info-card:hover{transform:translateY(-2px);box-shadow:0 16px 30px #5d3d7a1f;border-color:#8f4cc347}.shop-info-card strong{font-size:18px;line-height:1.2}.shop-info-card span{color:#24262bc7;font-size:14px;line-height:1.55}.shop-site-footer{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin:26px 0 8px;padding:22px 4px 4px;border-top:1px solid rgba(143,76,195,.18)}.shop-site-footer-copy{display:flex;flex-direction:column;gap:6px}.shop-site-footer-copy strong{font-size:18px;color:var(--green-dark)}.shop-site-footer-copy span{color:#24262bb8;font-size:14px;max-width:420px;line-height:1.55}.shop-site-footer-links{display:flex;justify-content:flex-end;gap:10px 14px;flex-wrap:wrap;max-width:720px}.shop-site-footer-links a,.shop-register-check a{color:#8f4cc3;text-decoration:none;font-weight:600}.shop-site-footer-links a:hover,.shop-register-check a:hover{text-decoration:underline}.storefront-info-page{min-height:100vh;padding:32px 18px 48px;background:radial-gradient(circle at top left,rgba(201,170,231,.34),transparent 34%),radial-gradient(circle at bottom right,rgba(154,209,125,.2),transparent 30%),linear-gradient(180deg,#f8f3fc,#fff 46%,#f6fbf3)}.storefront-info-shell{width:min(1180px,100%);margin:0 auto}.storefront-info-topbar{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:16px;color:#24262bb3;font-size:14px}.storefront-info-back{color:#8f4cc3;text-decoration:none;font-weight:700}.storefront-info-hero{padding:30px 34px;border-radius:30px;background:#ffffffe6;border:1px solid rgba(143,76,195,.16);box-shadow:0 24px 54px #5d3d7a14}.storefront-info-eyebrow{display:inline-flex;margin-bottom:10px;font-size:11px;letter-spacing:.22em;text-transform:uppercase;color:#8f4cc3;font-weight:700}.storefront-info-hero h1{margin:0 0 10px;font-size:clamp(34px,4vw,52px);line-height:1.02;color:var(--green-dark)}.storefront-info-hero p{margin:0;max-width:760px;color:#24262bc7;line-height:1.75;font-size:16px}.storefront-info-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:22px;margin-top:24px}.storefront-info-nav,.storefront-info-card{border-radius:28px;border:1px solid rgba(143,76,195,.14);background:#ffffffeb;box-shadow:0 18px 48px #5d3d7a14}.storefront-info-nav{position:sticky;top:20px;align-self:start;padding:22px}.storefront-info-nav strong{display:block;margin-bottom:12px;color:var(--green-dark)}.storefront-info-nav-links{display:flex;flex-direction:column;gap:8px}.storefront-info-nav-links a{padding:10px 12px;border-radius:12px;text-decoration:none;color:#24262bc2;transition:background .18s ease,color .18s ease}.storefront-info-nav-links a.active,.storefront-info-nav-links a:hover{background:#8f4cc31a;color:#8f4cc3}.storefront-info-card{padding:30px 34px}.storefront-info-section+.storefront-info-section{margin-top:28px;padding-top:28px;border-top:1px solid rgba(143,76,195,.1)}.storefront-info-section h2{margin:0 0 12px;color:var(--green-dark);font-size:24px}.storefront-info-section p,.storefront-info-section li{color:#24262bcc;line-height:1.8;font-size:15px}.storefront-info-section ul{margin:0;padding-left:18px}@media (max-width: 1080px){.shop-info-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.storefront-info-layout{grid-template-columns:1fr}.storefront-info-nav{position:static}}@media (max-width: 768px){.shop-info-hub{padding:22px;border-radius:24px}.shop-info-card-grid{grid-template-columns:1fr}.shop-site-footer{flex-direction:column}.shop-site-footer-links{justify-content:flex-start}.storefront-info-page{padding:20px 12px 34px}.storefront-info-topbar,.storefront-info-hero,.storefront-info-card,.storefront-info-nav{padding-left:20px;padding-right:20px}.storefront-info-hero{padding-top:24px;padding-bottom:24px;border-radius:24px}.storefront-info-card,.storefront-info-nav{border-radius:22px}}.shop-shell{--shop-panel: #ffffff;--shop-panel-soft: #fbf7f1;--shop-panel-warm: #f3ecdf;--shop-border-soft: rgba(84, 48, 112, .12);--shop-border-strong: rgba(143, 76, 195, .22);--shop-copy: #24262b;--shop-copy-muted: #6d647a;--shop-shadow-soft: 0 18px 38px rgba(45, 24, 66, .08);--shop-shadow-strong: 0 28px 62px rgba(45, 24, 66, .12);background:radial-gradient(circle at top left,rgba(201,170,231,.18),transparent 28%),linear-gradient(180deg,#f7f1fb,#fbf8f2 38%,#f7f2ea)}.shop-botanical-frame{opacity:.45}.shop-announcement{gap:22px;padding:11px 18px;background:linear-gradient(90deg,#f3ead7,#f7efe0);color:#6b3696;border-bottom:1px solid rgba(143,76,195,.1);letter-spacing:.1em}.shop-announcement span:not(:last-child):after{background:#8f4cc3}.shop-header{gap:22px;padding:16px clamp(18px,4vw,44px);background:#ffffffeb;border-bottom:1px solid rgba(143,76,195,.1);box-shadow:0 16px 34px #2d184214}.shop-brand{color:var(--shop-copy)}.shop-brand-mark{box-shadow:0 14px 30px #8f4cc32e}.shop-brand small{color:var(--shop-copy-muted)}.shop-nav{border:1px solid var(--shop-border-soft);background:#faf7f1cc}.shop-nav button{color:#24262bc7}.shop-nav button:hover{background:#8f4cc314;color:var(--shop-copy)}.shop-user-chip{border-color:#8f4cc31f;background:#f3ebfc;color:#5f2f85}.shop-user-chip strong{color:#6b3696}.shop-ghost-button,.shop-outline-light{border-color:var(--shop-border-soft);background:#ffffffe6;color:var(--shop-copy)}.shop-ghost-button:hover,.shop-outline-light:hover{background:#fbf7f1}.shop-outline-accent{background:#ffffffd1}.shop-gold-button,.shop-cart-button,.shop-add-button{box-shadow:0 16px 28px #8f4cc329}.shop-cart-button:disabled{background:#ece2f8;color:#6d647a;opacity:1}.shop-mobile-menu-toggle{border-color:#8f4cc31f;background:#fffffff2;box-shadow:0 10px 24px #2d184214}.shop-mobile-menu-toggle span{background:#5f2f85}.shop-mobile-nav-panel{border-color:var(--shop-border-soft);background:#fffffffa;box-shadow:0 22px 48px #2d184229}.shop-mobile-nav-links button{border-color:#8f4cc31a;background:#fbf7f1;color:var(--shop-copy)}.shop-mobile-nav-links button:hover{background:#f3ebfc}.shop-container{width:min(1440px,calc(100% - 28px));padding:26px 8px 80px}.shop-container:before{top:0;right:0;bottom:0;left:0;border-color:#8f4cc314;border-radius:38px;background:linear-gradient(180deg,#ffffffb3,#ffffff7a);box-shadow:0 24px 60px #2d18420a}.shop-container:after{display:none}.shop-retail-hero{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:24px;overflow:hidden;padding:34px;border:1px solid var(--shop-border-soft);border-radius:34px;background:radial-gradient(circle at top right,rgba(201,170,231,.2),transparent 24%),linear-gradient(180deg,#fffffffa,#fbf7f1f5);box-shadow:var(--shop-shadow-soft)}.shop-retail-hero .shop-eyebrow{margin-bottom:10px}.shop-retail-hero h1{max-width:820px;color:#1f2230;font-size:clamp(38px,4vw,62px);line-height:.95;letter-spacing:-.05em}.shop-retail-hero p{max-width:760px;margin-top:16px;color:var(--shop-copy-muted);font-size:15px;line-height:1.8}.shop-hero-metrics{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:18px}.shop-hero-metrics div{padding:16px;border:1px solid var(--shop-border-soft);border-radius:20px;background:#faf7f1eb}.shop-hero-metrics strong{color:#1f2230}.shop-hero-metrics span{color:var(--shop-copy-muted)}.shop-retail-hero-side{display:grid;gap:16px;align-content:start}.shop-hero-feature-card{background:linear-gradient(180deg,#fff,#f9f4ec);border:1px solid var(--shop-border-soft);box-shadow:var(--shop-shadow-soft)}.shop-hero-card-top span,.shop-hero-product-copy span{color:#8f4cc3}.shop-hero-card-top strong,.shop-hero-product-copy strong{color:#1f2230}.shop-hero-feature-actions{display:flex;gap:10px;flex-wrap:wrap}.shop-hero-feature-actions .shop-detail-button,.shop-hero-feature-actions .shop-add-button{flex:1 1 140px;justify-content:center}.shop-social-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.shop-social-pill{display:inline-flex;align-items:center;justify-content:center;padding:9px 14px;border:1px solid var(--shop-border-soft);border-radius:999px;background:#ffffffe6;color:#5f2f85;text-decoration:none;font-size:12px;font-weight:700}.shop-social-pill:hover{background:#f3ebfc}.shop-quick-browse-grid{display:grid;gap:12px}.shop-quick-browse-card{display:grid;grid-template-columns:minmax(0,1fr) 84px;align-items:center;gap:14px;padding:16px;border:1px solid var(--shop-border-soft);border-radius:22px;background:#fffffff5;box-shadow:var(--shop-shadow-soft);cursor:pointer;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.shop-quick-browse-card:hover{transform:translateY(-2px);border-color:#8f4cc33d;box-shadow:var(--shop-shadow-strong)}.shop-quick-browse-copy{display:grid;gap:6px;text-align:left}.shop-quick-browse-copy span,.shop-trust-card span,.shop-gift-guide-copy span,.shop-collection-card-body span{color:#8f4cc3;font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.shop-quick-browse-copy strong{color:#1f2230;font-size:18px;line-height:1.05}.shop-quick-browse-copy small{color:var(--shop-copy-muted);font-size:13px;line-height:1.55}.shop-quick-browse-media,.shop-gift-guide-media,.shop-collection-card-media{overflow:hidden;border-radius:18px;background:linear-gradient(180deg,#fff8ef,#f2e9dc)}.shop-quick-browse-media{aspect-ratio:1 / 1}.shop-quick-browse-media img,.shop-gift-guide-media img,.shop-collection-card-media img{width:100%;height:100%;object-fit:cover}.shop-resume-banner{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:22px;padding:20px 24px;border:1px solid rgba(143,76,195,.12);border-radius:28px;background:linear-gradient(135deg,#fffffffa,#f3ebfce6);box-shadow:var(--shop-shadow-soft)}.shop-resume-banner strong{display:block;margin-top:8px;color:#1f2230;font-size:24px}.shop-resume-banner p{margin-top:8px;color:var(--shop-copy-muted);font-size:14px}.shop-trust-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:24px}.shop-trust-card{display:grid;gap:10px;padding:24px;border:1px solid var(--shop-border-soft);border-radius:28px;background:#fffffff5;box-shadow:var(--shop-shadow-soft)}.shop-trust-card h3{color:#1f2230;font-size:22px;line-height:1.02}.shop-trust-card p{color:var(--shop-copy-muted);font-size:14px;line-height:1.7}.shop-trust-card a,.shop-trust-card button{justify-self:start;border:0;padding:0;background:transparent;color:#6b3696;text-decoration:none;font-size:13px;font-weight:800;cursor:pointer}.shop-retail-section{margin-top:24px;padding:28px;border:1px solid var(--shop-border-soft);border-radius:32px;background:#fffffff7;box-shadow:var(--shop-shadow-soft)}.shop-section-heading-split{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);gap:18px;align-items:end}.shop-section-heading-split p{max-width:none}.shop-collection-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.shop-collection-card{display:grid;gap:14px;overflow:hidden;padding:14px;border:1px solid var(--shop-border-soft);border-radius:24px;background:linear-gradient(180deg,#fff,#fbf7f1);box-shadow:var(--shop-shadow-soft);text-align:left;cursor:pointer;transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease}.shop-collection-card:hover,.shop-collection-card.active{transform:translateY(-3px);border-color:var(--shop-border-strong);box-shadow:var(--shop-shadow-strong)}.shop-collection-card-media{aspect-ratio:1 / 1.02}.shop-collection-card-body{display:grid;gap:8px}.shop-collection-card-body strong{color:#1f2230;font-size:23px;line-height:1.02}.shop-collection-card-body p,.shop-collection-card-body small{color:var(--shop-copy-muted);line-height:1.65}.shop-gift-guide-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.shop-gift-guide-card{display:grid;grid-template-columns:minmax(0,1fr) 132px;gap:16px;align-items:center;padding:20px;border:1px solid var(--shop-border-soft);border-radius:28px;background:linear-gradient(180deg,#fff,#f8f3fb);box-shadow:var(--shop-shadow-soft)}.shop-gift-guide-copy{display:grid;gap:10px}.shop-gift-guide-copy h3{color:#1f2230;font-size:26px;line-height:.98}.shop-gift-guide-copy p{color:var(--shop-copy-muted);line-height:1.75}.shop-gift-guide-media{aspect-ratio:1 / 1}.shop-editorial-specials-layout{display:grid;grid-template-columns:minmax(340px,.88fr) minmax(0,1.12fr);gap:18px;align-items:start}.shop-editorial-specials-lead,.shop-editorial-specials-side{position:relative}.shop-editorial-specials-copy{display:grid;gap:8px;margin-bottom:16px}.shop-editorial-specials-copy strong{color:#1f2230;font-size:26px}.shop-editorial-specials-copy p{color:var(--shop-copy-muted);font-size:14px;line-height:1.7}.shop-specials-grid-compact{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.shop-curated-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.shop-product-grid{gap:18px;grid-template-columns:repeat(4,minmax(0,1fr))}.shop-product-card{border:1px solid var(--shop-border-soft);border-radius:26px;background:#fff;box-shadow:var(--shop-shadow-soft)}.shop-product-card:hover{box-shadow:var(--shop-shadow-strong)}.shop-product-media{padding:18px;background:linear-gradient(180deg,#fbf7f1,#f1eadf)}.shop-product-image{border-radius:18px}.shop-card-badge{top:14px;left:14px;border:1px solid rgba(143,76,195,.12);background:#fffffff5;color:#6b3696;box-shadow:none}.shop-product-body{gap:12px;padding:18px 18px 20px}.shop-product-kicker{color:#8f4cc3}.shop-product-body h3{color:#1f2230;font-size:20px}.shop-product-body p{color:var(--shop-copy-muted);min-height:52px}.shop-product-footer{grid-template-columns:minmax(0,1fr) auto auto;gap:10px;align-items:end}.shop-product-footer strong,.shop-special-card-price strong,.shop-specials-spotlight-price strong{color:#1f2230}.shop-detail-button{border:1px solid var(--shop-border-soft);border-radius:999px;background:#fff;color:var(--shop-copy)}.shop-detail-button:hover{background:#f3ebfc;border-color:#8f4cc32e}.shop-toolbar{padding:0}.shop-toolbar p{color:var(--shop-copy-muted)}.shop-controls{gap:14px}.shop-search{border-color:var(--shop-border-soft);background:#fff}.shop-filter-row{gap:8px}.shop-filter-row button{border-color:var(--shop-border-soft);background:#fbf7f1;color:var(--shop-copy)}.shop-filter-row button.active,.shop-filter-row button:hover{background:#f3ebfc;color:#5f2f85;border-color:#8f4cc32e}.shop-info-hub,.shop-site-footer{background:#fffffff7;box-shadow:var(--shop-shadow-soft)}.shop-site-footer{display:grid;grid-template-columns:minmax(220px,1fr) minmax(0,1.4fr) auto;align-items:start}.shop-site-footer-links-social{justify-content:flex-end}.shop-site-footer-links-social a{color:#6b3696}@media (max-width: 1240px){.shop-retail-hero,.shop-section-heading-split,.shop-editorial-specials-layout{grid-template-columns:1fr}.shop-collection-grid,.shop-curated-grid,.shop-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.shop-trust-strip,.shop-gift-guide-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 920px){.shop-resume-banner,.shop-site-footer{grid-template-columns:1fr;flex-direction:column}.shop-collection-grid,.shop-curated-grid,.shop-product-grid,.shop-specials-grid-compact{grid-template-columns:repeat(2,minmax(0,1fr))}.shop-gift-guide-card{grid-template-columns:minmax(0,1fr) 110px}}@media (max-width: 680px){.shop-announcement{padding-left:12px;padding-right:12px;gap:12px;font-size:10px}.shop-container{width:min(100%,calc(100% - 18px));padding:18px 0 60px}.shop-retail-hero,.shop-retail-section,.shop-resume-banner,.shop-info-hub,.shop-site-footer{padding:22px;border-radius:24px}.shop-trust-strip,.shop-collection-grid,.shop-gift-guide-grid,.shop-curated-grid,.shop-product-grid,.shop-specials-grid-compact,.shop-quick-browse-card,.shop-gift-guide-card{grid-template-columns:1fr}.shop-quick-browse-media,.shop-gift-guide-media{max-width:180px}.shop-product-footer{grid-template-columns:1fr}.shop-site-footer-links-social{justify-content:flex-start}}
