.furfect-form-shell {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 16px;
}

.furfect-how-it-works {
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #efe6dc;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(35, 25, 18, 0.06);
}

.furfect-how-it-works-animated {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,247,242,0.96) 100%);
    box-shadow: 0 22px 48px rgba(35, 25, 18, 0.07);
    position: relative;
    overflow: hidden;
}

.furfect-how-it-works-animated::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.75), transparent 40%);
    opacity: 0.9;
}

.furfect-how-header {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    animation: furfectFadeUp 0.7s ease both;
}

.furfect-how-header h3 {
    margin: 0 0 10px;
    font-size: 46px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #2f211b;
    max-width: 1000px;
}

.furfect-how-header p {
    margin: 0 0 18px;
    color: #6f655d;
    font-size: 18px;
    line-height: 1.65;
    max-width: 1000px;
}

.furfect-mini-trust {
    display: inline-block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #8a5a3c !important;
}

.furfect-how-timeline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-left: 18px;
}

.furfect-how-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #d9c2b1 0%, #eadccf 100%);
}

.furfect-how-step-card-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: stretch;
    opacity: 0;
    transform: translateY(18px);
    animation: furfectStepReveal 0.65s ease forwards;
}

.furfect-how-step-card-wrap:nth-child(1) { animation-delay: 0.08s; }
.furfect-how-step-card-wrap:nth-child(2) { animation-delay: 0.18s; }
.furfect-how-step-card-wrap:nth-child(3) { animation-delay: 0.28s; }
.furfect-how-step-card-wrap:nth-child(4) { animation-delay: 0.38s; }
.furfect-how-step-card-wrap:nth-child(5) { animation-delay: 0.48s; }

.furfect-how-step-marker {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.furfect-how-step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #c98b68, #b77752);
    box-shadow: 0 10px 22px rgba(183, 119, 82, 0.22);
    animation: furfectPulseDot 2.6s ease-in-out infinite;
}

.furfect-how-step-card {
    position: relative;
    background: rgba(255,255,255,0.82);
    border: 1px solid #eadfd4;
    border-radius: 22px;
    padding: 20px 20px 20px 18px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    box-shadow: 0 8px 24px rgba(35, 25, 18, 0.04);
    backdrop-filter: blur(4px);
}

.furfect-how-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(35, 25, 18, 0.08);
    border-color: #dcc2ae;
    background: rgba(255,255,255,0.95);
}

.furfect-how-step-card-wrap:first-child .furfect-how-step-card {
    background: linear-gradient(180deg, #fffaf6 0%, #fff 100%);
    border-color: #e8cdb9;
    box-shadow: 0 16px 30px rgba(183, 119, 82, 0.10);
}

.furfect-how-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9eee5, #fff7f1);
    border: 1px solid #ead6c7;
    font-size: 25px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.furfect-how-step-text strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    line-height: 1.3;
    color: #2f211b;
}

.furfect-how-step-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #6f655d;
}

@keyframes furfectFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes furfectStepReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes furfectPulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 22px rgba(183, 119, 82, 0.22);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 14px 28px rgba(183, 119, 82, 0.30);
    }
}

.furfect-form-wrap {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #efe6dc;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 24px 60px rgba(35, 25, 18, 0.08);
    backdrop-filter: blur(6px);
}

.furfect-form-top {
    margin-bottom: 24px;
}

.furfect-form-badge {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f7eee7;
    color: #8a5a3c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.furfect-form-wrap h2 {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1.05;
    color: #2f211b;
    letter-spacing: -0.03em;
}

.furfect-intro {
    margin: 0 0 20px;
    color: #6f655d;
    font-size: 17px;
    line-height: 1.6;
}

.furfect-step-progress {
    margin-top: 18px;
}

.furfect-step-progress-bar {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #efe6dc;
    overflow: hidden;
}

.furfect-step-progress-fill {
    display: block;
    width: 14.285%;
    height: 100%;
    background: linear-gradient(135deg, #c98b68, #b77752);
    transition: width 0.25s ease;
}

.furfect-step-counter {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #8a5a3c;
}

.furfect-form {
    display: block;
}

.furfect-step {
    display: none;
}

.furfect-step.is-active {
    display: block;
}

.furfect-step label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #332720;
}

.furfect-step input[type="text"],
.furfect-step input[type="email"],
.furfect-step input[type="url"],
.furfect-step select,
.furfect-step textarea,
.furfect-admin-input {
    width: 100%;
    border: 1px solid #e7ddd3;
    background: #fcfbfa;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.4;
    color: #2f211b;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.furfect-step textarea {
    min-height: 140px;
    resize: vertical;
}

.furfect-step input:focus,
.furfect-step select:focus,
.furfect-step textarea:focus,
.furfect-admin-input:focus {
    outline: none;
    border-color: #c98b68;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(201, 139, 104, 0.14);
}

.furfect-step select {
    min-height: 56px;
    padding-right: 46px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%236d5b52' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.furfect-hidden-file {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.furfect-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 170px;
    border: 2px dashed #d8c6b8;
    border-radius: 22px;
    background: linear-gradient(180deg, #fffaf6 0%, #fcf6f1 100%);
    cursor: pointer;
    text-align: center;
    padding: 22px;
    transition: all 0.2s ease;
}

.furfect-upload-box:hover {
    border-color: #c98b68;
    background: #fff;
}

.furfect-upload-icon {
    font-size: 26px;
    line-height: 1;
}

.furfect-upload-title {
    font-size: 18px;
    font-weight: 700;
    color: #2f211b;
}

.furfect-upload-sub {
    font-size: 14px;
    color: #7b7068;
}

.furfect-upload-filename {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #8a5a3c;
    word-break: break-word;
}

.furfect-image-preview-wrap {
    width: 100%;
    max-width: 460px;
    height: 460px;
    margin: 18px auto 0;
    border-radius: 24px;
    overflow: hidden;
    background: #f7f2ed;
    border: 1px solid #e8ddd3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.furfect-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 782px) {
    .furfect-image-preview-wrap {
        max-width: 100%;
        height: 320px;
    }
}

.furfect-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.furfect-step-actions .furfect-back-btn,
.furfect-step-actions .furfect-next-btn,
.furfect-admin-app .button,
.button {
    border-radius: 14px;
    padding: 12px 18px;
    height: auto;
    line-height: 1.3;
}

.furfect-back-btn,
.furfect-next-btn {
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.furfect-back-btn {
    background: #f1ece7;
    color: #5d5149;
}

.furfect-next-btn {
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    margin-left: auto;
}

.furfect-review-title {
    margin: 0 0 14px;
    font-size: 24px;
    color: #2f211b;
}

.furfect-review-box {
    display: grid;
    gap: 10px;
    background: #fcfbfa;
    border: 1px solid #ece4dc;
    border-radius: 18px;
    padding: 18px;
}

.furfect-submit-wrap {
    margin-top: 18px;
}

.furfect-submit-btn,
.furfect-pay-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.furfect-submit-btn:hover,
.furfect-pay-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(183, 119, 82, 0.24);
}

.furfect-submit-note {
    margin: 10px 0 0;
    font-size: 13px;
    color: #7b7068;
    text-align: center;
}

.furfect-success-message {
    max-width: 860px;
    margin: 0 auto 18px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #34d399;
    color: #065f46;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.furfect-success-wrap {
    max-width: 720px;
    margin: 0 auto 20px;
}

.furfect-success-card {
    background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
    border: 1px solid #eadfd4;
    border-radius: 26px;
    padding: 32px 26px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(35, 25, 18, 0.08);
}

/* Paw icon */
.furfect-success-icon
 {
    font-size: 100px;
    margin-bottom: -11px;
    opacity: 0.9;
	color: #4adc57d9;
    margin-top: -36px;
}

/* Title */
.furfect-success-card h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #2f211b;
    letter-spacing: -0.02em;
}

