/* --- Modern Cart Styles --- */
:root {
    --gp-cart-bg: #fcfcf9;
    --gp-cart-border: #e8e8e1;
    --gp-cart-accent: #0F172A;
    /* Midnight Navy */
    --gp-cart-accent-light: #D32029;
    /* Vepa Red */
    --gp-cart-text: #333;
    --gp-cart-secondary: #555;
    --gp-cart-muted: #999;
    --gp-cart-white: #ffffff;
    --gp-cart-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.gp-modern-cart-container {
    max-width: 1400px;
    margin: 20px auto 40px;
    padding: 0 30px;
    font-family: 'Inter', sans-serif;
    color: var(--gp-cart-text);
}

/* Top Bar Layout */
.gp-cart-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

/* Progress Steps */
.gp-cart-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 253, 251, 0.7);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    margin: 0 !important;
}

.progress-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.progress-step.active {
    opacity: 1;
}

.progress-step .step-number {
    width: 24px;
    height: 24px;
    background: var(--gp-cart-white);
    border: 1px solid var(--gp-cart-accent);
    color: var(--gp-cart-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}

.progress-step.active .step-number {
    background: var(--gp-cart-accent);
    color: var(--gp-cart-white);
    transform: scale(1.1);
}

.progress-step .step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gp-cart-accent);
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background: var(--gp-cart-border);
    margin: 0 20px;
    max-width: 50px;
}

/* Header */
.gp-cart-header-title {
    display: flex;
    flex-direction: column;
}

.gp-cart-header-title h1 {
    font-family: 'Roboto', sans-serif !important;
    font-size: 30px !important;
    color: var(--gp-cart-accent) !important;
    margin: 0 !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}

.gp-cart-header-title .item-count {
    display: block;
    font-size: 14px;
    color: var(--gp-cart-muted);
    margin-top: 8px;
    font-weight: 500;
}

.btn-continue-shopping {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--gp-cart-accent);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 100px;
    background: #fdfdfb;
    border: 1px solid var(--gp-cart-border);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-continue-shopping:hover {
    background: var(--gp-cart-accent);
    color: var(--gp-cart-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

/* Layout */
.gp-cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

/* Item List */
.gp-cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: calc(100vh - 280px);
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for Product List */
.gp-cart-items-section::-webkit-scrollbar {
    width: 6px;
}

.gp-cart-items-section::-webkit-scrollbar-track {
    background: transparent;
}

.gp-cart-items-section::-webkit-scrollbar-thumb {
    background: var(--gp-cart-border);
    border-radius: 10px;
}

.gp-cart-items-section::-webkit-scrollbar-thumb:hover {
    background: var(--gp-cart-accent-light);
}

.gp-cart-item-card {
    display: grid;
    grid-template-columns: 80px 1.5fr 1.2fr 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
    padding: 24px 30px;
    background: var(--gp-cart-white);
    border-radius: 14px;
    border: 1px solid var(--gp-cart-border);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gp-cart-item-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: var(--gp-cart-accent-light);
}

.item-image-wrapper {
    width: 74px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
}

.item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-name {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gp-cart-accent);
    text-decoration: none;
    margin-bottom: 2px;
    line-height: 1.3;
}

.item-meta {
    font-size: 13px;
    color: var(--gp-cart-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.qty-spinner {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    /* Soft-cornered rectangle */
    padding: 0;
    border: 1px solid var(--gp-cart-border);
    height: 38px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.qty-btn {
    width: 38px;
    height: 38px;
    padding: 0 !important;
    /* Override Astra theme padding */
    border: none;
    background: #f8f9fb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    /* High contrast black/green */
    transition: all 0.2s ease;
}

.qty-btn:hover:not(:disabled) {
    background: #eeeeee;
    color: #000;
}

.qty-btn.minus {
    border-right: 1px solid var(--gp-cart-border);
}

.qty-btn.plus {
    border-left: 1px solid var(--gp-cart-border);
}

.qty-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    stroke-width: 4.5px;
}

.qty-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.qty-value {
    padding: 0 10px;
    font-weight: 700;
    font-size: 15px;
    min-width: 34px;
    text-align: center;
    color: var(--gp-cart-accent);
}

.btn-remove-item {
    background: #fff5f5;
    border: 1px solid #ffe3e3;
    color: #cc3333;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove-item:hover {
    color: #ffffff;
    background: #cc3333;
    border-color: #cc3333;
    transform: none;
}

.item-total-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.item-pricing-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 4px;
}

.item-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.item-offer-badge {
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    background: #e67e22;
    /* High visibility orange */
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.item-total-price .total-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--gp-cart-muted);
    font-weight: 600;
}

.item-total-price .price-value {
    font-size: 18px;
    /* Reduced to avoid overpowering */
    font-weight: 800;
    color: var(--gp-cart-accent);
}

/* Summary Section */
.gp-cart-summary-section {
    position: sticky;
    top: 20px;
    max-height: fit-content;
}

.summary-card {
    background: #ffffff;
    color: var(--gp-cart-accent);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gp-cart-border);
}

