.custom-options.group-poster {
    margin-bottom: 24px;
}

/* ===== Sticky Order Bar ===== */
#sticky-order-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    font-family: inherit;
}

#sticky-order-bar.visible {
    transform: translateY(0);
}

.sticky-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 20px;
}

.sticky-bar-image {
    flex-shrink: 0;
}

.sticky-bar-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.sticky-bar-details {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.sticky-bar-title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-bar-options {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-bar-action {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-bar-price {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

.sticky-bar-price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
    margin-right: 4px;
}

.sticky-bar-price ins {
    text-decoration: none;
    color: #e74c3c;
    font-weight: 700;
}

.sticky-bar-btn {
    background-color: #f0857a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.sticky-bar-btn:hover {
    background-color: #7bc67e;
}
textarea#custom_remarks{
  margin-bottom: 24px;
}
.custom-options label{
  margin-right: 8px !important;
}

.custom-options label span{
  padding: 8px 16px;
}
.group-poster h3,
.copies-option h3 {
  font-family: 'Josefin Sans', sans-serif !important;
}

/* ===== Copies Option ===== */
.custom-options.copies-option {
    margin-bottom: 24px;
}

.copies-custom-input {
margin-top: 0;
}

.copies-custom-input input[type="number"] {
    width: 120px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
}

.copies-custom-input input[type="number"]:focus {
    border-color: #f0857a;
    outline: none;
}

tr.copies-option-row > td {
    padding: 0 !important;
    border: none !important;
}

tr.group-poster-row > td {
    padding: 0 !important;
    border: none !important;
}
/* ===== Mobile (max 768px) ===== */
@media (max-width: 768px) {
    #sticky-order-bar {
        max-height: 25vh;
    }

    .sticky-bar-inner {
        padding: 10px 14px;
        gap: 12px;
    }

    .sticky-bar-image {
        display: none;
    }

    .sticky-bar-title {
        font-size: 13px;
    }

    .sticky-bar-options {
        font-size: 11px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sticky-bar-action {
        flex-direction: column;
        gap: 6px;
        align-items: flex-end;
    }

    .sticky-bar-price {
        font-size: 14px;
    }

    .sticky-bar-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
  .custom-options label{
    margin-right: 6px !important;
  }
  .custom-options label {
    margin-bottom: 10px !important;
  }
}