/* Main text */
.furfect-success-card p {
    margin: 0 0 18px;
    color: #6f655d;
    font-size: 16px;
    line-height: 1.6;
}

/* Order ID badge */
.furfect-order-id {
    display: inline-block;
    margin: 10px 0 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f7eee7;
    color: #8a5a3c;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
}

/* Steps list */
.furfect-success-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 18px 0 22px;
}

.furfect-success-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

/* Notice box (delay message) */
.furfect-success-note {
    margin: 16px 0;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff4ec;
    border: 1px solid #f1dcc8;
    font-size: 13px;
    color: #7a4b35;
}

/* Button upgrade */
.furfect-success-card .furfect-submit-btn {
    margin-top: 10px;
    max-width: 320px;
}

.furfect-error-field {
    border: 2px solid #dc2626 !important;
    background: #fff5f5 !important;
}

.furfect-field-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 7px;
    font-weight: 600;
}

.furfect-field-error::before {
    content: "⚠ ";
}

.furfect-loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 16, 0.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.furfect-loading-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.furfect-loading-card h3 {
    margin: 14px 0 8px;
    font-size: 24px;
    color: #2f211b;
}

.furfect-loading-card p {
    margin: 0;
    color: #6f655d;
}

.furfect-paw-loader {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
}

.furfect-paw-loader span {
    animation: furfectPawBounce 1.1s infinite ease-in-out;
}

.furfect-paw-loader span:nth-child(2) {
    animation-delay: 0.15s;
}

.furfect-paw-loader span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes furfectPawBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }
    50% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.furfect-delete-button {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
    color: #fff !important;
}

.furfect-delete-button:hover {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #fff !important;
}

.furfect-protected-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 320px;
}

.furfect-protected-image {
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.furfect-image-protect-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: transparent;
    cursor: not-allowed;
}

.furfect-payment-benefits {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: #5a463c;
}
.furfect-dashboard-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.furfect-secondary-btn {
    background: #f3e8df;
    border: 1px solid #e2d2c5;
    color: #5a3e2e;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.furfect-secondary-btn:hover {
    background: #e9d8c8;
}

.furfect-modal {
    border-radius: 20px;
    background: #fffaf5;
    border: 1px solid #eadccf;
}

.furfect-modal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.furfect-modal .modal-title {
    font-weight: 700;
    color: #2f211b;
}

.furfect-modal .modal-body {
    padding: 20px;
    color: #6f625a;
}

.furfect-payment-benefits li {
    margin-bottom: 4px;
}

.furfect-secure-checkout {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef4ff, #f8fbff);
    border: 1px solid #d9e6ff;
    font-size: 12px;
    font-weight: 700;
    color: #1e3a8a;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.furfect-secure-icon {
    font-size: 12px;
}

.furfect-payment-panel .furfect-submit-btn,
.furfect-payment-panel .furfect-pay-btn {
    max-width: 320px;
}

.furfect-admin-app {
    margin: 20px 20px 20px 0;
}

.furfect-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 24px;
}

.furfect-admin-header h1 {
    margin: 0 0 6px;
    font-size: 32px;
    line-height: 1.2;
}

.furfect-admin-header p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.furfect-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.furfect-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.04);
}

.furfect-stat-card strong {
    display: block;
    font-size: 30px;
    color: #111827;
    line-height: 1;
}

.furfect-stat-label {
    display: block;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.furfect-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.furfect-filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
}

.furfect-filter-pill.is-active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.furfect-orders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.furfect-order-card,
.furfect-dashboard-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.furfect-dashboard-hero {
    margin-bottom: 18px;
}

.furfect-order-top,
.furfect-dashboard-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.furfect-order-top h2,
.furfect-dashboard-head h2 {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.2;
}

.furfect-order-sub,
.furfect-dashboard-head p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.furfect-dashboard-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.furfect-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    text-align: center;
}

.furfect-timeline-item.is-done,
.furfect-timeline-item.is-current {
    opacity: 1;
}

.furfect-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #d7c8bc;
    display: inline-block;
}

.furfect-timeline-item.is-done .furfect-timeline-dot,
.furfect-timeline-item.is-current .furfect-timeline-dot {
    background: linear-gradient(135deg, #c98b68, #b77752);
}

.furfect-timeline-label {
    font-size: 12px;
    font-weight: 600;
    color: #6f655d;
}

.furfect-order-meta,
.furfect-dashboard-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
    color: #374151;
}

.furfect-order-meta div,
.furfect-dashboard-meta div {
    background: #f9fafb;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.furfect-notes-box {
    margin-bottom: 18px;
    padding: 16px;
    background: #fffaf5;
    border: 1px solid #f3e8da;
    border-radius: 14px;
}

.furfect-notes-box strong {
    display: block;
    margin-bottom: 8px;
}

.furfect-notes-box p {
    margin: 0;
    color: #4b5563;
}

.furfect-contact-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.furfect-contact-inner {
    background: #fffaf5;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
}
.furfect-review-card {
    background: #fff7f2;
    border: 1px solid #f0d9c9;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    text-align: center;
}
.furfect-review-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #8b6f5c;
    font-weight: 600;
}

.furfect-review-card.success {
    background: #f4fff6;
    border: 1px solid #cfe8d5;
}

.furfect-review-card-modern {
    background: #f5efdf;
    border-radius: 28px;
    padding: 28px;
    margin-bottom: 24px;
    position: relative;
}

.furfect-review-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.furfect-review-stars {
    color: #eda63a;
    font-size: 24px;
}

.furfect-review-quote {
    font-size: 48px;
    color: #0b1b3f;
    font-weight: bold;
}

.furfect-review-style-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(186, 129, 80, 0.15);
    color: #9a643f;
    font-size: 12px;
    font-weight: 700;
}

.furfect-review-title {
    font-size: 20px;
    font-weight: 800;
    color: #06193c;
    margin-bottom: 10px;
}

.furfect-reviews-list.trustpilot-style {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.furfect-review-card-trustpilot {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.furfect-review-card-trustpilot:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.furfect-review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.furfect-review-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00b67a;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
}

.furfect-review-rating-score {
    font-size: 14px;
    line-height: 1;
}

.furfect-review-rating-stars {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 1px;
}

.furfect-review-style-trustpilot {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
}

.furfect-review-title-trustpilot {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.25;
    color: #111827;
    font-weight: 800;
}

.furfect-review-text-trustpilot {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.furfect-review-meta-trustpilot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.furfect-review-name-trustpilot {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}


/* ===== HORIZONTAL REVIEW SLIDER ===== */

.furfect-order-social-proof {
    max-width: 860px;
    margin: 12px auto 20px;
    padding: 0 12px;
}

.furfect-order-social-proof-head {
    text-align: center;
    margin-bottom: 12px;
}

.furfect-order-social-proof-pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f7eee7;
    color: #8a5a3c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.furfect-order-social-proof-head h3 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #2f211b;
}

.furfect-order-social-proof-head p {
    margin: 0;
    font-size: 14px;
    color: #6f655d;
}

/* slider wrap */
.furfect-reviews-slider-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
}

