body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to bottom right, #f5f0ff, #e8f4ff);
}

.container {
    max-width: 500px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 18px;
    border: 2px solid #e3e3e3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
}

/* Logo styling */
.logo-container {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.logo {
    max-width: 200px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

h1 {
    text-align: center;
    margin-bottom: 25px;
    color: #5a4e8c;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #5a4e8c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    color: #6b5b95;
}

h4 {
    margin: 10px 0;
    color: #555;
}

.btn {
    width: 100%;
    background: #d1a7ff;
    border: none;
    padding: 14px;
    margin: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: 0.2s;
    color: white;
    font-weight: bold;
}

.btn:hover {
    background: #c598ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-added {
    background: #4CAF50 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.hidden {
    display: none !important;
}

.option-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

select, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="date"], textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background: #f9f9f9;
    box-sizing: border-box;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    border-color: #d1a7ff;
    box-shadow: 0 0 0 2px rgba(209, 167, 255, 0.2);
}

textarea {
    resize: vertical;
    min-height: 60px;
}

.total-box {
    margin-top: 25px;
    padding: 15px;
    text-align: center;
    background: linear-gradient(to right, #f5ecff, #e8f4ff);
    border: 2px solid #d1a7ff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #5a4e8c;
    line-height: 1.4;
}

/* Teddy Picker Layout */
.teddy-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.teddy-img {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.teddy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Undo button styling */
.undo-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
    margin-left: 10px;
    font-weight: bold;
}

.undo-btn:hover {
    background: #ff5252;
    transform: translateY(-1px);
}

.undo-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
}

/* Back button styling - CENTERED */
.back-btn {
    background: #ffa726;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
    width: auto;
    display: inline-block;
    font-weight: bold;
    margin: 10px 0;
}

