.tiny-note{
    font-size: 12px;
    background-color:lightgrey;
    padding: 2px 3px;
    border-radius: 3px;
    display: block;
}




.groupbuy-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}


.groupbuy-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.groupbuy-card:hover {
    transform: translateY(-5px);
}

.progress-bar {
    background: #f0f0f0;
    border-radius: 8px;
    height: 15px;
    margin: 10px 0;
}

.progress-bar .progress {
    background: #4CAF50;
    height: 100%;
    border-radius: 8px 0 0 8px;
}

.progress-text {
    font-size: 0.9em;
    color: #333;
}

.location-switcher {
    margin-bottom: 20px;
}

.location-switcher select {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
}




.cart-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    width: 320px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #fff;
    position: relative;
}

.cart-card h2 {
    margin-top: 0;
}

.cart-card .button.danger {
    background: #e74c3c;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}





.cart-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.cart-cards {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-summary {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.cart-summary h2 {
    margin-top: 0;
}

.cart-summary .button {
    display: inline-block;
    margin-top: 15px;
    background: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.cart-summary .button:hover {
    background: #45a049;
}








.notice {
    background-color: #fff8e5;   /* light yellow background */
    border: 1px solid #f0c36d;  /* golden border */
    color: #6b4e00;             /* dark golden-brown text */
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.notice a {
    color: #d48806;             /* golden link */
    font-weight: bold;
    text-decoration: none;
}

.notice a:hover {
    text-decoration: underline;
}







/* Ellipsis button */
.ellipsis-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

/* Dropdown container */
.dropdown {
    display: inline-block;
    position: relative;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    min-width: 120px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border-radius: 4px;
    z-index: 1000;
}

/* Dropdown links */
.dropdown-content a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #f0f0f0;
}

/* Show dropdown on click */
.dropdown.show .dropdown-content {
    display: block;
}