.furfect-reviews-slider-wrap::-webkit-scrollbar {
    height: 8px;
}

.furfect-reviews-slider-wrap::-webkit-scrollbar-track {
    background: #efe6dc;
    border-radius: 999px;
}

.furfect-reviews-slider-wrap::-webkit-scrollbar-thumb {
    background: #d5c1b2;
    border-radius: 999px;
}

/* slider row */
.furfect-reviews-slider.trustpilot-style {
    display: flex;
    gap: 14px;
    width: max-content;
    min-width: 100%;
}

/* card */
.furfect-review-card-trustpilot {
    flex: 0 0 320px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #efe6dc;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
    scroll-snap-align: start;
}

.furfect-review-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.furfect-review-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #00b67a;
    color: #fff;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.furfect-review-rating-score {
    font-size: 12px;
    line-height: 1;
}

.furfect-review-rating-stars {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
}

.furfect-review-style-trustpilot {
    padding: 5px 8px;
    border-radius: 999px;
    background: #f8f5f1;
    color: #7c6b60;
    font-size: 10px;
    font-weight: 700;
}

.furfect-review-title-trustpilot {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    color: #2f211b;
}

.furfect-review-text-trustpilot {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
}

.furfect-review-meta-trustpilot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid #f1ebe4;
}

.furfect-review-name {
    font-size: 13px;
    font-weight: 700;
    color: #2f211b;
}
/* Make section slightly wider */
.furfect-order-social-proof {
    max-width: 900px;
    margin: 16px auto 24px;
}

/* Make cards bigger */
.furfect-review-card-trustpilot {
    flex: 0 0 360px; /* was 320 */
    padding: 20px; /* was 16 */
    border-radius: 20px;
}

/* Bigger stars badge */
.furfect-review-rating-badge {
    padding: 8px 12px;
    font-size: 13px;
}

/* Style badge slightly bigger */
.furfect-review-style-trustpilot {
    font-size: 11px;
    padding: 6px 10px;
}

/* Title more punchy */
.furfect-review-title-trustpilot {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Review text easier to read */
.furfect-review-text-trustpilot {
    font-size: 14px;
    margin-bottom: 14px;
}

/* Name slightly bigger */
.furfect-review-name {
    font-size: 14px;
}


.furfect-order-social-proof {
    max-width: 100%; /* was limited */
    width: 100%;
    padding: 0 20px;
}

.furfect-reviews-slider-wrap {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.furfect-reviews-slider.trustpilot-style {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}
.furfect-review-card-trustpilot {
    flex: 0 0 380px; /* bigger cards */
    max-width: 380px;
}
/* Verified badge better size */
.furfect-verified-badge {
    font-size: 11px;
    padding: 4px 8px;
}

/* Scroll bar nicer and more visible */
.furfect-reviews-slider-wrap::-webkit-scrollbar {
    height: 10px;
}
.furfect-verified-badge {
    padding: 3px 6px;
    border-radius: 999px;
    background: #e6f9f2;
    color: #00b67a;
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .furfect-review-card-trustpilot {
        flex: 0 0 85vw;
        max-width: 85vw;
    }

    .furfect-order-social-proof-head h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .furfect-reviews-list.trustpilot-style {
        grid-template-columns: 1fr;
    }

    .furfect-review-card-trustpilot {
        padding: 18px;
    }

    .furfect-review-title-trustpilot {
        font-size: 18px;
    }

    .furfect-review-text-trustpilot {
        font-size: 14px;
    }
}

.furfect-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1f3150;
    margin-bottom: 20px;
}

.furfect-review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.furfect-review-avatar {
    font-size: 28px;
}

.furfect-review-name {
    font-weight: 700;
    color: #06193c;
}
.furfect-reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .furfect-reviews-list {
        grid-template-columns: 1fr;
    }
}

.furfect-review-style {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f7eee7;
    color: #8a5a3c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.furfect-review-item {
    background: #fff7f2;
    border: 1px solid #f0d9c9;
    padding: 16px;
    border-radius: 14px;
    margin-bottom: 12px;
}

.furfect-review-stars {
    font-size: 16px;
    margin-bottom: 6px;
}

.furfect-contact-inner h3 {
    margin-top: 0;
    color: #2f211b;
}

.furfect-contact-inner textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e2d2c5;
    padding: 10px;
    margin-bottom: 12px;
}

.furfect-contact-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

.furfect-card-sections,
.furfect-dashboard-grid,
.furfect-dashboard-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.furfect-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.furfect-dashboard-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.furfect-card-panel,
.furfect-dashboard-panel {
    background: #f9fafb;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 16px;
}

.furfect-card-panel h3,
.furfect-dashboard-panel h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.furfect-order-image {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    border: 1px solid #d1d5db;
    display: block;
    margin-bottom: 14px;
    height: auto;
}

.furfect-admin-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.furfect-empty-box {
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed #d1d5db;
    color: #6b7280;
    background: #fff;
    margin-bottom: 14px;
}

.furfect-small-link {
    margin: 10px 0 0;
}

.furfect-order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.furfect-done-text {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #15803d;
}

