/* Paste the full style.css content here from the previous response */

:root {
    --mango: #e8991c;
    --mango-dark: #c47f10;
    --mango-light: #fef5e2;
    --mango-glow: rgba(232,153,28,.18);
    --leaf: #4a8c3f;
    --leaf-light: #eef6ec;
    --bark: #3e2f1c;
    --sand: #fdfaf3;
    --cream: #fff9ee;
    --linen: #f7f3ec;
    --ink: #1e1e1e;
    --slate: #4a4a4a;
    --ash: #7a7a7a;
    --mist: #c5c5c5;
    --cloud: #f0ede7;
    --white: #ffffff;
    --navy: #1a1e2a;
    --ff-body: 'DM Sans', system-ui, sans-serif;
    --ff-display: 'Playfair Display', Georgia, serif;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --r-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.10);
    --shadow-glow: 0 8px 32px var(--mango-glow);
    --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    color: var(--ink);
    background: var(--sand);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-linen { background: var(--linen); }

/* ── Announce Bar ── */
.announce-bar {
    background: var(--navy);
    color: rgba(255,255,255,.8);
    font-size: 12px;
    padding: 8px 0;
    text-align: center;
}
.announce-inner { display: flex; justify-content: center; align-items: center; gap: 6px; flex-wrap: wrap; }
.announce-bar i { color: var(--mango); margin-right: 4px; }
.announce-bar a { color: var(--mango); font-weight: 600; }
.announce-sep { opacity: .3; margin: 0 6px; }

/* ── Header ── */
.site-header {
    position: sticky; top: 0; z-index: 900;
    background: rgba(253,250,243,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--cloud);
    transition: box-shadow .3s var(--ease), padding .3s var(--ease);
    padding: 14px 0;
}
.site-header.scrolled { box-shadow: var(--shadow-md); padding: 8px 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 22px; }
.logo-icon { font-size: 30px; line-height: 1; }
.logo-text { font-family: var(--ff-display); color: var(--bark); }
.logo-text small { color: var(--mango); font-size: 14px; font-weight: 500; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    padding: 8px 14px; font-size: 14px; font-weight: 500;
    border-radius: var(--r-full); color: var(--slate);
    transition: all .25s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--bark); background: var(--mango-light); }
