/* --- assets/css/style.css --- */
:root {
    --pink-light: #FFF0F5;
    --pink-soft: #FDEAF1;
    --pink-primary: #D82B84;
    --pink-dark: #A51A61;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --bg-white: #FFFFFF;
    --bg-body: #FAFAFB;
    --border-soft: #F1F5F9;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(216, 43, 132, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '-apple-system', BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.5;
    font-size: 14px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font-size: 14px !important; }

/* Global Components */
.container-mobile {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--bg-white);
    min-height: 100vh;
    padding-bottom: 90px;
    box-shadow: 0 0 30px rgba(0,0,0,0.03);
    position: relative;
}

.content-padding { padding: 20px 16px; }

/* Buttons Style */
.btn-block-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: var(--pink-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 4px 12px rgba(216, 43, 132, 0.2);
}
.btn-block-modern:active { transform: scale(0.98); background: var(--pink-dark); }

.btn-outline-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px;
    background: transparent;
    color: var(--pink-primary);
    border: 2px solid var(--pink-primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

/* Modern Form Elements */
.form-group-modern {
    margin-bottom: 16px;
}
.form-group-modern label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 13px;
}
.input-modern {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    outline: none;
    background: #F8FAFC;
    transition: all 0.3s ease;
}
.input-modern:focus {
    border-color: var(--pink-primary);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(216, 43, 132, 0.1);
}

/* Mobile Top Navbar */
.navbar-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-soft);
}
.navbar-mobile .brand { font-size: 20px; font-weight: 800; color: var(--pink-primary); }
.nav-trigger { position: relative; }
.hamburger-btn { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--pink-primary); }

.mobile-menu-dropdown {
    display: none;
    position: absolute;
    top: 55px; right: 16px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 180px; z-index: 110;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}
.mobile-menu-dropdown.active { display: block; animation: popDown 0.2s ease; }
.mobile-menu-dropdown a {
    display: block; padding: 12px 16px; font-weight: 600;
    border-bottom: 1px solid var(--border-soft); color: var(--text-dark);
}
.mobile-menu-dropdown a:hover { background: var(--pink-light); color: var(--pink-primary); }

/* Banner / Hero Section Mobile */
.hero-mobile {
    background: linear-gradient(180deg, var(--pink-light) 0%, rgba(255,255,255,0) 100%);
    padding: 30px 16px; text-align: center;
}
.hero-mobile h1 { font-size: 26px; font-weight: 800; line-height: 1.2; color: var(--text-dark); }
.hero-mobile p { font-size: 13px; color: var(--text-gray); margin-top: 8px; margin-bottom: 16px; }
.hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Service Tags Mini Bar */
.service-tags-bar {
    display: flex; justify-content: space-around; padding: 12px;
    background: var(--bg-white); margin: 0 16px 20px 16px; border-radius: 10px; box-shadow: var(--shadow-sm);
}
.tag-item { font-size: 11px; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 4px; }

/* Grid & Cards Katalog */
.product-grid-mobile {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px;
}
.card-prod-modern {
    background: var(--bg-white); border-radius: 14px; padding: 8px;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-soft);
    display: flex; flex-direction: column; justify-content: space-between;
}
.card-prod-modern img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 10px; }
.card-info-box { padding: 8px 4px 4px 4px; }
.card-title-text { font-size: 13px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.badge-status { display: inline-block; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 4px; margin-top: 4px; }
.badge-status.ready { background: #E6F9ED; color: #1CC88A; }
.badge-status.po { background: #FFF0F5; color: var(--pink-primary); }
.price-row-card { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.price-row-card .price-val { font-size: 14px; font-weight: 800; color: var(--pink-primary); }
.mini-btn-cart { width: 32px; height: 32px; border-radius: 8px; background: var(--pink-primary); color: white; border: none; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; }

/* DATA CARD LAYOUT (No More Tables!) */
.card-item-list { display: flex; flex-direction: column; gap: 10px; }
.item-data-card { background: var(--bg-white); border: 1px solid var(--border-soft); border-radius: 12px; padding: 12px; box-shadow: var(--shadow-sm); position: relative; }
.item-card-header { font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--border-soft); padding-bottom: 6px; margin-bottom: 8px; color: var(--text-dark); }
.item-card-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 4px; color: var(--text-gray); }
.item-card-row span.bold-val { font-weight: 700; color: var(--text-dark); }

/* Tracking Progress Bar Component */
.tracking-flow { display: flex; justify-content: space-between; position: relative; margin: 20px 0; padding: 0 10px; }
.tracking-flow::before { content: ''; position: absolute; top: 15px; left: 20px; right: 20px; height: 3px; background: #E2E8F0; z-index: 1; }
.step-node { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; flex: 1; text-align: center; }
.node-circle { width: 30px; height: 30px; border-radius: 50%; background: #E2E8F0; color: var(--text-gray); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.step-node.active .node-circle { background: var(--pink-primary); color: white; box-shadow: 0 0 10px rgba(216,43,132,0.4); }
.node-label { font-size: 10px; font-weight: 700; margin-top: 6px; color: var(--text-gray); }
.step-node.active .node-label { color: var(--pink-primary); }

@keyframes popDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}