.furfect-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.furfect-status-new { background: #fff7ed; color: #b45309; }
.furfect-status-preview-sent { background: #e0f2fe; color: #0369a1; }
.furfect-status-changes-requested { background: #fef3c7; color: #92400e; }
.furfect-status-approved { background: #eef2ff; color: #4338ca; }
.furfect-status-paid { background: #f5f3ff; color: #7c3aed; }
.furfect-status-completed { background: #ecfdf5; color: #15803d; }

.furfect-empty-state {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 40px 24px;
    text-align: center;
}

@media (max-width: 1100px) {
    .furfect-how-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .furfect-card-sections,
    .furfect-dashboard-grid,
    .furfect-dashboard-actions,
    .furfect-order-meta,
    .furfect-dashboard-meta {
        grid-template-columns: 1fr;
    }

    .furfect-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .furfect-dashboard-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 782px) {
    .furfect-form-shell {
        max-width: 100%;
        padding: 0 10px;
    }

    .furfect-form-wrap,
    .furfect-how-it-works {
        padding: 20px;
        border-radius: 22px;
    }

    .furfect-form-wrap h2 {
        font-size: 30px;
    }

    .furfect-intro {
        font-size: 15px;
    }

    .furfect-stats-grid {
        grid-template-columns: 1fr;
    }

    .furfect-how-it-works-animated {
        padding: 22px;
        border-radius: 24px;
    }

    .furfect-how-header h3 {
        font-size: 32px;
        line-height: 1.05;
        max-width: 100%;
    }

    .furfect-how-header p {
        font-size: 15px;
        line-height: 1.65;
        max-width: 100%;
    }

    .furfect-mini-trust {
        font-size: 14px;
    }

    .furfect-how-timeline {
        gap: 14px;
        padding-left: 6px;
    }

    .furfect-how-timeline::before {
        left: 20px;
    }

    .furfect-how-step-card-wrap {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .furfect-how-step-number {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .furfect-how-step-card {
        grid-template-columns: 48px 1fr;
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .furfect-how-step-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        border-radius: 16px;
    }

    .furfect-how-step-text strong {
        font-size: 16px;
    }

    .furfect-how-step-text p {
        font-size: 14px;
        line-height: 1.55;
    }

    .furfect-admin-app {
        margin-right: 10px;
    }

    .furfect-admin-header,
    .furfect-order-top,
    .furfect-dashboard-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .furfect-step-actions {
        flex-direction: column;
    }

    .furfect-next-btn,
    .furfect-back-btn {
        width: 100%;
    }

    .furfect-payment-panel .furfect-submit-btn,
    .furfect-payment-panel .furfect-pay-btn {
        max-width: 100%;
    }

    .furfect-loading-card {
        padding: 22px;
        border-radius: 20px;
    }

    .furfect-loading-card h3 {
        font-size: 20px;
    }

    .furfect-dashboard-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ANNOUNCEMENT BAR */
.furfect-announcement-bar {
    position: sticky;
    top: 16px;
    z-index: 30;
    max-width: 860px;
    margin: 0 auto 18px;
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(35, 25, 18, 0.12);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.furfect-announcement-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 42%);
}

.furfect-announcement-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.furfect-announcement-copy {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 1 1 320px;
}

.furfect-announcement-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.furfect-announcement-text {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
    max-width: 560px;
}

.furfect-announcement-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.furfect-announcement-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.furfect-announcement-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 20px rgba(17, 24, 39, 0.12);
}

.furfect-announcement-dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none;
}

.furfect-announcement-dismiss:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.22);
}

.furfect-announcement-dismiss-icon {
    display: block;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    transform: translateY(-1px);
}

.furfect-announcement-sale {
    background: linear-gradient(135deg, #261811 0%, #4d2f20 48%, #b77752 100%);
    border-color: rgba(232, 194, 156, 0.34);
    color: #fff7ee;
}

.furfect-announcement-sale .furfect-announcement-pill {
    background: linear-gradient(135deg, rgba(255, 228, 196, 0.24), rgba(255, 255, 255, 0.12));
    color: #ffe3bf;
}

.furfect-announcement-sale .furfect-announcement-button,
.furfect-announcement-sale .furfect-announcement-dismiss {
    color: #fff7ee !important;
}

.furfect-announcement-info {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
    color: #1e3a5f;
}

.furfect-announcement-info .furfect-announcement-pill {
    color: #1d4ed8;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(147, 197, 253, 0.6);
}

.furfect-announcement-info .furfect-announcement-button {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff !important;
}

.furfect-announcement-info .furfect-announcement-dismiss {
    color: #1e3a5f;
    background: rgba(255,255,255,0.75);
    border-color: rgba(147, 197, 253, 0.5);
}

.furfect-announcement-warning {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-color: #fdba74;
    color: #7c2d12;
}

.furfect-announcement-warning .furfect-announcement-pill {
    color: #c2410c;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(253, 186, 116, 0.65);
}

.furfect-announcement-warning .furfect-announcement-button {
    background: #c2410c;
    border-color: #c2410c;
    color: #fff !important;
}

.furfect-announcement-warning .furfect-announcement-dismiss {
    color: #7c2d12;
    background: rgba(255,255,255,0.75);
    border-color: rgba(253, 186, 116, 0.55);
}

.furfect-announcement-success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-color: #6ee7b7;
    color: #065f46;
}

.furfect-announcement-success .furfect-announcement-pill {
    color: #047857;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(110, 231, 183, 0.6);
}

.furfect-announcement-success .furfect-announcement-button {
    background: #059669;
    border-color: #059669;
    color: #fff !important;
}

.furfect-announcement-success .furfect-announcement-dismiss {
    color: #065f46;
    background: rgba(255,255,255,0.75);
    border-color: rgba(110, 231, 183, 0.55);
}

@media (max-width: 782px) {
    .furfect-announcement-bar {
        top: 10px;
        padding: 16px;
        border-radius: 20px;
    }

    .furfect-announcement-copy {
        align-items: flex-start;
    }

    .furfect-announcement-text {
        font-size: 18px;
        max-width: 100%;
    }

    .furfect-announcement-actions {
        width: 100%;
        margin-left: 0;
    }

    .furfect-announcement-button {
        flex: 1 1 auto;
    }
}

/* ADMIN POLISH */
.furfect-admin-header {
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #faf7f4);
    box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
}

.furfect-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.furfect-stat-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.furfect-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(17, 24, 39, 0.08);
}

.furfect-order-card {
    overflow: hidden;
}

.furfect-card-panel,
.furfect-dashboard-panel {
    background: linear-gradient(180deg, #fbfcfd 0%, #f9fafb 100%);
}

.furfect-admin-form textarea.furfect-admin-input {
    min-height: 120px;
}

/* CUSTOMER NOTIFICATION PANEL */
.furfect-customer-message-panel {
    margin-bottom: 18px;
    background: linear-gradient(135deg, #fffaf5, #fff3e8);
    border-color: #f1dcc8;
}

.furfect-customer-message-panel p {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 782px) {
    .furfect-announcement-bar {
        top: 10px;
        padding: 14px;
    }

    .furfect-announcement-content,
    .furfect-announcement-copy,
    .furfect-announcement-actions {
        align-items: stretch;
    }

    .furfect-announcement-actions {
        width: 100%;
        margin-left: 0;
    }

    .furfect-announcement-button {
        flex: 1 1 auto;
    }
}



/* FINAL ANNOUNCEMENT BANNER FIX */
.furfect-announcement-bar {
    position: relative !important;
    top: auto !important;
    z-index: 1 !important;
    padding: 18px 20px !important;
}

.furfect-announcement-content {
    justify-content: center !important;
}

.furfect-announcement-copy {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 12px !important;
}

.furfect-announcement-text {
    width: 100% !important;
    text-align: center !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    line-height: 1.18 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
}

.furfect-announcement-pill {
    margin: 0 auto !important;
}

@media (max-width: 782px) {
    .furfect-announcement-bar {
        margin: 0 auto 16px !important;
        padding: 16px 16px 18px !important;
        border-radius: 22px !important;
    }

    .furfect-announcement-content {
        gap: 10px !important;
    }

    .furfect-announcement-copy {
        gap: 10px !important;
    }

    .furfect-announcement-pill {
        min-height: 34px !important;
        padding: 7px 12px !important;
        font-size: 10px !important;
        letter-spacing: 0.08em !important;
    }

    .furfect-announcement-text {
        font-size: 16px !important;
        line-height: 1.24 !important;
        max-width: 100% !important;
        text-wrap: balance;
    }
}

@media (max-width: 520px) {
    .furfect-announcement-bar {
        padding: 14px 14px 16px !important;
        border-radius: 20px !important;
    }

    .furfect-announcement-text {
        font-size: 15px !important;
        line-height: 1.28 !important;
        letter-spacing: 0 !important;
    }
}

/* === LUXURY SHIMMER EFFECT === */

.furfect-announcement-bar {
    position: relative;
    overflow: hidden;
}

/* shimmer layer */
.furfect-announcement-bar::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.08) 40%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.08) 60%,
        rgba(255,255,255,0) 100%
    );

    transform: skewX(-20deg);
    animation: furfectShimmer 3.5s infinite;
}

/* animation */
@keyframes furfectShimmer {
    0% {
        left: -120%;
    }
    60% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
.furfect-price-pill-inline {
    display: inline-block;
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(34,197,94,0.3);
}
/* PRICE BLOCK */
.furfect-price-block {
    margin: 12px 0 18px;
}

.furfect-price-heading {
    font-size: 13px;
    font-weight: 700;
    color: #8a5a3c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.furfect-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* SALE STYLE */
.furfect-price-sale {
    background: #dc2626;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.furfect-price-was {
    font-size: 14px;
    color: #9b8f87;
    text-decoration: line-through;
}

.furfect-price-now {
    background: #16a34a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

/* NORMAL PRICE (non-sale) */
.furfect-price-now.simple {
    background: #f1ece7;
    color: #2f211b;
}

/* SALE PRICE DISPLAY */
.furfect-sale-price-block {
    margin: 8px 0 18px;
}

.furfect-sale-price-heading {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a5a3c;
}

.furfect-sale-price-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.furfect-sale-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.furfect-sale-was {
    font-size: 14px;
    color: #9a8f86;
    text-decoration: line-through;
    font-weight: 600;
}

.furfect-sale-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 18px rgba(34, 197, 94, 0.18);
}

@media (max-width: 782px) {
    .furfect-sale-price-wrap {
        gap: 10px;
        margin-bottom: 16px;
    }

    .furfect-sale-now {
        font-size: 16px;
        padding: 7px 14px;
    }

    .furfect-sale-was {
        font-size: 13px;
    }
}


.furfect-dashboard-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.furfect-dashboard-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(183, 119, 82, 0.25);
}


.furfect-delay-message {
    margin: 14px 0 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px solid #fdba74;
    color: #9a3412;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
}

.furfect-delay-message strong {
    color: #7c2d12;
}

.furfect-delay-message-form {
    margin-bottom: 16px;
}


/* DASHBOARD UI UPGRADE */
.furfect-dashboard-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.furfect-dashboard-hero-upgraded {
    background: linear-gradient(135deg, #ffffff, #fbf7f3);
    overflow: hidden;
}

.furfect-dashboard-status-callout {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fffaf5, #fff3e8);
    border: 1px solid #f0e0d2;
}

.furfect-dashboard-status-callout strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a5a3c;
}

.furfect-dashboard-status-callout span {
    color: #3f312b;
    font-weight: 600;
}

.furfect-dashboard-quickstats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.furfect-dashboard-stat {
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #efe6dc;
    box-shadow: 0 10px 24px rgba(35, 25, 18, 0.04);
}

.furfect-dashboard-stat span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8a5a3c;
}

.furfect-dashboard-stat strong {
    display: block;
    color: #2f211b;
    font-size: 16px;
    line-height: 1.3;
}

.furfect-dashboard-main-card {
    gap: 0;
}

.furfect-dashboard-grid-upgraded {
    gap: 18px;
    margin-bottom: 20px;
}

.furfect-dashboard-panel-media,
.furfect-dashboard-panel-action,
.furfect-dashboard-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #ece5dd;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.05);
}

