* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    width: 100vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFF7F0;
    color: #32435F;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Container utama */
.main-container {
    width: 100%;
    max-width: 800px;
    padding: 24px 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bagian input */
input[type="text"] {
    width: 72vw;
    max-width: 500px;
    padding: 14px 16px;
    border: 2px solid #A0CED9;
    border-radius: 12px;
    background: #F1F6FB;
    color: #32435F;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

input[type="text"]::placeholder {
    color: #95B8D1;
}

input[type="text"]:focus {
    border-color: #B8E0D2;
    outline: none;
}

/* Tombol */
button {
    padding: 14px 22px;
    background-color: #FFE5B4;
    border: 2px solid #FFE5B4;
    border-radius: 12px;
    color: #32435F;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 1px;
    margin-left: 12px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

button:hover {
    background-color: #B8E0D2;
}

/* Kotak status */
.status-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 22px;
}

.status-box {
    background-color: #FFF2F2;
    border-radius: 14px;
    padding: 18px 10px;
    margin: 4px 12px;
    width: 210px;
    text-align: center;
    font-size: 0.95rem;
    color: #7C93B2;
    border: 1.5px solid #EAC4D5;
}

.status-box span {
    display: block;
    margin-top: 8px;
    font-size: 2rem;
    font-weight: 900;
}

#totalItems, #notBoughtItems,#soldItems {
    color: #A0CED9;
}

/* List Belanja */
ul#shoppingList {
    list-style: none;
    width: 100%;
    max-width: 760px;
    padding-left: 0;
    padding-bottom: 40px;
    margin: 0;
}

ul#shoppingList li {
    background-color: #F6E7EA;
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

ul#shoppingList li span {
    flex-grow: 1;
    color: #32435F;
    font-size: 1.1rem;
    max-width: 60vw;
    word-break: break-word;
}

ul#shoppingList li button {
    border-radius: 16px;
    padding: 8px 14px;
    margin-left: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

ul#shoppingList li button:first-child {
    background-color: #FFB4B2;
    color: #32435F;
}

ul#shoppingList li button:last-child {
    background-color: #AAD7F9;
    color: #32435F;
}

ul#shoppingList li.bought span {
    color: #A0CED9;
    text-decoration: line-through;
    font-style: italic;
}

/* Responsive untuk HP */
@media (max-width: 600px) {
    .main-container {
        max-width: 98vw;
        padding: 14px 2vw;
    }
    input[type="text"] {
        width: 92vw;
        max-width: 98vw;
    }
    .status-box {
        width: 48vw;
        min-width: 140px;
        font-size: 0.85rem;
        padding: 10px 4px;
    }
    ul#shoppingList {
        max-width: 98vw;
    }
    ul#shoppingList li span {
        font-size: 1rem;
        max-width: 50vw;
    }
}