.back-btn:hover {
    background: #ff9800;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Center wrapper for back buttons */
.center-wrapper {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
}

.extras-history {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    border-left: 4px solid #d1a7ff;
}

.extras-history h4 {
    margin: 0 0 10px 0;
    color: #666;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    margin: 5px 0;
    background: white;
    border-radius: 5px;
    border: 1px solid #eee;
}

.history-item button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.history-item button:hover {
    background: #ff5252;
}

/* Payment form styling */
.payment-section {
    margin-top: 20px;
    padding: 20px;
    background: #f9f7ff;
    border-radius: 10px;
    border: 2px solid #e5d6ff;
}

.payment-details {
    background: #fff8e1;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #ffd54f;
}

.payment-details h3 {
    margin-top: 0;
    color: #5a4e8c;
}

.payment-details p {
    margin: 8px 0;
}

/* Delivery Option Styling */
.delivery-option {
    background: #f9f7ff;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border: 2px solid #e5d6ff;
}

.delivery-option h3 {
    margin-top: 0;
}

.delivery-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.delivery-btn {
    flex: 1;
    min-width: 140px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    text-align: center;
    min-height: 80px;
    justify-content: center;
}

.delivery-btn:hover {
    background: #f0f0f0;
    border-color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.delivery-btn.selected {
    border-color: #d1a7ff !important;
    background: linear-gradient(135deg, #f5ecff, #e8f4ff) !important;
    color: #5a4e8c !important;
}

.delivery-btn span {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery-btn small {
    font-size: 12px;
    font-weight: normal;
    color: #666;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .delivery-buttons {
        flex-direction: column;
    }
    
    .delivery-btn {
        min-width: 100%;
    }
}

.delivery-notice {
    background: #fff8e1;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 4px solid #ffd54f;
    font-size: 14px;
    color: #5a4e8c;
}

.delivery-fee {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.delivery-fee .summary-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    padding: 5px 0;
}

.delivery-fee .summary-item span:first-child {
    color: #555;
}

.delivery-fee .summary-item span:last-child {
    font-weight: bold;
    color: #5a4e8c;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

small {
    display: block;
    margin-top: 4px;
    color: #666;
    font-size: 12px;
}

.file-upload {
    border: 2px dashed #d1a7ff;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background: #f9f7ff;
    border-radius: 8px;
    margin: 10px 0;
}

.file-upload:hover {
    background: #f5f0ff;
}

.preview {
    margin-top: 15px;
    max-width: 100%;
    max-height: 200px;
    text-align: center;
}

.preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.checkbox-group {
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    color: #333;
}

.loading {
    display: none;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: #e3f2fd;
    border-radius: 8px;
    color: #1565c0;
    font-weight: bold;
}

.success-message, .error-message {
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    display: none;
    text-align: center;
    font-weight: bold;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.instructions {
    background: #e8f4ff;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1565c0;
}

/* Order summary */
.order-summary {
    background: #f9f7ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #d1a7ff;
}

.order-summary h3 {
    margin-top: 0;
    color: #5a4e8c;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    padding: 5px 0;
}

.summary-item span:first-child {
    color: #555;
}

.summary-item span:last-child {
    font-weight: bold;
    color: #5a4e8c;
}

.summary-total {
    border-top: 2px solid #d1a7ff;
    margin-top: 10px;
    padding-top: 10px;
    font-weight: bold;
}

.summary-total .summary-item {
    font-size: 18px;
    margin: 10px 0;
}

/* Optional field styling */
.optional-field {
    border-left: 4px solid #ffc107;
    background-color: #fffef7;
}

.optional-field:focus {
    border-color: #ffc107;
    background-color: #fffef7;
}

/* Configuration banner */
.config-banner {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    color: #856404;
    font-size: 14px;
}

.config-banner a {
    color: #d63031;
    font-weight: bold;
    text-decoration: none;
}

.config-banner a:hover {
    text-decoration: underline;
}

/* Setup wizard */
.setup-wizard {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.wizard-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.wizard-content h2 {
    margin-top: 0;
    text-align: center;
    color: #5a4e8c;
}

.wizard-content .form-group {
    margin-bottom: 15px;
}

.wizard-content small {
    color: #666;
    font-style: italic;
}

/* File input styling */
input[type="file"] {
    display: none;
}

/* Mode toggle button */
#simpleModeToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

#simpleModeToggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Mode notification */
#modeNotification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== UPDATED CUSTOM COLOR SECTION ===== */
/* Custom Color Input Section (Now at the top) */
.custom-color-input {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin: 15px 0;
}

.custom-color-input h4 {
    margin-top: 0;
    color: #5a4e8c;
    text-align: center;
}

.custom-color-input input[type="text"] {
    margin: 10px 0;
    border: 2px solid #d1a7ff;
    background: white;
    font-size: 16px;
    padding: 12px;
    transition: all 0.3s ease;
}

.custom-color-input input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(209, 167, 255, 0.3);
    border-color: #b894e6;
}

.custom-color-input small {
    color: #666;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}

.custom-color-input .btn {
    background: #9c7bd9;
    font-size: 16px;
    padding: 12px;
    margin-top: 5px;
}

.custom-color-input .btn:hover {
    background: #8a6ac7;
}

/* Preset Color Options (Now below custom input) */
.color-options {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin: 20px 0;
}

.color-options h4 {
    margin-top: 0;
    color: #5a4e8c;
    text-align: center;
    margin-bottom: 15px;
}

.color-buttons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 500px) {
    .color-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.color-btn {
    padding: 15px 8px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #333;
    min-height: 45px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.color-btn.active {
    border-color: #5a4e8c;
    box-shadow: 0 0 0 3px #d1a7ff, 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

/* Color button specific colors */
.color-btn[data-color="red"] { background-color: #ff0000; color: white; }
.color-btn[data-color="pink"] { background-color: #ffc0cb; }
.color-btn[data-color="white"] { background-color: #ffffff; border: 2px solid #ccc; }
.color-btn[data-color="yellow"] { background-color: #ffff00; }
.color-btn[data-color="orange"] { background-color: #ffa500; color: white; }
.color-btn[data-color="purple"] { background-color: #800080; color: white; }
.color-btn[data-color="blue"] { background-color: #0000ff; color: white; }
.color-btn[data-color="black"] { background-color: #000000; color: white; }

/* Current Selection Display */
#colorSelectionDisplay {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f5ecff, #e8f4ff);
    border-radius: 12px;
    border: 2px solid #d1a7ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

#selectedColorText {
    font-weight: bold;
    color: #5a4e8c;
    font-size: 18px;
    flex-grow: 1;
    text-align: center;
    padding: 0 10px;
}

#removeColorBtn {
    background: linear-gradient(to bottom, #ff6b6b, #ff5252);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

#removeColorBtn:hover {
    background: linear-gradient(to bottom, #ff5252, #ff3838);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
}

/* Navigation buttons in color section */
#customColorSection > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

#customColorSection .btn {
    background: #9c7bd9;
}

#customColorSection .btn:hover {
    background: #8a6ac7;
}

#customColorSection .back-btn {
    background: #ffa726;
}

#customColorSection .back-btn:hover {
    background: #ff9800;
}

/* Print styles */
@media print {
    .config-banner,
    .back-btn,
    #simpleModeToggle,
    .setup-wizard,
    .file-upload,
    .checkbox-group,
    .btn:not(.delivery-btn),
    .color-btn,
    #removeColorBtn {
        display: none !important;
    }
    
    .container {
        box-shadow: none;
        border: 1px solid #ccc;
        max-width: 100%;
    }
    
    .total-box,
    .order-summary,
    .payment-details {
        page-break-inside: avoid;
    }
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .container {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .delivery-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .teddy-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .teddy-img {
        width: 100%;
        height: 150px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h3 {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .undo-btn {
        align-self: flex-start;
        margin-left: 0;
    }
    
    /* Color section responsive */
    .color-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .color-btn {
        padding: 12px 6px;
        font-size: 13px;
        min-height: 40px;
    }
    
    #colorSelectionDisplay {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    #removeColorBtn {
        width: 100%;
        margin-top: 5px;
    }
}

/* Animation for color selection messages */
@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}

/* Success message animation */
#tempColorMessage {
    animation: fadeOut 3s forwards;
}
/* Teddy Disclaimer Styling */
#teddyDisclaimer {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
    animation: fadeIn 0.5s ease;
}

#teddyDisclaimer p {
    margin: 0;
    font-size: 12px;
    color: #856404;
    line-height: 1.4;
}

#teddyDisclaimer strong {
    color: #d63031;
}

/* Custom teddy input */
#customTeddyInput {
    animation: slideDown 0.3s ease;
}

#customTeddyText {
    font-size: 14px;
    padding: 12px;
    border: 2px solid #d1a7ff;
    background: #f9f7ff;
    transition: all 0.3s ease;
}

#customTeddyText:focus {
    outline: none;
    border-color: #9c7bd9;
    box-shadow: 0 0 0 3px rgba(209, 167, 255, 0.3);
    background: white;
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Updated teddy select styling */
#teddySelect {
    background: white;
    border: 2px solid #d1a7ff;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

#teddySelect:focus {
    outline: none;
    border-color: #9c7bd9;
    box-shadow: 0 0 0 3px rgba(209, 167, 255, 0.2);
}
/* Lily Color Section Styles */
.lily-color-btn {
    padding: 15px 8px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #333;
    min-height: 45px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.lily-color-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.lily-color-btn.active {
    border-color: #5a4e8c;
    box-shadow: 0 0 0 3px #d1a7ff, 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.05);
}

/* Lily color button specific colors */
.lily-color-btn[data-color="white"] { background-color: #ffffff; border: 2px solid #ccc; }
.lily-color-btn[data-color="pink"] { background-color: #ffc0cb; }
.lily-color-btn[data-color="yellow"] { background-color: #ffff00; }
.lily-color-btn[data-color="orange"] { background-color: #ffa500; color: white; }
.lily-color-btn[data-color="purple"] { background-color: #800080; color: white; }
.lily-color-btn[data-color="mix"] { background: linear-gradient(45deg, #ffc0cb, #ffff00, #ffa500, #800080); color: white; }

/* Lily color selection display */
#lilyColorSelectionDisplay {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f5ecff, #e8f4ff);
    border-radius: 12px;
    border: 2px solid #d1a7ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

#selectedLilyColorText {
    font-weight: bold;
    color: #5a4e8c;
    font-size: 18px;
    flex-grow: 1;
    text-align: center;
    padding: 0 10px;
}

#removeLilyColorBtn {
    background: linear-gradient(to bottom, #ff6b6b, #ff5252);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

#removeLilyColorBtn:hover {
    background: linear-gradient(to bottom, #ff5252, #ff3838);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.4);
}

@media (max-width: 500px) {
    .lily-color-btn {
        padding: 12px 6px;
        font-size: 13px;
        min-height: 40px;
    }
    
    #lilyColorSelectionDisplay {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px;
    }
    
    #removeLilyColorBtn {
        width: 100%;
        margin-top: 5px;
    }
}
/* Add to existing CSS file */

/* Lily color button styles - same as rose color buttons */
.lily-color-btn {
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 6px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lily-color-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.lily-color-btn.active {
    border-color: #d1a7ff;
    box-shadow: 0 0 0 3px rgba(209, 167, 255, 0.3);
    position: relative;
}

.lily-color-btn.active::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d1a7ff;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}