.furfect-panel-topline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f7eee7;
    color: #8a5a3c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.furfect-preview-frame {
    position: relative;
    max-width: 100%;
}

.furfect-preview-locked-note {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(30, 24, 20, 0.78);
    color: #fff7ee;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.furfect-preview-locked-note strong {
    font-size: 13px;
}

.furfect-preview-locked-note span {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255,247,238,0.88);
}

.furfect-dashboard-actions-upgraded {
    gap: 18px;
    margin-bottom: 20px;
}

.furfect-dashboard-cta-card {
    background: linear-gradient(135deg, #fff8f3, #fffdfb);
    margin-bottom: 20px;
}

.furfect-dashboard-cta-card .furfect-submit-btn,
.furfect-dashboard-cta-card .furfect-pay-btn {
    max-width: 360px;
}

.furfect-delay-message-dashboard {
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .furfect-dashboard-quickstats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    .furfect-dashboard-quickstats {
        grid-template-columns: 1fr;
    }

    .furfect-preview-locked-note {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }
}


.furfect-admin-reply-panel {
    background: linear-gradient(135deg, #eef6ff, #f7fbff);
    border-color: #d9e8fb;
}

.furfect-admin-reply-panel p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}


.furfect-flash-message {
    transition: opacity 0.45s ease, transform 0.45s ease, max-height 0.45s ease, margin 0.45s ease, padding 0.45s ease;
    opacity: 1;
    transform: translateY(0);
    max-height: 220px;
    overflow: hidden;
}

.furfect-flash-message.is-hiding {
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-width: 0 !important;
}


/* LIVE ADMIN REPLY PANEL */
#furfect-live-reply {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

#furfect-live-reply.furfect-reply-live-updated {
    transform: translateY(-2px);
}

.furfect-admin-reply-panel {
    background: linear-gradient(135deg, #eef6ff, #f8fbff);
    border-color: #d6e7fb;
}

.furfect-admin-reply-bubble {
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dde9f8;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
}

.furfect-admin-reply-text {
    color: #1f2937;
    line-height: 1.7;
    font-size: 15px;
    white-space: normal;
}

.furfect-admin-reply-meta {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.02em;
}

@media (max-width: 782px) {
    .furfect-admin-reply-bubble {
        padding: 13px 14px;
    }

    .furfect-admin-reply-text {
        font-size: 14px;
    }
}


/* TOAST NOTIFICATION */
.furfect-toast{
 position:fixed;
 bottom:20px;
 left:50%;
 transform:translateX(-50%) translateY(20px);
 background:#111827;
 color:#fff;
 padding:12px 18px;
 border-radius:999px;
 font-size:14px;
 opacity:0;
 transition:all .3s ease;
 z-index:9999;
}
.furfect-toast.show{
 opacity:1;
 transform:translateX(-50%) translateY(0);
}


/* UNREAD REPLY SYSTEM */
.furfect-unread-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    border: 1px solid #93c5fd;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.furfect-unread-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #2563eb;
    display: inline-block;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

#furfect-live-reply.furfect-has-unread-reply .furfect-admin-reply-bubble {
    border-color: #93c5fd;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10), 0 10px 24px rgba(59, 130, 246, 0.10);
}


/* UNREAD FIX */
.furfect-unread-banner {
    animation: furfectUnreadPulse 1.8s ease-in-out infinite;
}

@keyframes furfectUnreadPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12); }
    50% { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(37, 99, 235, 0.18); }
}

#furfect-live-reply.furfect-has-unread-reply .furfect-admin-reply-panel h3::after {
    content: " • New";
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
}


/* STATUS CALLOUT WHEN THERE IS A NEW REPLY */
.furfect-dashboard-status-callout-unread {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #93c5fd;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.furfect-dashboard-status-callout-unread strong {
    color: #1d4ed8;
}

.furfect-dashboard-status-callout-unread span {
    color: #1e3a5f;
    font-weight: 700;
}