.summary-header {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gp-cart-border);
}

.summary-header h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin: 0;
    color: var(--gp-cart-accent) !important;
}

.summary-icon {
    font-size: 18px;
    background: #f8f9fb;
    color: var(--gp-cart-accent);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.summary-body {
    padding: 15px 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 17px;
}

.summary-row .label {
    opacity: 0.7;
    color: var(--gp-cart-accent);
}

.shipping-status {
    color: #2e7d32;
    /* Professional green */
    font-weight: 600;
}

.promo-hint {
    margin-top: 15px;
    font-size: 13px;
    background: #f8f9fb;
    padding: 12px 15px;
    border-radius: 12px;
    display: block;
    color: var(--gp-cart-secondary);
    border: 1px solid var(--gp-cart-border);
}

.summary-footer {
    padding: 15px 20px;
    background: #f8f9fb;
    border-top: 1px solid var(--gp-cart-border);
}

.total-row {
    margin-bottom: 15px !important;
}

.total-row .total-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--gp-cart-accent);
}

.total-row .total-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gp-cart-accent);
}

.btn-checkout-modern {
    width: 100%;
    padding: 16px;
    background: var(--gp-cart-accent-light);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-checkout-modern:hover {
    background: #b01a22;
    /* Slightly darker red */
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(211, 32, 41, 0.3);
}

.btn-icon {
    font-size: 22px;
}

.gp-trust-badges-simple {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 20px;
    background: #fdfdfb;
    border-radius: 20px;
    border: 1px dashed var(--gp-cart-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gp-cart-accent);
    font-weight: 600;
}

.badge-icon {
    font-size: 16px;
}

/* Empty State Enhancement */
.gp-cart-empty-state {
    text-align: center;
    padding: 100px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.gp-cart-empty-state .empty-icon {
    font-size: 80px;
    margin-bottom: 30px;
    display: block;
}

.gp-cart-empty-state h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 38px;
    color: var(--gp-cart-accent);
    margin-bottom: 15px;
}

.gp-cart-empty-state p {
    font-size: 18px;
    color: var(--gp-cart-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-return-shop {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gp-cart-accent);
    color: var(--gp-cart-white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-return-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

/* --- Mobile Exclusive Styles --- */
.gp-cart-mobile-summary-top {
    display: none;
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid var(--gp-cart-border);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mobile-subtotal-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
}

.mobile-subtotal-row .subtotal-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--gp-cart-text);
}

.mobile-subtotal-row .subtotal-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gp-cart-accent);
}

.btn-mobile-checkout {
    width: 100%;
    padding: 14px;
    background: var(--gp-cart-accent-light);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(211, 32, 41, 0.2);
}

.btn-mobile-checkout:active {
    background: #F7CA00;
}

/* Item Card Structural Adjustments (Desktop Realignment) */
.gp-cart-item-card .item-card-top,
.gp-cart-item-card .item-info {
    display: contents;
    /* Let children participate in parent grid */
}

