:root {
    --primary: #05b985;
    --primary-dark: #078969;
    --navy: #101a32;
    --text: #152038;
    --muted: #64748b;
    --border: #dfe5ec;
    --background: #f6f8fb;
    --white: #ffffff;
    --danger: #dc2626;
    --warning: #f59e0b;
    --shadow: 0 12px 35px rgba(15, 23, 42, 0.09);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--background);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    line-height: 1.5;
}

button,
input,
textarea {
    font: inherit;
}

button,
label,
input[type="radio"],
input[type="checkbox"] {
    cursor: pointer;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 34px));
    margin-inline: auto;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--text);
    text-decoration: none;
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, #19c9d0, #009979);
    box-shadow: 0 7px 18px rgba(5, 185, 133, 0.25);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 18px;
}

.brand em,
.footer span {
    color: var(--primary-dark);
    font-style: normal;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.header-button {
    padding: 11px 19px;
    border-radius: 999px;
    color: white;
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(5, 185, 133, 0.27);
    font-weight: 800;
    text-decoration: none;
}

/* Hero */

.hero {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 90% 20%, rgba(33, 214, 169, 0.27), transparent 35%),
        linear-gradient(125deg, #0c1429 0%, #13203c 58%, #08775f 140%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
}

.hero::before {
    width: 440px;
    height: 440px;
    right: -130px;
    top: -190px;
}

.hero::after {
    width: 330px;
    height: 330px;
    left: -160px;
    bottom: -190px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 75px 82px;
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #9df4d5;
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 750;
}

.hero h1 {
    max-width: 800px;
    margin: 24px 0 16px;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.hero h1 span {
    color: #4ee5c2;
}

.hero > .container > p {
    max-width: 720px;
    margin: 0;
    color: #d9e1ef;
    font-size: clamp(17px, 2vw, 21px);
}

.hero-notices {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.hero-notices span {
    padding: 10px 14px;
    border-radius: 12px;
    color: #e5fff6;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

/* General section */

.section {
    padding-block: 75px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading > span {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.section-heading h2 {
    margin: 8px 0 10px;
    color: var(--text);
    font-size: clamp(31px, 5vw, 45px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.section-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

/* Product cards */

.products-section {
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-card-head {
    position: relative;
    min-height: 176px;
    padding: 25px;
    color: white;
    background: linear-gradient(145deg, var(--card-a), var(--card-b));
}

.product-card-head::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -85px;
    bottom: -135px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.theme-cyan {
    --card-a: #0ea5e9;
    --card-b: #079ab4;
}

.theme-green {
    --card-a: #05bfa1;
    --card-b: #00946b;
}

.theme-slate {
    --card-a: #61738e;
    --card-b: #2f3b50;
}

.theme-orange {
    --card-a: #ff9c0b;
    --card-b: #ff5200;
}

.theme-indigo {
    --card-a: #6659ff;
    --card-b: #1f5cff;
}

.theme-pink {
    --card-a: #ff1b6b;
    --card-b: #ea006b;
}

.theme-lime {
    --card-a: #66d600;
    --card-b: #05b96c;
}

.product-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 25px;
}

.size-badge {
    position: absolute;
    top: 24px;
    right: 22px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 800;
}

.product-card h3 {
    margin: 16px 0 0;
    font-size: 27px;
    line-height: 1.1;
}

.product-card-head p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.9);
}

.product-card-body {
    padding: 21px;
}

.tier-list {
    margin: 0 0 20px;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
}

.tier-list li {
    min-height: 46px;
    padding: 10px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 12px;
    background: #f8fafc;
}

.tier-list li:last-child {
    background: #eafbf5;
    border: 1px solid #b2efda;
}

.tier-list span {
    color: #475569;
}

.tier-list strong {
    white-space: nowrap;
    color: var(--text);
}

.tier-list small {
    color: #94a3b8;
    font-weight: 500;
}

.quantity-label {
    display: block;
    margin-bottom: 7px;
    font-weight: 750;
}

.quantity-control {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1.5px solid #cbd5e1;
    border-radius: 13px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.quantity-control:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 185, 133, 0.11);
}

.quantity-control input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    border: 0;
    outline: none;
    color: var(--text);
    background: transparent;
}

.quantity-control span {
    padding-right: 14px;
    color: var(--muted);
    font-size: 14px;
}

.minimum-note {
    display: block;
    margin-top: 7px;
    color: var(--muted);
}

.line-total {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 750;
}

.product-card.has-value {
    outline: 3px solid rgba(5, 185, 133, 0.15);
}

.product-card.has-error {
    outline: 2px solid rgba(220, 38, 38, 0.5);
}

.form-alert {
    margin-top: 25px;
    padding: 14px 16px;
    border-radius: 12px;
}

.error-alert {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

/* Delivery */

.delivery-section {
    background: #f5f8fc;
}

.delivery-options {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 15px;
}

.delivery-card {
    padding: 19px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1.5px solid var(--border);
    border-radius: 17px;
    background: white;
    box-shadow: 0 4px 11px rgba(15, 23, 42, 0.04);
}

.delivery-card:has(input:checked) {
    border-color: var(--primary);
    background: #effdf8;
    box-shadow: 0 0 0 4px rgba(5, 185, 133, 0.09);
}

.delivery-card input {
    position: absolute;
    opacity: 0;
}

.radio-design {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    display: grid;
    place-items: center;
    border: 2px solid #a9b5c5;
    border-radius: 50%;
}

.delivery-card input:checked + .radio-design {
    border-color: var(--primary);
}

.delivery-card input:checked + .radio-design::after {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--primary);
}

.delivery-card strong,
.delivery-card small {
    display: block;
}

.delivery-card strong {
    margin-bottom: 4px;
    font-size: 17px;
}

.delivery-card small {
    color: var(--muted);
    font-size: 14px;
}

/* Form details */

.recipient-section {
    background: white;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.7fr);
    align-items: start;
    gap: 28px;
}

.details-column {
    display: grid;
    gap: 25px;
}

.form-panel,
.summary-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.form-panel {
    padding: 27px;
}

.panel-heading {
    margin-bottom: 26px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.panel-heading > span {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: var(--primary);
    font-weight: 850;
}

.panel-heading h2 {
    margin: 0 0 4px;
    font-size: 23px;
}

.panel-heading p {
    margin: 0;
    color: var(--muted);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.field-group label,
.address-search > label {
    display: block;
    margin-bottom: 8px;
    color: #263248;
    font-size: 14px;
    font-weight: 750;
}

.field-group label b {
    color: var(--danger);
}

.field-group input,
.field-group textarea,
.address-search input {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    outline: none;
    color: var(--text);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field-group textarea {
    resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus,
.address-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 185, 133, 0.1);
}

.field-group input:invalid:not(:placeholder-shown),
.field-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.field-group small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
}

.address-field {
    margin-top: 23px;
}

.search-row {
    display: flex;
    gap: 10px;
}

.search-row input {
    flex: 1;
    min-width: 0;
}

.secondary-button,
.location-button,
.plain-button {
    border: 0;
    border-radius: 12px;
    font-weight: 750;
}

.secondary-button {
    padding: 11px 20px;
    color: white;
    background: var(--navy);
}

.location-actions {
    margin: 17px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-button {
    padding: 11px 16px;
    color: white;
    background: var(--primary-dark);
}

.plain-button {
    padding: 11px 16px;
    color: #475569;
    background: #edf1f5;
}

.search-status {
    min-height: 22px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.address-results {
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: white;
}

.address-result {
    width: 100%;
    padding: 13px 15px;
    display: block;
    border: 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    background: white;
    text-align: left;
}

.address-result:last-child {
    border-bottom: 0;
}

.address-result:hover,
.address-result:focus {
    background: #edfdf7;
}

.map-box {
    width: 100%;
    height: 390px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: #e9eef4;
}

.map-help {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.map-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary-dark);
    font-weight: 750;
}

/* Summary */

.summary-panel {
    position: sticky;
    top: 96px;
    padding: 25px;
}

.summary-panel h2 {
    margin: 0 0 20px;
    font-size: 25px;
}

.summary-items {
    max-height: 330px;
    overflow: auto;
    display: grid;
    gap: 9px;
}

.empty-summary {
    margin: 0;
    padding: 16px;
    border-radius: 12px;
    color: var(--muted);
    background: #f8fafc;
    text-align: center;
}

.summary-item {
    padding: 11px 12px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-radius: 11px;
    background: #f8fafc;
}

.summary-item strong,
.summary-item small {
    display: block;
}

.summary-item small {
    margin-top: 2px;
    color: var(--muted);
}

.summary-item-price {
    white-space: nowrap;
    font-weight: 800;
}

.totals {
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.totals > div {
    padding: 7px 0;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.totals dt {
    color: var(--muted);
}

.totals dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.totals .grand-total {
    margin-top: 8px;
    padding-top: 15px;
    border-top: 1px dashed #cbd5e1;
}

.grand-total dt,
.grand-total dd {
    color: var(--text);
    font-size: 18px;
}

.deposit-total {
    color: var(--primary-dark);
}

.summary-notice {
    padding: 13px;
    border-radius: 11px;
    color: #854d0e;
    background: #fffbeb;
    font-size: 13px;
}

.agreement {
    margin: 18px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #475569;
    font-size: 14px;
}

.agreement input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.submit-button {
    width: 100%;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border: 0;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, #06bd88, #008d69);
    box-shadow: 0 11px 24px rgba(5, 185, 133, 0.25);
    font-weight: 850;
}

.submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.whatsapp-note {
    display: block;
    margin-top: 11px;
    color: var(--muted);
    text-align: center;
}

/* Footer */

.footer {
    padding-block: 38px;
    border-top: 1px solid var(--border);
    background: #f8fafc;
}

.footer strong {
    font-size: 18px;
}

.footer p {
    margin: 3px 0 0;
    color: var(--muted);
}

/* Anti-spam field */

.website-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    left: -10000px !important;
    overflow: hidden !important;
}

/* Responsive */

@media (max-width: 920px) {
    .form-layout {
        grid-template-columns: 1fr;
    }

    .summary-panel {
        position: static;
    }
}

@media (max-width: 730px) {
    .product-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding-block: 55px;
    }

    .hero-content {
        padding-block: 60px;
    }

    .form-panel,
    .summary-panel {
        padding: 20px;
        border-radius: 18px;
    }

    .map-box {
        height: 330px;
    }
}

@media (max-width: 500px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand strong {
        font-size: 15px;
    }

    .brand small {
        font-size: 11px;
    }

    .brand-icon {
        width: 40px;
        height: 40px;
    }

    .header-button {
        padding: 9px 13px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 41px;
    }

    .search-row {
        display: grid;
    }

    .secondary-button {
        width: 100%;
    }

    .location-actions {
        display: grid;
    }

    .location-actions button {
        width: 100%;
    }

    .product-card-head {
        min-height: 160px;
    }
}

/*Part 2 - 2/8/2026 4.49pm*/
/* =====================================================
   PRODUCT CARDS — RESPONSIVE & COMPACT
   ===================================================== */

/* Desktop: 3 kad dalam satu baris */
@media (min-width: 1024px) {
    .products-section .container {
        width: min(1120px, calc(100% - 48px));
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        align-items: start;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-card-head {
        min-height: 140px;
        padding: 18px;
    }

    .product-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 21px;
    }

    .size-badge {
        top: 18px;
        right: 17px;
        padding: 5px 10px;
        font-size: 12px;
    }

    .product-card h3 {
        margin-top: 13px;
        font-size: 22px;
    }

    .product-card-head p {
        margin-top: 3px;
        font-size: 13px;
    }

    .product-card-body {
        padding: 16px;
    }

    .tier-list {
        margin-bottom: 15px;
        gap: 7px;
    }

    .tier-list li {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .tier-list strong {
        font-size: 13px;
    }

    .tier-list small {
        font-size: 11px;
    }

    .quantity-label {
        margin-bottom: 6px;
        font-size: 13px;
    }

    .quantity-control {
        border-radius: 11px;
    }

    .quantity-control input {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .quantity-control span {
        padding-right: 11px;
        font-size: 12px;
    }

    .minimum-note,
    .line-total {
        font-size: 12px;
    }

    .line-total {
        margin-top: 9px;
    }
}

/* Tablet: 2 kad dalam satu baris */
/* =====================================================
   SMALLER CATALOGUE — DESKTOP ONLY
   Add this at the bottom of style.css
   ===================================================== */

@media (min-width: 1024px) {
    .products-section {
        padding-block: 52px;
    }

    .products-section .container {
        width: min(1180px, calc(100% - 48px));
    }

    .products-section .section-heading {
        max-width: 650px;
        margin-bottom: 28px;
    }

    .products-section .section-heading h2 {
        font-size: 36px;
    }

    .products-section .section-heading p {
        font-size: 15px;
    }

    /* 3 compact cards per row */
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        align-items: start;
    }

    .product-card {
        border-radius: 16px;
    }

    /* Smaller coloured header */
    .product-card-head {
        min-height: 122px;
        padding: 14px;
    }

    .product-icon {
        width: 39px;
        height: 39px;
        border-radius: 11px;
        font-size: 18px;
    }

    .size-badge {
        top: 14px;
        right: 14px;
        padding: 4px 8px;
        font-size: 11px;
    }

    .product-card h3 {
        margin-top: 10px;
        font-size: 19px;
    }

    .product-card-head p {
        margin-top: 2px;
        font-size: 12px;
    }

    /* Smaller white content area */
    .product-card-body {
        padding: 13px;
    }

    .tier-list {
        margin-bottom: 12px;
        gap: 5px;
    }

    .tier-list li {
        min-height: 35px;
        padding: 6px 8px;
        border-radius: 9px;
        font-size: 12px;
    }

    .tier-list strong {
        font-size: 12px;
    }

    .tier-list small {
        font-size: 10px;
    }

    .quantity-label {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .quantity-control {
        border-radius: 9px;
    }

    .quantity-control input {
        min-height: 39px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .quantity-control span {
        padding-right: 9px;
        font-size: 11px;
    }

    .minimum-note {
        margin-top: 5px;
        font-size: 11px;
    }

    .line-total {
        min-height: 18px;
        margin-top: 7px;
        font-size: 11px;
    }
}

/* Large desktop: 4 cards per row */
@media (min-width: 1280px) {
    .products-section .container {
        width: min(1220px, calc(100% - 60px));
    }

    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