/* CONVERSATION STYLE MESSAGES */
.furfect-message-composer-panel {
    background: linear-gradient(180deg, #fffdfb 0%, #fffaf6 100%);
}

.furfect-conversation-panel {
    grid-column: 1 / -1;
}

.furfect-conversation-thread {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.furfect-conversation-message {
    display: flex;
    flex-direction: column;
    max-width: 78%;
}

.furfect-conversation-message-user {
    align-self: flex-end;
    text-align: right;
}

.furfect-conversation-message-admin {
    align-self: flex-start;
    width: 100%;
    max-width: 78%;
}

.furfect-conversation-bubble {
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    box-shadow: 0 10px 24px rgba(183, 119, 82, 0.16);
    line-height: 1.6;
    word-break: break-word;
}

.furfect-conversation-meta {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #8a5a3c;
    letter-spacing: 0.02em;
}

.furfect-conversation-meta-admin {
    margin-bottom: 8px;
    margin-top: 0;
    color: #64748b;
}

.furfect-admin-reply-card {
    width: 100%;
}

.furfect-admin-reply-panel,
.furfect-admin-reply-card {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.furfect-admin-reply-bubble {
    margin-top: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dde9f8;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.08);
}

.furfect-admin-reply-meta {
    margin-top: 7px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.02em;
}

#furfect-live-reply-wrap .furfect-unread-banner {
    margin-bottom: 10px;
}

@media (max-width: 782px) {
    .furfect-conversation-message,
    .furfect-conversation-message-admin {
        max-width: 100%;
    }
}


/* MERGED CHAT STYLE DASHBOARD */
.furfect-preview-workspace-panel {
    margin-bottom: 18px;
}

.furfect-preview-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 18px;
    margin-top: 8px;
}

.furfect-preview-workspace-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.furfect-preview-media-card,
.furfect-preview-action-card {
    background: linear-gradient(180deg, #fbfcfd 0%, #f9fafb 100%);
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 16px;
}

.furfect-preview-action-card-muted {
    opacity: 0.88;
}

.furfect-conversation-thread {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 6px;
    margin-top: 10px;
}

.furfect-conversation-message {
    display: flex;
    flex-direction: column;
    max-width: 78%;
}

.furfect-conversation-message-user {
    align-self: flex-end;
    text-align: right;
}

.furfect-conversation-message-admin {
    align-self: flex-start;
    width: 100%;
    max-width: 78%;
}

.furfect-conversation-bubble {
    padding: 14px 16px;
    border-radius: 18px 18px 6px 18px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    box-shadow: 0 10px 24px rgba(183, 119, 82, 0.16);
    line-height: 1.6;
    word-break: break-word;
}

.furfect-conversation-composer {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
}

.furfect-conversation-composer-label {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    color: #8a5a3c;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .furfect-preview-workspace {
        grid-template-columns: 1fr;
    }

    .furfect-preview-workspace-media {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 782px) {
    .furfect-conversation-message,
    .furfect-conversation-message-admin {
        max-width: 100%;
    }

    .furfect-conversation-thread {
        max-height: 300px;
    }
}


/* MESSAGE HISTORY */
.furfect-card-panel .furfect-conversation-thread {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 6px;
}

.furfect-card-panel .furfect-conversation-message {
    max-width: 92%;
}

.furfect-card-panel .furfect-conversation-message-user {
    margin-left: auto;
}

.furfect-card-panel #furfect-unread-banner,
.furfect-card-panel #furfect-live-reply-wrap {
    width: 100%;
}

.furfect-conversation-thread::-webkit-scrollbar {
    width: 8px;
}

.furfect-conversation-thread::-webkit-scrollbar-thumb {
    background: #d8c6b8;
    border-radius: 999px;
}

.furfect-accordion{
 border-radius:16px;
 overflow:hidden;
 transition:all .3s ease;
}
.furfect-accordion-toggle{
 cursor:pointer;
}
.furfect-accordion.open{
 box-shadow:0 8px 25px rgba(0,0,0,0.1);
}
.furfect-accordion-content{
 padding-top:15px;
}


/* ADMIN ORDER ACCORDION */
.furfect-admin-order-card {
    overflow: hidden;
}

.furfect-order-summary {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.furfect-order-summary:hover .furfect-order-top {
    background: rgba(17, 24, 39, 0.02);
}

.furfect-order-summary-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.furfect-order-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.22s ease, background 0.22s ease;
    flex-shrink: 0;
}

.furfect-admin-order-card.is-open .furfect-order-chevron {
    transform: rotate(180deg);
    background: #ebeef2;
}

.furfect-order-details {
    padding-top: 14px;
    border-top: 1px solid #eef2f7;
    margin-top: 12px;
}

.furfect-admin-order-card .furfect-order-top {
    margin-bottom: 0;
    padding: 6px 0;
    transition: background 0.2s ease;
    border-radius: 14px;
}


/* MERGED FORM IMPROVEMENTS */
.furfect-step-helper {
    margin: 0 0 16px;
    color: #6f655d;
    font-size: 15px;
    line-height: 1.6;
    max-width: 720px;
}

.furfect-other-style .furfect-step-helper {
    margin: 0 0 12px;
}

.furfect-photo-guide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 16px;
}

.furfect-photo-guide-card {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid #ece4dc;
    background: #fcfbfa;
    box-shadow: 0 8px 18px rgba(35, 25, 18, 0.04);
}

.furfect-photo-guide-card strong {
    display: block;
    margin: 0 0 6px;
    font-size: 16px;
    color: #2f211b;
}

.furfect-photo-guide-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #6f655d;
}

.furfect-photo-guide-preview {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eadfd4;
    background: linear-gradient(180deg, #fffaf6 0%, #f7efe7 100%);
}

.furfect-photo-guide-card-good .furfect-photo-guide-preview {
    background: linear-gradient(180deg, #fffaf6 0%, #f3fbf6 100%);
    border-color: #cfe8d7;
}

.furfect-photo-guide-card-bad .furfect-photo-guide-preview {
    background: linear-gradient(180deg, #f8f4f1 0%, #ece3dc 100%);
    border-color: #e7d7cb;
}

.furfect-photo-guide-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.furfect-photo-guide-card-good .furfect-photo-guide-badge {
    background: #dcfce7;
    color: #166534;
}

.furfect-photo-guide-card-bad .furfect-photo-guide-badge {
    background: #fee2e2;
    color: #991b1b;
}

.furfect-photo-guide-art {
    font-size: 54px;
    line-height: 1;
    filter: drop-shadow(0 10px 16px rgba(35, 25, 18, 0.10));
}

.furfect-photo-guide-art-bad {
    opacity: 0.65;
    filter: blur(1px);
}

.furfect-pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 14px 0 22px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fffaf6, #fcf6f1);
    border: 1px solid #eadfd4;
    box-shadow: 0 10px 24px rgba(35, 25, 18, 0.05);
}

.furfect-pricing-copy {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.furfect-pricing-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a5a3c;
}

.furfect-pricing-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.furfect-pricing-sale-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.furfect-pricing-was {
    font-size: 14px;
    color: #9a8f86;
    text-decoration: line-through;
    font-weight: 600;
}

.furfect-pricing-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 20px rgba(183, 119, 82, 0.18);
}

.furfect-pricing-turnaround {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.6;
    color: #6f655d;
}

.furfect-pricing-turnaround strong {
    color: #2f211b;
}

.furfect-how-cta {
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
}

.furfect-ready-order-btn,
.furfect-order-back-link {
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.2s ease;
    line-height: 1.3;
}

.furfect-ready-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: none;
}

.furfect-ready-order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(183, 119, 82, 0.22);
}

.furfect-order-section {
    animation: furfectFadeUp 0.35s ease both;
}