@media (min-width: 769px) {
    .gp-cart-item-card {
        grid-template-columns: 80px 1.5fr 1.5fr auto;
        padding: 20px 25px;
    }

    .item-price-info {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 25px;
        justify-content: flex-start;
    }

    .item-pricing-meta {
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px;
        margin-bottom: 0 !important;
    }

    .price-display {
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 8px;
    }


    .gp-cart-item-card .item-card-bottom {
        display: flex;
        align-items: center;
        gap: 15px;
        justify-content: flex-end;
    }

    .badge-top-left {
        display: block !important;
        /* Ensure it is visible */
        position: absolute;
        top: 12px;
        left: 12px;
        background: #CC0C39 !important;
        color: #ffffff !important;
        padding: 5px 12px;
        font-size: 11px;
        font-weight: 800;
        border-radius: 4px;
        z-index: 50;
        /* Increased z-index to be safe */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        pointer-events: none;
    }

    .gp-cart-item-card.has-low-stock-badge {
        padding-top: 65px !important;
    }
}

.item-availability {
    font-size: 13px;
    color: var(--gp-cart-accent);
    margin-top: 4px;
}

.item-price-info {
    margin-top: 8px;
}

.limited-deal {
    display: block;
    color: #CC0C39;
    font-size: 12px;
    font-weight: 700;
    margin-top: 4px;
}

.btn-delete-item {
    background: #fff;
    border: 1px solid #D5D9D9;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    color: #0F1111;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
}

