#dgcf-form-wrapper {
    max-width: 720px !important;
    margin: 30px auto !important;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e8e0d5;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-sizing: border-box;
}

.dgcf-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 8px;
    background: #faf8f5;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #eee8dd;
}

.dgcf-step-tab {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    background: #ffffff;
    border-radius: 20px;
    color: #777777;
    border: 1px solid #e0d8cb;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
    min-width: 110px;
}

.dgcf-step-tab.active {
    background: linear-gradient(135deg, #c5a059 0%, #a37c35 100%);
    color: #ffffff;
    font-weight: 600;
    border-color: #c5a059;
    box-shadow: 0 3px 10px rgba(197, 160, 89, 0.3);
}

.dgcf-step h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 18px;
    border-bottom: 2px solid #f4efe6;
    padding-bottom: 10px;
}

.dgcf-step input[type="text"],
.dgcf-step input[type="email"],
.dgcf-step input[type="tel"],
.dgcf-step input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #dcd3c5;
    border-radius: 8px;
    font-size: 14px;
    color: #333333;
    background-color: #fdfcfb;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dgcf-step input[type="text"]:focus,
.dgcf-step input[type="email"]:focus,
.dgcf-step input[type="tel"]:focus,
.dgcf-step input[type="number"]:focus {
    border-color: #c5a059;
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
    background-color: #ffffff;
}

.dgcf-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    background: #fdfcfb;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee7dc;
}

.dgcf-summary-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee7dc;
    font-size: 14px;
    color: #333333;
}

.dgcf-summary-table td:last-child {
    text-align: right;
}

.dgcf-total-row td {
    border-top: 2px solid #c5a059;
    border-bottom: none;
    font-size: 16px;
    background: #faf6ee;
    color: #1a1a1a;
}

.dgcf-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    gap: 12px;
}

.dgcf-btn-row button,
#dgcf-check-giftcard {
    background: linear-gradient(135deg, #c5a059 0%, #a37c35 100%);
    color: #ffffff;
    border: none;
    padding: 11px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(197, 160, 89, 0.25);
}

.dgcf-btn-row button:hover,
#dgcf-check-giftcard:hover {
    opacity: 0.93;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.35);
    transform: translateY(-1px);
}

.dgcf-btn-row button:disabled {
    background: #e0d8cb !important;
    color: #999999 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.dgcf-btn-row .dgcf-prev {
    background: #ece8e1;
    color: #555555;
    box-shadow: none;
}

.dgcf-btn-row .dgcf-prev:hover {
    background: #e0d9cd;
    color: #222222;
}

.dgcf-field-error {
    color: #dc3545;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    min-height: 18px;
}

#dgcf-otp-box {
    background: #faf6ee;
    border: 1px solid #e8decb;
    border-radius: 10px;
    padding: 18px;
    margin: 14px 0;
}

.dgcf-otp-status {
    font-size: 13px;
    font-weight: 600;
    margin: 8px 0 0;
}

.dgcf-review-note {
    font-size: 13px;
    font-weight: 500;
    margin: 6px 0 14px;
    padding: 10px 14px;
    background: #faf8f5;
    border: 1px solid #eee8dd;
    border-radius: 8px;
}

.dgcf-qr-box {
    text-align: center;
    margin: 20px 0;
}

.dgcf-qr-box img {
    max-width: 220px;
    border: 1px solid #e5dccb;
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

#dgcf-thankyou-box {
    text-align: center;
    padding: 25px 10px;
}

#dgcf-thankyou-box h3 {
    color: #1b5e20;
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 600px) {
    #dgcf-form-wrapper {
        padding: 18px;
        margin: 15px 10px !important;
    }
    .dgcf-progress {
        border-radius: 12px;
    }
    .dgcf-step-tab {
        flex: 1 1 45%;
        min-width: 0;
        font-size: 12px;
        padding: 6px 10px;
    }
}