.furfect-order-top-actions {
    margin-bottom: 14px;
}

.furfect-order-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 126px;
    padding: 12px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e6ddd6, #d8ccc3);
    color: #5d5149;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.furfect-order-back-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ded4cc, #cfc2b8);
}

.furfect-order-section .furfect-step-actions {
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 8px;
}

.furfect-order-section .furfect-next-btn {
    min-width: 126px;
    margin-left: auto;
}

@media (max-width: 782px) {
    .furfect-step-helper {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .furfect-photo-guide {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .furfect-photo-guide-preview {
        min-height: 116px;
    }

    .furfect-photo-guide-art {
        font-size: 48px;
    }

    .furfect-pricing-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
        margin: 12px 0 20px;
    }

    .furfect-pricing-now {
        font-size: 18px;
        min-height: 42px;
        padding: 0 14px;
    }

    .furfect-pricing-turnaround {
        max-width: 100%;
        font-size: 13px;
    }

    .furfect-how-cta {
        margin-top: 20px;
        justify-content: stretch;
    }

    .furfect-ready-order-btn,
    .furfect-order-back-link,
    .furfect-order-section .furfect-next-btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .furfect-order-section .furfect-step-actions {
        gap: 10px;
        margin-top: 18px;
        padding-top: 4px;
    }
}


/* FORCE HIDE INTRO / PRICE CONTENT INSIDE REAL FORM STEPS */
#furfect-form-steps-shell .furfect-form-badge,
#furfect-form-steps-shell h2,
#furfect-form-steps-shell .furfect-intro,
#furfect-form-steps-shell .furfect-price-block,
#furfect-form-steps-shell .furfect-price-heading,
#furfect-form-steps-shell .furfect-price-row,
#furfect-form-steps-shell .furfect-delay-message,
#furfect-form-steps-shell .furfect-delay-message-form {
    display: none !important;
}

#furfect-form-steps-shell .furfect-form-top {
    margin-bottom: 14px !important;
}

#furfect-form-steps-shell .furfect-step-progress {
    margin-top: 0 !important;
}


/* HOW IT WORKS PRICE BANNER */
.furfect-how-price-banner {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff7f0, #fcf3ea);
    border: 1px solid #ead7c6;
    box-shadow: 0 10px 24px rgba(35, 25, 18, 0.05);
}

.furfect-how-price-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.furfect-how-price-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a5a3c;
}

.furfect-how-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.furfect-how-price-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    box-shadow: 0 10px 20px rgba(183, 119, 82, 0.18);
}

.furfect-how-price-was {
    font-size: 14px;
    color: #9a8f86;
    text-decoration: line-through;
    font-weight: 600;
}

.furfect-how-price-turnaround {
    font-size: 14px;
    line-height: 1.5;
    color: #6f655d;
}

/* REAL FORM STEPS SHOULD SHOW JUST PROGRESS + INPUTS */
.furfect-form-steps-shell .furfect-form-badge,
.furfect-form-steps-shell h2,
.furfect-form-steps-shell > .furfect-form-top > .furfect-intro,
.furfect-form-steps-shell .furfect-pricing-card,
.furfect-form-steps-shell .furfect-delay-message-form {
    display: none !important;
}

.furfect-form-steps-shell .furfect-form-top {
    margin-bottom: 14px;
}

.furfect-form-steps-shell .furfect-step-progress {
    margin-top: 0;
    max-width: none;
    width: 100%;
}

.furfect-legal-note {
    margin: 8px 0 0;
    font-size: 12px;
    color: #7b7068;
    text-align: center;
    line-height: 1.5;
}

.furfect-legal-note a {
    color: #8a5a3c;
    font-weight: 600;
    text-decoration: underline;
	text-align: center;
}

.furfect-legal-note a:hover {
    opacity: 0.8;
}

@media (max-width: 782px) {
    .furfect-how-price-banner {
        padding: 14px 14px;
        border-radius: 18px;
        margin-top: 16px;
    }

    .furfect-how-price-now {
        min-height: 38px;
        padding: 0 12px;
        font-size: 17px;
    }

    .furfect-how-price-turnaround,
    .furfect-form-steps-shell .furfect-step-progress {
        max-width: 100%;
        font-size: 13px;
    }
}


/* OVERRIDE: widen outer shell only, keep how-it-works card styling intact */
.furfect-form-shell {
    max-width: 1100px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.furfect-how-it-works {
    max-width: none;
    width: 100%;
    margin: 0 auto 22px;
    box-sizing: border-box;
}

@media (max-width: 782px) {
    .furfect-form-shell {
        padding: 0 16px;
    }
}


/* TERMS ACCEPTANCE */
.furfect-terms-wrap {
    margin-bottom: 12px;
    padding: 14px 16px;
    background: #fcfbfa;
    border: 1px solid #ece4dc;
    border-radius: 16px;
}

.furfect-terms-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.furfect-terms-label input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #b77752;
    flex-shrink: 0;
}

.furfect-terms-label span {
    font-size: 13px;
    color: #7b7068;
    line-height: 1.5;
}

.furfect-terms-label a {
    color: #8a5a3c;
    font-weight: 700;
    text-decoration: underline;
}

#furfect_submit_request_button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
/* === STATUS CARD DYNAMIC STYLING === */
.furfect-status-card {
    transition: all 0.25s ease;
}

/* NEW */
.furfect-status-card.status-new {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-color: #fdba74;
}

/* PREVIEW SENT */
.furfect-status-card.status-preview-sent {
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border-color: #7dd3fc;
}

/* CHANGES REQUESTED */
.furfect-status-card.status-changes-requested {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border-color: #fcd34d;
}

/* APPROVED */
.furfect-status-card.status-approved {
    background: linear-gradient(135deg, #eef2ff, #f5f3ff);
    border-color: #a5b4fc;
}

/* PAID */
.furfect-status-card.status-paid {
    background: linear-gradient(135deg, #f5f3ff, #faf5ff);
    border-color: #c4b5fd;
}

/* COMPLETED */
.furfect-status-card.status-completed {
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
    border-color: #6ee7b7;
}

/* OPTIONAL: subtle pulse for active states */
.furfect-status-card.status-preview-sent,
.furfect-status-card.status-changes-requested {
    animation: furfectStatusGlow 2.5s ease-in-out infinite;
}

@keyframes furfectStatusGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0,0,0,0);
    }
    50% {
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
}
/* DASHBOARD HERO BALANCE FIX */
.furfect-dashboard-hero-upgraded,
.furfect-dashboard-hero {
    text-align: center;
}

.furfect-dashboard-head,
.furfect-order-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.furfect-dashboard-head h2,
.furfect-order-top h2 {
    margin: 0;
    text-align: center;
}

.furfect-dashboard-head p,
.furfect-order-sub {
    margin: 0;
    text-align: center;
}

.furfect-dashboard-status-callout {
    max-width: 820px;
    margin: 0 auto 18px;
    text-align: center;
    align-items: center;
}

.furfect-dashboard-quickstats {
    max-width: 1050px;
    margin: 0 auto 22px;
    justify-content: center;
}

.furfect-dashboard-stat {
    text-align: center;
}

.furfect-dashboard-stat span,
.furfect-dashboard-stat strong {
    text-align: center;
}

.furfect-dashboard-timeline {
    max-width: 1050px;
    margin: 18px auto 0;
}