/* Responsive */
@media (max-width: 1100px) {
    .gp-cart-top-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
        margin-bottom: 25px;
    }

    .gp-cart-progress {
        order: -1;
        width: 100%;
        max-width: 450px;
    }

    .gp-cart-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gp-cart-summary-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .gp-modern-cart-container {
        margin: 0;
        padding: 0;
        background: #f1f1f1;
    }

    .gp-cart-mobile-summary-top {
        display: block;
    }

    .gp-cart-top-bar {
        display: none;
    }

    .gp-cart-items-section {
        max-height: none;
        padding: 10px;
        gap: 10px;
    }

    .gp-cart-item-card {
        display: grid !important;
        grid-template-columns: 105px 1fr !important;
        grid-template-areas:
            "badge badge"
            "image info"
            "image buttons" !important;
        padding: 12px !important;
        border-bottom: 1px solid var(--gp-cart-border) !important;
        border-radius: 0 !important;
        background: #fff !important;
        gap: 8px 15px !important;
        box-shadow: none !important;
    }

    .gp-cart-item-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .limited-deal {
        grid-area: badge;
        margin: 0 0 5px 0 !important;
        font-size: 11px !important;
        color: #CC0C39 !important;
        font-weight: 700;
        text-align: left !important;
    }

    .item-image-wrapper {
        grid-area: image;
        width: 105px !important;
        height: 105px !important;
        margin: 0 !important;
        border-radius: 8px !important;
        overflow: hidden;
    }

    .item-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    .item-info {
        grid-area: info;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .item-name {
        font-size: 14px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        color: var(--gp-cart-accent) !important;
        text-decoration: none;
    }

    .item-meta {
        display: none !important;
    }

    .item-price-info {
        margin-top: 0 !important;
    }

    .item-pricing-meta {
        align-items: flex-start !important;
        margin-bottom: 2px !important;
    }

    .price-display {
        display: flex !important;
        flex-direction: row !important;
        align-items: baseline !important;
        gap: 6px !important;
    }

    .price-value {
        font-size: 15px !important;
        font-weight: 800 !important;
        color: var(--gp-cart-accent) !important;
    }

    .item-old-price {
        font-size: 11px !important;
        color: #999 !important;
        text-decoration: line-through;
    }

    .item-offer-badge {
        font-size: 10px !important;
        padding: 1px 6px !important;
        margin-bottom: 4px !important;
    }

    .item-card-bottom {
        grid-area: buttons;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        margin-top: 0 !important;
    }

    .qty-spinner {
        height: 32px !important;
        border-radius: 6px !important;
    }

    .qty-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .qty-value {
        font-size: 13px !important;
        min-width: 28px !important;
    }

    .btn-delete-item {
        padding: 6px 12px !important;
        font-size: 12px !important;
        background: #fff !important;
        border: 1px solid #D5D9D9 !important;
        border-radius: 15px !important;
        color: #0F1111 !important;
    }

    .item-name {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: #0F1111;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
    }

    .item-meta {
        display: none;
    }

    .price-display {
        flex-direction: row;
        align-items: baseline;
        gap: 5px;
    }

    .price-display .price-value {
        font-size: 18px;
        font-weight: 700;
        color: #0F1111;
    }

    .item-old-price {
        font-size: 12px;
        color: #565959;
    }

    .item-offer-badge {
        background: #CC0C39;
        font-size: 12px;
        padding: 4px 8px;
    }

    .qty-spinner {
        border-radius: 20px;
        border-color: #D5D9D9;
        background: #F0F2F2;
        box-shadow: 0 2px 5px rgba(213, 217, 217, .5);
    }

    .qty-btn {
        background: transparent;
        width: 34px;
        height: 34px;
    }

    .qty-value {
        min-width: 30px;
        font-size: 14px;
    }

    .gp-cart-summary-section {
        padding: 10px;
        background: #fff;
        margin-top: 10px;
    }

    .summary-card {
        background: #fff;
        color: #0F1111;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .summary-header h3,
    .summary-row,
    .total-row .total-label,
    .total-row .total-value {
        color: #0F1111 !important;
    }

    .btn-checkout-modern {
        display: flex !important;
        margin-top: 15px !important;
        width: 100% !important;
        padding: 14px !important;
        background: #FFD814 !important;
        border: 1px solid #FCD200 !important;
        border-radius: 25px !important;
        font-weight: 700 !important;
        font-size: 15px !important;
        color: #0F1111 !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    }

    .gp-trust-badges-simple {
        margin-top: 20px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .item-card-top {
        grid-template-columns: 100px 1fr;
    }
}

/* Universal Confirmation Modal Styles */
.gp-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    display: grid !important;
    place-items: center !important;
    z-index: 99999 !important;
    animation: gpFadeIn 0.3s ease !important;
    padding: 20px !important;
}

.gp-confirm-modal {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 28px !important;
    padding: 35px 30px !important;
    width: 100% !important;
    max-width: 420px !important;
    text-align: center !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    animation: gpScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.modal-close-x {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: transparent !important;
    border: none !important;
    color: #999 !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    width: 32px !important;
    height: 32px !important;
}

.modal-close-x:hover {
    background: #f5f5f5 !important;
    color: #333 !important;
    transform: rotate(90deg) !important;
}

.modal-icon {
    font-size: 44px !important;
    margin-bottom: 20px !important;
}

.gp-confirm-modal h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    color: #1a1a1a !important;
    margin: 0 0 12px 0 !important;
}

.gp-confirm-modal p {
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 30px !important;
}

.modal-actions {
    display: flex !important;
    gap: 15px !important;
}

.btn-cancel,
.btn-confirm-delete {
    flex: 1 !important;
    padding: 14px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.btn-cancel {
    background: #f1f1f1 !important;
    color: #333 !important;
}

.btn-cancel:hover {
    background: #e9e9e9 !important;
}

.btn-confirm-delete {
    background: #CC0C39 !important;
    color: #fff !important;
}

.btn-confirm-delete:hover {
    background: #a30a2e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(204, 12, 57, 0.25) !important;
}

@keyframes gpFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes gpScaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Stepper Interactivity */
.progress-step,
.step-number,
.step-label {
    cursor: pointer !important;
}

.progress-step:hover {
    opacity: 0.75 !important;
}

.progress-step.active:hover {
    opacity: 1 !important;
}

/* Search Button Alignment Fix */
.dgwt-wcas-search-submit {
    cursor: pointer !important;
    position: absolute !important;
    right: 5px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 100 !important;
}

.dgwt-wcas-search-input {
    z-index: 1 !important;
}

.dgwt-wcas-sf-wrapp {
    position: relative !important;
}