 @font-face {
            font-family: 'Architype Bayer';
            src: url('https://cdn.jsdelivr.net/gh/pauldhillon/fonts@master/architype-bayer.woff') format('woff');
            font-weight: normal;
            font-style: normal;
        }

:root {
    --primary: #f4bda9;
    --secondary: #ecd9d4;
    --accent: #a8d3cb;
    --highlight: #bfc4e5;
    --light: #ffffff;
    --dark: #333333;
    --text: #333333;
    --gcash: #0063e1;
    --bdo: #00529b;
    --bpi: #d71921;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'League Spartan', sans-serif;
    background-color: #f9f9f9;
    color: var(--text);
    line-height: 1.6;
}

.container121 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 30px 0;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    font-family: 'Architype Bayer', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

h2, h3, h4 {
    font-family: 'Architype Bayer', sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

.tagline {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.page {
    display: none;
    animation: fadeIn 0.5s;
}

.page.active121 {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.box-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.box-option {
    background-color: var(--light);
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #f4e3db;
}

.box-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    border-color: #c1c0ec;
}

.box-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.box-title {
    font-family: 'Architype Bayer', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.box-price {
    font-weight: 600;
    color: #c1c0ec;
    margin-bottom: 15px;
    font-family:Quicksand;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.quantity-btn {
    background-color: #f4e3db;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    color:black;
}

.quantity-btn:hover {
    background-color: #f8b7a0;
    color: white;
}

.quantity {
    margin: 0 15px;
    font-weight: 600;
}

.btn121  {
    background-color: #c1c0ec;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 0.5px;
}

.btn121 :hover {
    background-color: var(--highlight);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary121 {
    background-color: #f4e3db;
    color: var(--dark);
}

.btn-secondary121:hover {
    background-color: #f8b7a0;
}

.btn-center {
    display: block;
    margin: 20px auto;
    width: fit-content;
}

.btn-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.btn-danger:hover {
    background-color: #f5c6cb;
}

.flavor-selection {
    margin-bottom: 30px;
}

.box-summary {
    background-color: var(--light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary);
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.flavor-card {
    background-color: var(--light);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid #f4e3db;
}

.flavor-card:hover {
    transform: translateY(-5px);
    border-color: #c1c0ec;
}

.flavor-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.flavor-name {
    font-family:"Baloo 2", sans-serif;
    font-weight:bold
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.completefont{
    font-family:"Baloo 2", sans-serif;
    font-weight:bold
}


.flavor-price {
    color: #c1c0ec;
    font-family:Quicksand;
    font-weight: 600;
    margin-bottom: 15px;
}

.order-summary {
    background-color: var(--light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--secondary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--accent);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    background-color: var(--light);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.payment-option h3 {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.payment-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.payment-details {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.payment-details p {
    margin-bottom: 5px;
}

.file-upload {
    margin-top: 30px;
    background-color: var(--light);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary);
    text-align: center;
}

.file-upload h3 {
    margin-bottom: 20px;
}

.file-upload-area {
    border: 2px dashed var(--accent);
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background-color: rgba(168, 211, 203, 0.05);
}

.file-upload-area:hover {
    border-color: var(--primary);
    background-color: rgba(168, 211, 203, 0.1);
}

.file-upload-area input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.file-name {
    margin-top: 15px;
    font-weight: 500;
    color: var(--accent);
    word-break: break-all;
    padding: 10px;
    background-color: rgba(168, 211, 203, 0.1);
    border-radius: 5px;
    display: none;
}

.success-message {
    text-align: center;
    padding: 50px 20px;
}

.success-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.tab-container {
    display: flex;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 5px;
    justify-content: center;
}

.tab {
    padding: 10px 20px;
    background-color: #f4e3db;
    border-radius: 20px;
    margin-right: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.tab.active121 {
    background-color: #f8b7a0;
    color: var(--dark);
}

.tab-content {
    display: none;
}

.tab-content.active121 {
    display: block;
}

/* Bank-specific styling */
.gcash {
    background-color: var(--light);
    color: var(--dark);
    border-left: 5px solid var(--gcash);
}

.gcash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 99, 225, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

.gcash .payment-details {
    background-color: rgba(0, 99, 225, 0.05);
}

.bdo {
    background-color: var(--light);
    color: var(--dark);
    border-left: 5px solid var(--bdo);
}

.bdo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 82, 155, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

.bdo .payment-details {
    background-color: rgba(0, 82, 155, 0.05);
}

.bpi {
    background-color: var(--light);
    color: var(--dark);
    border-left: 5px solid var(--bpi);
}

.bpi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 25, 33, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    z-index: 1;
}

.payment-image{
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
    image-rendering:auto;
}
.bpi .payment-details {
    background-color: rgba(215, 25, 33, 0.05);
}

/* Progress bar styling */
.progress-container {
    width: 100%;
    margin: 30px 0;
}

.progress-bar121 {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar121::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateX(5%);
    height: 4px;
    width: 90%;
    background-color: var(--secondary);
    z-index: -1;
}

.progress-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    width: auto;
    height: auto;
    line-height: 0;
    font-size:0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    fill:#f4e3db
}

.progress_labelss{
     display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mochi-donut {
    width: 100%;
    height: auto;
    display: block;
}

.progress-step.active121 {
    fill: #f8b7a0;
}

.progress-step.completed {
    fill: #FCCE8D;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.progress-label {
    text-align: center;
    width: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family:Quicksand;
}

.customer-info {
    background-color: var(--light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary);
}

.form-group121 {
    margin-bottom: 20px;
}

.form-group121 label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group121 input, .form-group121 textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--secondary);
    border-radius: 8px;
    font-size: 1rem;
}

.form-group121 input:focus, .form-group121 textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(168, 211, 203, 0.2);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group121 {
    flex: 1;
}

.bulk-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bulk-action-btn {
    background-color: var(--highlight);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'League Spartan', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bulk-action-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
}

.bulk-action-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .box-options {
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .progress-bar121 {
        max-width: 300px;
    }

    .progress-labels {
        max-width: 300px;
    }

    .progress-label {
        font-size: 0.8rem;
        width: 60px;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .bulk-actions {
        flex-direction: column;
        align-items: center;
    }
}
 .spinner-img {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    border-radius: 50%; /* If the image is circular, this isn't strictly necessary */
    display: block; /* Ensures no extra space below the image */
    margin: 0; /* Ensure no margin */
    padding: 0; /* Ensure no padding */
}