.btn-nav-order {
    background: linear-gradient(135deg, var(--mango), var(--mango-dark)) !important;
    color: var(--white) !important; font-weight: 600 !important;
    padding: 10px 22px !important; box-shadow: var(--shadow-glow);
}
.btn-nav-order:hover { transform: translateY(-2px); box-shadow: 0 6px 24px var(--mango-glow); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--bark); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--ff-body); font-weight: 600; font-size: 15px;
    padding: 14px 30px; border-radius: var(--r-full); border: none;
    cursor: pointer; transition: all .3s var(--ease); line-height: 1.2;
}
.btn-primary {
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white); box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--mango-glow); }
.btn-outline { background: transparent; border: 2px solid var(--mango); color: var(--mango-dark); }
.btn-outline:hover { background: var(--mango); color: var(--white); }
.btn-white { background: var(--white); color: var(--bark); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa { background: #25d366; color: var(--white); }
.btn-wa:hover { background: #128c7e; transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.full-btn { width: 100%; }

/* ── Section Headings ── */
.sec-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.sec-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--leaf); margin-bottom: 12px;
}
.sec-eyebrow::before, .sec-eyebrow::after {
    content: ''; width: 20px; height: 1.5px; background: var(--leaf); border-radius: 1px;
}
.sec-title {
    font-family: var(--ff-display); font-size: clamp(28px,5vw,42px);
    font-weight: 700; color: var(--bark); line-height: 1.25; margin-bottom: 14px;
}
.sec-desc { color: var(--ash); font-size: 16px; line-height: 1.7; }

/* ── Hero ── */
.hero {
    position: relative;
    background: linear-gradient(160deg, #1a1e2a 0%, #27301f 45%, #3e4a2e 100%);
    overflow: hidden; min-height: 92vh; display: flex; align-items: center;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(232,153,28,.12) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(74,140,63,.10) 0%, transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content { padding: 60px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,153,28,.15); border: 1px solid rgba(232,153,28,.3);
    color: var(--mango); padding: 8px 18px; border-radius: var(--r-full);
    font-size: 13px; font-weight: 600; margin-bottom: 20px;
}
.hero-title {
    font-family: var(--ff-display); font-size: clamp(36px,6vw,60px);
    font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--mango), #f0c040);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc { color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.8; margin-bottom: 28px; max-width: 480px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-chip {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85); padding: 7px 16px; border-radius: var(--r-full);
    font-size: 13px; backdrop-filter: blur(6px);
}
.hero-chip i { color: var(--mango); font-size: 12px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { text-align: center; position: relative; }
.hero-mango {
    font-size: min(22vw, 260px);
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
    animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.hero-ring {
    position: absolute; top: 50%; left: 50%;
    width: 340px; height: 340px;
    border: 2px dashed rgba(232,153,28,.2); border-radius: 50%;
    transform: translate(-50%,-50%); animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── Stats ── */
.stats-strip {
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    position: relative; z-index: 3; margin-top: -1px;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-box {
    text-align: center; padding: 28px 16px;
    border-right: 1px solid rgba(255,255,255,.15); color: var(--white);
}
.stat-box:last-child { border-right: none; }
.stat-num { font-family: var(--ff-display); font-size: 28px; font-weight: 700; }
.stat-label { font-size: 13px; opacity: .85; margin-top: 2px; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 28px; }
.product-card {
    background: var(--white); border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--cloud);
    transition: all .35s var(--ease); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--mango); }
.product-card-img {
    background: linear-gradient(135deg, var(--cream), var(--mango-light));
    padding: 38px 20px; text-align: center; position: relative;
}
.product-card-img .mango-icon {
    font-size: 90px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
    transition: transform .4s var(--ease);
}
.product-card:hover .mango-icon { transform: scale(1.12) rotate(6deg); }
.product-card-badge {
    position: absolute; top: 14px; right: 14px;
    padding: 4px 12px; border-radius: var(--r-full);
    font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.badge-season { background: var(--leaf-light); color: var(--leaf); border: 1px solid rgba(74,140,63,.25); }
.badge-sold { background: #fde8e8; color: #c0392b; border: 1px solid rgba(192,57,43,.25); }
.product-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-card-name { font-family: var(--ff-display); font-size: 20px; font-weight: 700; color: var(--bark); margin-bottom: 4px; }
.product-card-tagline { font-size: 13px; color: var(--mango); font-weight: 600; margin-bottom: 10px; }
.product-card-desc { font-size: 14px; color: var(--ash); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.product-card-season { font-size: 12px; color: var(--ash); display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.product-card-season i { color: var(--leaf); font-size: 11px; }
.product-card-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price-main { font-size: 24px; font-weight: 700; color: var(--mango-dark); font-family: var(--ff-display); }
.price-sub { font-size: 12px; color: var(--ash); background: var(--mango-light); padding: 3px 10px; border-radius: var(--r-full); }
.product-card-actions { display: flex; gap: 10px; }
.product-card-actions .btn { flex: 1; justify-content: center; font-size: 13px; padding: 11px 16px; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 24px; }
.feature-card {
    background: var(--white); border: 1px solid var(--cloud);
    border-radius: var(--r-lg); padding: 32px 26px; text-align: center;
    transition: all .3s var(--ease);
}
.feature-card:hover { border-color: var(--mango); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.feature-icon { font-size: 42px; margin-bottom: 16px; display: block; }
.feature-card h4 { font-family: var(--ff-display); font-weight: 700; color: var(--bark); margin-bottom: 8px; font-size: 18px; }
.feature-card p { color: var(--ash); font-size: 14px; line-height: 1.65; }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before {
    content: ''; position: absolute; top: 48px; left: 12%; right: 12%;
    height: 2px; background: repeating-linear-gradient(90deg, var(--mango) 0 8px, transparent 8px 16px); z-index: 0;
}
.step-card {
    background: var(--white); border-radius: var(--r-lg); padding: 30px 22px;
    text-align: center; position: relative; z-index: 1;
    box-shadow: var(--shadow-sm); border: 1px solid var(--cloud); transition: all .3s var(--ease);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; margin: 0 auto 16px;
    box-shadow: 0 4px 12px var(--mango-glow);
}
.step-icon { font-size: 38px; margin-bottom: 10px; display: block; }
.step-card h5 { font-weight: 700; color: var(--bark); margin-bottom: 6px; font-size: 16px; }
.step-card p { color: var(--ash); font-size: 13px; line-height: 1.6; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; }
.testi-card {
    background: var(--white); border: 1px solid var(--cloud);
    border-radius: var(--r-lg); padding: 28px; position: relative;
    transition: all .3s var(--ease);
}
.testi-card:hover { border-color: var(--mango); box-shadow: var(--shadow-md); }
.testi-card::before {
    content: '"'; position: absolute; top: 14px; right: 22px;
    font-family: var(--ff-display); font-size: 60px; color: var(--mango-light); line-height: 1;
}
.testi-stars { color: var(--mango); font-size: 14px; margin-bottom: 10px; }
.testi-text { color: var(--slate); font-size: 14px; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { font-weight: 700; color: var(--bark); font-size: 14px; }
.testi-city { color: var(--ash); font-size: 12px; }

/* ── CTA ── */
.cta-section {
    background: linear-gradient(160deg, #1a1e2a, #27301f);
    padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(232,153,28,.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-section h2 { font-family: var(--ff-display); color: var(--white); font-size: clamp(26px,4vw,38px); font-weight: 700; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero ── */
.page-hero {
    background: linear-gradient(160deg, #1a1e2a, #27301f);
    padding: 60px 0 40px; position: relative; overflow: hidden;
}
.page-hero::after {
    content: '\1F96D'; position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%); font-size: 100px; opacity: .05;
}
.page-hero h1 {
    font-family: var(--ff-display); font-size: clamp(28px,5vw,40px);
    font-weight: 700; color: var(--white); margin-bottom: 8px; position: relative; z-index: 2;
}
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); position: relative; z-index: 2; }
.breadcrumb a { color: var(--mango); }
.breadcrumb a:hover { color: var(--white); }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--bark); margin-bottom: 6px; }
.form-input {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--cloud);
    border-radius: var(--r-md); font-family: var(--ff-body);
    font-size: 14px; color: var(--ink); background: var(--white);
    transition: all .25s var(--ease);
}
.form-input:focus { outline: none; border-color: var(--mango); box-shadow: 0 0 0 3px var(--mango-glow); }
.form-input::placeholder { color: var(--mist); }
.form-card {
    background: var(--white); border-radius: var(--r-xl); padding: 40px;
    box-shadow: var(--shadow-md); border: 1px solid var(--cloud);
}
.form-card-title {
    font-family: var(--ff-display); font-size: 22px; font-weight: 700;
    color: var(--bark); margin-bottom: 28px; padding-bottom: 16px;
    border-bottom: 2px solid var(--mango-light);
}
.form-section {
    background: var(--sand); border-radius: var(--r-md); padding: 24px;
    margin-bottom: 24px; border: 1px solid var(--cloud);
}
.form-section-title {
    font-size: 15px; font-weight: 700; color: var(--leaf); margin-bottom: 18px;
    display: flex; align-items: center; gap: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-errors {
    background: #fde8e8; color: #c0392b; padding: 12px 16px;
    border-radius: var(--r-sm); font-size: 13px; margin-bottom: 16px;
    border: 1px solid rgba(192,57,43,.2);
}
.form-errors ul { margin: 4px 0 0 16px; list-style: disc; }
.field-error { font-size: 12px; color: #c0392b; margin-top: 4px; }

/* ── Payment ── */
.payment-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.payment-opt {
    background: var(--white); border: 1.5px solid var(--cloud);
    border-radius: var(--r-md); padding: 14px 16px; cursor: pointer;
    transition: all .25s var(--ease); display: flex; align-items: center; gap: 10px;
}
.payment-opt:hover { border-color: var(--mango); }
.payment-opt input[type="radio"] { accent-color: var(--mango); }
.payment-opt.selected { border-color: var(--mango); background: var(--mango-light); }
.payment-opt label { cursor: pointer; font-size: 14px; font-weight: 500; margin: 0; }

/* ── Price Calc ── */
.price-calc {
    background: linear-gradient(135deg, var(--cream), var(--mango-light));
    border-radius: var(--r-md); padding: 22px; border: 1px solid rgba(232,153,28,.25);
    margin-top: 16px; display: none;
}
.price-calc.visible { display: block; }
.calc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.calc-box { background: var(--white); border-radius: var(--r-sm); padding: 14px; text-align: center; }
.calc-box.highlight { background: linear-gradient(135deg, var(--mango), var(--mango-dark)); color: var(--white); }
.calc-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; opacity: .6; }
.calc-value { font-family: var(--ff-display); font-size: 20px; font-weight: 700; margin-top: 4px; }
.calc-box.highlight .calc-label { color: rgba(255,255,255,.8); }

/* ── Sidebar ── */
.sidebar-card {
    background: var(--white); border-radius: var(--r-lg); padding: 24px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--cloud); margin-bottom: 20px;
}
.sidebar-card h5 { font-family: var(--ff-display); font-weight: 700; color: var(--bark); margin-bottom: 14px; font-size: 17px; }
.sidebar-card.notice { border-left: 4px solid var(--mango); }
.notice-list { display: flex; flex-direction: column; }
.notice-item {
    padding: 9px 0; font-size: 13px; border-bottom: 1px solid var(--cloud);
    display: flex; align-items: center; gap: 8px;
}
.notice-item:last-child { border-bottom: none; }
.notice-item i { width: 16px; text-align: center; font-size: 12px; }
.partner-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.partner-badge {
    background: var(--mango-light); border: 1px solid rgba(232,153,28,.25);
    color: var(--mango-dark); padding: 5px 14px; border-radius: var(--r-full);
    font-size: 12px; font-weight: 700;
}

/* ── Order Grid ── */
.order-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; }

/* ── Policy Cards ── */
.policy-card {
    background: var(--white); border-radius: var(--r-xl);
    overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid var(--cloud); margin-bottom: 28px;
}
.policy-head {
    background: linear-gradient(135deg, var(--navy), #27301f);
    padding: 24px 34px; display: flex; align-items: center; gap: 16px;
}
.policy-head-icon { font-size: 34px; }
.policy-head h3 { color: var(--white); font-family: var(--ff-display); font-weight: 700; margin: 0; font-size: 22px; }
.policy-body { padding: 34px; }
.policy-step {
    display: flex; gap: 20px; padding-bottom: 24px; margin-bottom: 24px;
    border-bottom: 1px solid var(--cloud);
}
.policy-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.policy-step-num {
    width: 38px; height: 38px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px;
}
.policy-step h6 { font-weight: 700; color: var(--bark); margin-bottom: 6px; }
.policy-step p { color: var(--ash); font-size: 14px; line-height: 1.7; margin: 0; }
.policy-step ul { margin-top: 8px; padding-left: 0; }
.policy-step ul li { padding: 4px 0; font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 8px; }
.policy-step ul li i { color: var(--leaf); font-size: 12px; }

.shipping-point {
    display: flex; gap: 18px; align-items: flex-start; padding: 18px;
    background: var(--sand); border-radius: var(--r-md);
    border-left: 3px solid var(--mango); margin-bottom: 14px;
}
.shipping-point i { font-size: 22px; color: var(--mango); flex-shrink: 0; margin-top: 2px; }
.shipping-point h6 { font-weight: 700; color: var(--bark); margin-bottom: 4px; font-size: 14px; }
.shipping-point p { color: var(--ash); font-size: 13px; line-height: 1.6; margin: 0; }

.terms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 12px; }
.term-item {
    background: var(--sand); border: 1px solid var(--cloud);
    border-radius: var(--r-md); padding: 14px 18px;
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 500; color: var(--slate);
    transition: all .25s var(--ease);
}
.term-item:hover { border-color: var(--mango); background: var(--mango-light); }
.term-item i { color: var(--mango); width: 18px; }

/* ── Guide Cards ── */
.guide-card {
    background: var(--white); border-radius: var(--r-lg); padding: 32px 24px;
    text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--cloud);
    border-top: 4px solid var(--mango); position: relative; transition: all .3s var(--ease);
    height: 100%;
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.guide-num {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; box-shadow: 0 3px 10px var(--mango-glow);
}
.guide-icon { font-size: 48px; margin: 12px 0; }
.guide-card h5 { font-weight: 700; color: var(--bark); margin-bottom: 8px; }
.guide-card p { color: var(--ash); font-size: 13px; line-height: 1.65; }

.timeline-bar {
    display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
    background: var(--cream); border-radius: var(--r-lg); padding: 36px;
    border: 1px solid rgba(232,153,28,.2);
}
.tl-item { text-align: center; flex: 1; min-width: 110px; }
.tl-day {
    display: inline-block;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white); padding: 3px 12px; border-radius: var(--r-full);
    font-size: 11px; font-weight: 700; margin-bottom: 8px;
}
.tl-icon { font-size: 34px; margin-bottom: 6px; display: block; }
.tl-desc { font-size: 12px; font-weight: 600; color: var(--slate); }
.tl-arrow { font-size: 20px; color: var(--mango); font-weight: 700; }

/* ── Product Detail ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.detail-img-box {
    background: linear-gradient(135deg, var(--cream), var(--mango-light));
    border-radius: var(--r-xl); padding: 60px 40px; text-align: center;
    box-shadow: var(--shadow-md); position: relative;
}
.detail-status {
    margin-top: 20px; display: inline-block; padding: 6px 18px;
    border-radius: var(--r-full); font-size: 13px; font-weight: 600;
}
.status-in { background: var(--leaf-light); color: var(--leaf); border: 1px solid rgba(74,140,63,.3); }
.status-out { background: #fde8e8; color: #c0392b; border: 1px solid rgba(192,57,43,.3); }
.detail-name { font-family: var(--ff-display); font-size: clamp(28px,4vw,38px); font-weight: 700; color: var(--bark); margin-bottom: 6px; }
.detail-tagline { font-size: 15px; color: var(--mango); font-weight: 600; margin-bottom: 12px; }
.detail-season { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ash); font-weight: 600; margin-bottom: 20px; }
.detail-season i { color: var(--leaf); font-size: 12px; }
.detail-price-box {
    background: var(--cream); border-radius: var(--r-md);
    padding: 20px 24px; border: 1px solid rgba(232,153,28,.2); margin-bottom: 24px;
}
.detail-price-big { font-family: var(--ff-display); font-size: 34px; font-weight: 700; color: var(--mango-dark); }
.detail-price-unit { font-size: 14px; color: var(--ash); font-weight: 500; }
.detail-price-box-info { font-size: 13px; color: var(--ash); margin-top: 4px; }
.detail-desc { color: var(--slate); font-size: 15px; line-height: 1.8; margin-bottom: 24px; white-space: pre-line; }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.features-sidebar {
    background: var(--white); border-radius: var(--r-md); padding: 22px;
    box-shadow: var(--shadow-sm); margin-top: 24px; border: 1px solid var(--cloud);
}
.features-sidebar h5 { font-weight: 700; color: var(--bark); margin-bottom: 14px; font-size: 15px; }
.feat-list li {
    padding: 8px 0; font-size: 13px; color: var(--slate);
    border-bottom: 1px solid var(--cloud); display: flex; align-items: center; gap: 8px;
}
.feat-list li:last-child { border-bottom: none; }

/* ── Success Page ── */
.success-wrap { max-width: 640px; margin: 40px auto; text-align: center; }
.success-card { background: var(--white); border-radius: var(--r-xl); padding: 50px 40px; box-shadow: var(--shadow-lg); }
.success-emoji { font-size: 60px; margin-bottom: 12px; }
.success-h { font-family: var(--ff-display); font-size: 28px; font-weight: 700; color: var(--bark); margin-bottom: 10px; }
.success-sub { color: var(--ash); font-size: 15px; margin-bottom: 28px; }
.order-id-card { background: var(--navy); color: var(--white); border-radius: var(--r-md); padding: 20px 28px; margin-bottom: 28px; }
.order-id-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.5); }
.order-id-val { font-family: monospace; font-size: 22px; font-weight: 700; color: var(--mango); letter-spacing: 2px; margin-top: 4px; }
.order-id-card small { color: rgba(255,255,255,.4); font-size: 12px; }
.summary-box { background: var(--sand); border-radius: var(--r-md); padding: 22px; text-align: left; margin-bottom: 22px; }
.summary-box h5 { font-weight: 700; color: var(--bark); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--cloud); }
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; border-bottom: 1px solid var(--cloud); }
.summary-row:last-child { border-bottom: none; }
.summary-row.hl { background: var(--mango-light); padding: 10px 14px; border-radius: var(--r-sm); border: 1px solid rgba(232,153,28,.2); margin: 4px 0; }
.summary-label { color: var(--ash); }
.summary-value { font-weight: 700; color: var(--bark); }
.next-box { background: var(--cream); border-radius: var(--r-md); padding: 22px; text-align: left; margin-bottom: 28px; border: 1px solid rgba(232,153,28,.2); }
.next-box h5 { font-weight: 700; color: var(--bark); margin-bottom: 14px; }
.next-item { display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--slate); padding: 8px 0; }
.next-num {
    width: 26px; height: 26px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 11px;
}

/* ── Track Order ── */
.track-result { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(74,140,63,.3); margin-top: 24px; }
.track-result-head { background: linear-gradient(135deg, var(--leaf), #357a38); color: var(--white); padding: 16px 24px; font-weight: 700; }
.track-result-body { padding: 24px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: var(--r-full); font-size: 13px; font-weight: 600; }
.track-grid { background: var(--sand); border-radius: var(--r-md); padding: 18px; margin-top: 16px; }
.track-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--cloud); }
.track-row:last-child { border-bottom: none; }
.dashed-box { background: var(--cream); border: 2px dashed var(--mango); border-radius: var(--r-lg); padding: 40px; text-align: center; }
.dashed-box h4 { font-family: var(--ff-display); font-weight: 700; color: var(--bark); margin-bottom: 10px; }
.dashed-box p { color: var(--ash); margin-bottom: 20px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.contact-info-card { background: var(--white); border-radius: var(--r-md); padding: 24px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--mango); margin-bottom: 16px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--cloud); }
.contact-row:last-child { border-bottom: none; }
.contact-row-icon { width: 40px; height: 40px; flex-shrink: 0; background: linear-gradient(135deg, var(--mango), var(--mango-dark)); color: var(--white); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; }
.contact-row-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ash); font-weight: 700; }
.contact-row-val { font-size: 14px; font-weight: 600; color: var(--bark); }
.contact-row-val a { color: var(--bark); }
.contact-row-val a:hover { color: var(--mango); }
.wa-box { background: #f0fff4; border: 1px solid rgba(37,211,102,.3); border-radius: var(--r-md); padding: 20px; margin-bottom: 16px; }
.wa-box h5 { font-weight: 700; color: var(--bark); margin-bottom: 6px; }
.wa-box p { color: var(--ash); font-size: 13px; margin-bottom: 12px; }
.collab-box { background: var(--cream); border: 1px solid rgba(232,153,28,.3); border-radius: var(--r-md); padding: 20px; }
.collab-box h5 { font-weight: 700; color: var(--bark); margin-bottom: 6px; }
.collab-box p { color: var(--ash); font-size: 13px; margin-bottom: 12px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img-box { background: linear-gradient(135deg, var(--cream), var(--mango-light)); border-radius: var(--r-xl); padding: 50px; text-align: center; box-shadow: var(--shadow-md); position: relative; }
.about-badge { position: absolute; bottom: 20px; right: 20px; background: linear-gradient(135deg, var(--mango), var(--mango-dark)); color: var(--white); padding: 14px 18px; border-radius: var(--r-md); text-align: center; }
.about-badge .num { font-family: var(--ff-display); font-size: 28px; font-weight: 700; display: block; line-height: 1; }
.about-badge .txt { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-text { color: var(--slate); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.about-checks { margin-top: 18px; }
.about-check { padding: 7px 0; font-size: 14px; font-weight: 500; color: var(--bark); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--cloud); }
.about-check:last-child { border-bottom: none; }
.about-check i { color: var(--leaf); font-size: 13px; }

/* ── Alerts ── */
.messages-wrap { padding: 14px 0; }
.alert { padding: 14px 20px; border-radius: var(--r-md); font-size: 14px; font-weight: 500; display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; animation: slideDown .3s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.alert-success { background: var(--leaf-light); color: var(--leaf); border: 1px solid rgba(74,140,63,.3); }
.alert-error, .alert-danger { background: #fde8e8; color: #c0392b; border: 1px solid rgba(192,57,43,.3); }
.alert-close { background: none; border: none; font-size: 20px; cursor: pointer; color: inherit; padding: 0 4px; }

/* ── Error Pages ── */
.error-page { text-align: center; padding: 80px 20px; }
.error-code { font-family: var(--ff-display); font-size: clamp(80px,15vw,140px); font-weight: 700; color: var(--mango); line-height: 1; }
.error-title { font-family: var(--ff-display); font-size: 24px; color: var(--bark); margin: 10px 0; }
.error-desc { color: var(--ash); margin-bottom: 28px; }

/* ── WhatsApp FAB ── */
.wa-fab {
    position: fixed; bottom: 28px; right: 28px;
    width: 56px; height: 56px; background: #25d366; color: var(--white);
    border-radius: 50%; font-size: 28px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(37,211,102,.4);
    z-index: 800; transition: all .3s var(--ease);
    animation: pulse-wa 2.5s infinite;
}
.wa-fab:hover { background: #128c7e; transform: scale(1.1); }
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── Footer ── */
.footer-wave { background: var(--sand); line-height: 0; margin-top: -1px; }
.footer-wave svg { width: 100%; height: 80px; }
.footer-body { background: var(--navy); padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-brand .logo-text { color: var(--white); }
.footer-body p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--mango); font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: 14px; transition: all .25s var(--ease); }
.footer-col ul a:hover { color: var(--mango); padding-left: 4px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.55); font-size: 14px; }
.contact-list i { color: var(--mango); width: 14px; margin-top: 3px; }
.contact-list a { color: var(--mango); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: all .25s var(--ease); font-size: 15px;
}
.social-links a:hover { background: var(--mango); transform: translateY(-3px); }
.footer-bottom { background: rgba(0,0,0,.2); padding: 16px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.4); font-size: 13px; }
.footer-bottom a:hover { color: var(--mango); }

/* ── Season Cards ── */
.season-card { background: var(--white); border-radius: var(--r-md); padding: 20px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--mango); }
.season-card h5 { font-weight: 700; color: var(--bark); margin-bottom: 8px; font-size: 15px; }
.season-bar { background: var(--cloud); height: 6px; border-radius: 3px; position: relative; overflow: hidden; margin: 10px 0; }
.season-fill { position: absolute; top: 0; height: 100%; background: linear-gradient(90deg, var(--mango), var(--mango-dark)); border-radius: 3px; }
.season-card small { color: var(--ash); font-size: 12px; }

/* ── Mission ── */
.mission-card { background: var(--white); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--mango); height: 100%; }
.mission-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.mission-card h4 { font-family: var(--ff-display); font-weight: 700; color: var(--bark); margin-bottom: 12px; }
.mission-card p { color: var(--ash); font-size: 14px; line-height: 1.7; }

/* ── Responsive ── */
@media(max-width:1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 28px; }
    .hero-features { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-visual { margin-top: 30px; }
    .hero-mango { font-size: 140px; }
    .hero-ring { width: 200px; height: 200px; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid::before { display: none; }
    .detail-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .order-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh; background: var(--white);
        flex-direction: column; padding: 80px 30px 30px; gap: 4px;
        box-shadow: -4px 0 30px rgba(0,0,0,.1);
        transition: right .35s var(--ease); z-index: 999; align-items: stretch;
    }
    .main-nav.open { right: 0; }
    .main-nav a { border-radius: var(--r-sm); padding: 12px 16px; }
    .btn-nav-order { text-align: center; margin-top: 10px; }
    .announce-sep { display: none; }
    .announce-inner { flex-direction: column; gap: 4px; }
    .form-row { grid-template-columns: 1fr; }
    .payment-options { grid-template-columns: 1fr; }
    .calc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px) {
    .container { padding: 0 16px; }
    .form-card { padding: 24px 18px; }
    .hero { min-height: 80vh; }
    .hero-mango { font-size: 100px; }
}

/* ── Announce Bar Social ── */
.announce-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.announce-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.announce-social a {
    color: rgba(255,255,255,.6);
    font-size: 13px;
    transition: all .25s var(--ease);
}
.announce-social a:hover {
    color: var(--mango);
    transform: translateY(-1px);
}

/* ── Update announce-inner for space-between ── */
.announce-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ── Footer social links - add colors on hover ── */
.social-links a:hover.fa-facebook-f,
.social-links a[title="Facebook"]:hover {
    background: #1877f2;
}
.social-links a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-links a[title="YouTube"]:hover {
    background: #ff0000;
}
.social-links a[title="Twitter / X"]:hover {
    background: #000000;
}
.social-links a[title="TikTok"]:hover {
    background: #000000;
}
.social-links a[title="WhatsApp"]:hover {
    background: #25d366;
}

/* ── Hide top bar social on small screens ── */
@media(max-width:768px) {
    .announce-social {
        display: none;
    }
    .announce-inner {
        justify-content: center;
    }
}

/* ── Real Mango Images ── */
.hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--r-xl);
    object-fit: cover;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
    animation: float 4s ease-in-out infinite;
}