.furfect-timeline-item {
    align-items: center;
    justify-content: center;
}

/* Optional, makes the top badge feel more centered too */
.furfect-form-badge,
.furfect-panel-topline {
    margin-left: auto;
    margin-right: auto;
}
.furfect-dashboard-quickstats {
    max-width: 1050px;
    margin: 0 auto 22px;
    justify-content: center;
}

.furfect-dashboard-stat {
    text-align: left;
}
.furfect-dashboard-quickstats {
    display: flex;
    justify-content: center;   /* centers the group */
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto 24px;
}

.furfect-dashboard-stat {
    text-align: center; /* center text inside cards */
}
.furfect-dashboard-timeline {
    display: flex;
    justify-content: center; /* 👈 centers whole timeline */
    gap: 40px;               /* controls spacing between steps */
    margin: 20px auto 0;
    max-width: 800px;        /* stops it stretching too wide */
}

.furfect-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.furfect-dashboard-timeline span {
    text-align: center;
    font-size: 13px;
}
.furfect-preview-frame {
    position: relative;
}

.furfect-preview-open-btn {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(24, 18, 14, 0.84);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    z-index: 7;
    backdrop-filter: blur(6px);
    transition: all 0.2s ease;
}

.furfect-preview-open-btn:hover {
    background: rgba(24, 18, 14, 0.94);
    transform: translateX(-50%) translateY(-1px);
}

.furfect-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.furfect-preview-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.furfect-preview-modal-inner {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 90vh;
}

.furfect-preview-modal-inner img {
    display: block;
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.furfect-preview-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: #2f211b;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

@media (max-width: 782px) {
    .furfect-preview-open-btn {
        bottom: 10px;
        padding: 9px 14px;
        font-size: 12px;
    }

    .furfect-preview-modal {
        padding: 14px;
    }
}
.furfect-preview-open-btn {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    
    padding: 12px 18px;
    border-radius: 999px;
    
    background: linear-gradient(135deg, #b77752, #d89a6c);
    color: #fff;
    
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    
    border: none;
    cursor: pointer;
    
    z-index: 10;
    
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.25s ease;
}

.furfect-preview-open-btn:hover {
    transform: translateX(-50%) translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
@keyframes furfectPulse {
    0% { box-shadow: 0 0 0 0 rgba(184, 119, 82, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(184, 119, 82, 0); }
    100% { box-shadow: 0 0 0 0 rgba(184, 119, 82, 0); }
}

.furfect-preview-open-btn {
    animation: furfectPulse 2s infinite;
}

/* ===== SHOPIFY STYLE SELECTOR ===== */
.furfect-style-shopify-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: start;
    margin-top: 8px;
}

.furfect-style-shopify-options {
    display: grid;
    gap: 10px;
}

.furfect-style-option {
    width: 100%;
    border: 1px solid #eadfd4;
    background: #fff;
    color: #2f211b;
    border-radius: 18px;
    padding: 14px 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(35, 25, 18, 0.04);
}

.furfect-style-option:hover {
    transform: translateY(-1px);
    border-color: #d9c2b1;
    box-shadow: 0 10px 20px rgba(35, 25, 18, 0.06);
}

.furfect-style-option.active {
    border-color: #c98b68;
    background: linear-gradient(180deg, #fff7f1 0%, #fff 100%);
    box-shadow: 0 12px 24px rgba(201, 139, 104, 0.16);
}

.furfect-style-option-name {
    display: block;
    line-height: 1.35;
}

.furfect-style-shopify-preview {
    min-width: 0;
}

.furfect-style-preview-shell {
    border: 1px solid #eadfd4;
    border-radius: 22px;
    background: linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
    padding: 14px;
    box-shadow: 0 10px 24px rgba(35, 25, 18, 0.05);
}

.furfect-style-preview-media {
    position: relative;
    width: 100%;
    max-width: 380px; /* 👈 sweet spot */
    aspect-ratio: 4 / 3;
    margin: 0 auto; /* 👈 centers it */
    border-radius: 16px;
    overflow: hidden;
    background: #f7efe8;
    border: 1px solid #eadfd4;
}


.furfect-style-preview-image {
    width: 85%;          /* 👈 controls size */
    height: 85%;
    object-fit: cover;
    border-radius: 14px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 👈 centers it */
}

.furfect-style-preview-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    text-align: center;
    color: #8a5a3c;
    font-weight: 700;
    background: linear-gradient(135deg, #f7eee7, #fffaf6);
}

.furfect-style-preview-other-wrap {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255,250,246,0.96), rgba(252,247,242,0.98));
}

.furfect-style-preview-other-wrap label {
    font-size: 14px;
    font-weight: 700;
    color: #2f211b;
    margin: 0;
}

.furfect-style-preview-other-wrap textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #e7ddd3;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.45;
    color: #2f211b;
    resize: vertical;
    box-sizing: border-box;
}

.furfect-style-preview-copy {
    margin-top: 12px;
}

.furfect-style-preview-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    color: #2f211b;
    line-height: 1.2;
}

.furfect-style-preview-copy p {
    margin: 0;
    color: #6f655d;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .furfect-style-shopify-layout {
        grid-template-columns: 1fr;
    }

    .furfect-style-shopify-preview {
        order: -1;
    }
}


/* ===== SHOPIFY SELECTOR JS FIX POLISH ===== */
.furfect-style-preview-image {
    transition: opacity 0.2s ease;
}

.furfect-style-option {
    position: relative;
}

.furfect-style-option.active::after {
    content: "✓";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c98b68, #b77752);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}
.furfect-style-preview-media.other-active {
    aspect-ratio: unset;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
}
.furfect-style-preview-other-wrap {
    position: relative;
}
.furfect-style-preview-media.other-active {
    aspect-ratio: unset;
    height: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: none;
    display: block;
}

.furfect-style-preview-other-wrap {
    position: relative;
    display: none;
    width: 100%;
    padding: 0;
    background: transparent;
}

.furfect-style-preview-media.other-active .furfect-style-preview-other-wrap {
    display: block;
}

.furfect-style-preview-other-wrap label {
    display: block;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #2f211b;
}

.furfect-style-preview-other-wrap textarea {
    width: 100%;
    min-height: 180px;
    border: 1px solid #e7ddd3;
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.55;
    color: #2f211b;
    resize: vertical;
    box-sizing: border-box;
    box-shadow: 0 8px 20px rgba(35, 25, 18, 0.04);
}

.furfect-style-preview-other-wrap textarea:focus {
    outline: none;
    border-color: #c98b68;
    box-shadow: 0 0 0 4px rgba(201, 139, 104, 0.14);
}

.furfect-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.furfect-error-text {
    margin-top: 6px;
    font-size: 13px;
    color: #e74c3c;
    font-weight: 600;
}
.furfect-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.furfect-error-text {
    margin-top: 8px;
    font-size: 13px;
    color: #e74c3c;
    font-weight: 600;
}

.furfect-style-preview-copy.other-active {
    margin-top: 14px;
}
.furfect-style-preview-other-wrap textarea {
    line-height: 1.6;
    padding-bottom: 18px; /* 👈 gives letters breathing room */
}

.furfect-style-preview-shell {
    overflow: visible; /* 👈 stops clipping */
}

.furfect-style-preview-media {
    overflow: visible; /* 👈 important */
}