.product-real-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    transition: transform .4s var(--ease);
}
.product-card:hover .product-real-img {
    transform: scale(1.08);
}
.product-card-img {
    overflow: hidden;
}

.detail-real-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.about-real-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

/* ── Admin uploaded images via media ── */
.product-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* ── Packing Selection Cards ── */
.packing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.packing-card {
    background: var(--white);
    border: 2px solid var(--cloud);
    border-radius: var(--r-lg);
    padding: 20px 16px;
    text-align: center;
    transition: all .3s var(--ease);
    cursor: default;
}
.packing-card.active {
    border-color: var(--mango);
    background: var(--mango-light);
    box-shadow: var(--shadow-glow);
}
.packing-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.packing-title {
    font-weight: 700;
    color: var(--bark);
    font-size: 16px;
    margin-bottom: 4px;
}
.packing-price {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--mango-dark);
    margin-bottom: 4px;
}
.packing-weight {
    font-size: 12px;
    color: var(--ash);
    margin-bottom: 12px;
}
.packing-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--mango);
    background: var(--white);
    color: var(--mango-dark);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s var(--ease);
    line-height: 1;
}
.qty-btn:hover {
    background: var(--mango);
    color: var(--white);
}
.packing-qty-wrap .form-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 4px;
}
.packing-subtotal {
    font-size: 14px;
    font-weight: 700;
    color: var(--leaf);
    min-height: 20px;
}

/* Order Summary Box */
.order-summary-box {
    background: linear-gradient(135deg, var(--cream), var(--mango-light));
    border: 1px solid rgba(232,153,28,.3);
    border-radius: var(--r-md);
    padding: 16px 20px;
    margin-top: 12px;
}
.summary-row-inline {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(232,153,28,.15);
}
.summary-row-inline:last-child { border-bottom: none; }
.summary-row-inline.highlight {
    background: rgba(232,153,28,.1);
    padding: 8px 10px;
    border-radius: 6px;
    margin: 4px 0;
    border: 1px solid rgba(232,153,28,.2);
}

/* Bulk Packing Cards */
.bulk-packing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.bulk-packing-card {
    background: var(--white);
    border: 2px solid var(--cloud);
    border-radius: var(--r-md);
    padding: 16px 12px;
    text-align: center;
    transition: all .3s var(--ease);
}
.bulk-packing-card.loose-card {
    border-style: dashed;
    border-color: var(--ash);
}
.bulk-packing-card.active {
    border-color: var(--mango);
    background: var(--mango-light);
}
.bulk-packing-card .packing-unit {
    font-size: 11px;
    color: var(--ash);
    margin-top: 4px;
}

@media(max-width:768px) {
    .packing-grid { grid-template-columns: 1fr; }
    .bulk-packing-grid { grid-template-columns: 1fr; }
}

/* ── Product Card Packing Price List ── */
.packing-price-list {
    margin-bottom: 16px;
    border: 1px solid var(--cloud);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.packing-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    font-size: 14px;
    border-bottom: 1px solid var(--cloud);
}
.packing-price-row:last-child {
    border-bottom: none;
}
.packing-price-row:first-child {
    background: var(--sand);
}
.packing-label {
    font-weight: 600;
    color: var(--bark);
    display: flex;
    align-items: center;
}
.packing-amount {
    font-family: var(--ff-display);
    font-weight: 700;
    color: var(--mango-dark);
    font-size: 16px;
}

/* ── Mango Icon Fallback ── */
.mango-icon-fallback {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: linear-gradient(135deg, var(--cream), var(--mango-light));
}

/* ── Product Detail Packing Grid ── */
.detail-packing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}
.detail-packing-card {
    background: var(--white);
    border: 2px solid var(--cloud);
    border-radius: var(--r-md);
    padding: 20px 16px;
    text-align: center;
    transition: all .3s var(--ease);
    position: relative;
}
.detail-packing-card:hover {
    border-color: var(--mango);
    box-shadow: var(--shadow-glow);
}
.detail-packing-card.featured {
    border-color: var(--mango);
    background: var(--mango-light);
}
.detail-packing-badge {
    position: absolute;
    top: -10px;
    right: 14px;
    background: linear-gradient(135deg, var(--mango), var(--mango-dark));
    color: var(--white);
    padding: 2px 12px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
}
.detail-packing-icon {
    font-size: 28px;
    color: var(--mango);
    margin-bottom: 8px;
}
.detail-packing-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--bark);
    margin-bottom: 6px;
}
.detail-packing-price {
    font-family: var(--ff-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--mango-dark);
    margin-bottom: 4px;
}
.detail-packing-weight {
    font-size: 12px;
    color: var(--ash);
}

/* ── Detail Notes Grid ── */
.detail-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.detail-note {
    background: var(--sand);
    padding: 10px 14px;
    border-radius: var(--r-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s var(--ease);
}
.detail-note:hover {
    background: var(--mango-light);
    border-color: var(--mango);
}
.detail-note i {
    color: var(--mango);
    width: 16px;
    text-align: center;
}

@media(max-width:768px) {
    .detail-packing-grid { grid-template-columns: 1fr; }
    .detail-notes { grid-template-columns: 1fr; }
}