/* ══════════════════════════════════════════════════════════════
   REEMCO FiboSearch PRO — Premium Search Styling
   Premium, professional WooCommerce search experience
   Brand Colors: #1B5E3B (Deep Green) · #C4A265 (Gold) · #1A1A2E (Dark)
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   SEARCH ROW CONTAINER
   ══════════════════════════════════════ */
.rc-header-search-row--fibosearch {
    background: linear-gradient(180deg, #f8faf9 0%, #f0f4f1 100%);
    padding: 14px 20px;
    border-bottom: 1px solid rgba(27, 94, 59, 0.08);
    position: relative;
    z-index: 999;
}

.rc-header-search-row--fibosearch .rc-search-wrap {
    max-width: 720px;
    margin: 0 auto;
}

/* Star ratings in suggestions and details */
.dgwt-wcas-suggestion .star-rating,
.dgwt-wcas-details-wrapp .star-rating {
    color: #C4A265 !important;
}

.dgwt-wcas-suggestion .star-rating span::before {
    color: #C4A265 !important;
}

/* ══════════════════════════════════════
   SEARCH BAR — Main Input Area
   ══════════════════════════════════════ */

/* Container wrapper */
.dgwt-wcas-search-wrapp {
    max-width: 680px !important;
    margin: 0 auto !important;
    position: relative;
}

/* The search form */
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp {
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(27, 94, 59, 0.08), 0 0 0 1px rgba(27, 94, 59, 0.12) !important;
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
    background: #fff !important;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp:hover {
    box-shadow: 0 4px 20px rgba(27, 94, 59, 0.14), 0 0 0 2px rgba(27, 94, 59, 0.2) !important;
}

.dgwt-wcas-search-wrapp.dgwt-wcas-active .dgwt-wcas-sf-wrapp,
.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp:focus-within {
    box-shadow: 0 6px 30px rgba(27, 94, 59, 0.18), 0 0 0 2px #1B5E3B !important;
    transform: translateY(-1px);
}

/* Search input field */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-input {
    font-family: 'Cairo', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #1A1A2E !important;
    -webkit-text-fill-color: #1A1A2E !important;
    caret-color: #1B5E3B !important;
    opacity: 1 !important;
    padding: 14px 18px !important;
    border: none !important;
    background: transparent !important;
    direction: rtl !important;
    height: auto !important;
    min-height: 52px !important;
    letter-spacing: 0 !important;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-search-input::placeholder {
    font-family: 'Cairo', sans-serif !important;
    color: #999 !important;
    -webkit-text-fill-color: #999 !important;
    font-weight: 400 !important;
    font-size: 0.92rem !important;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
    color: #1A1A2E !important;
    -webkit-text-fill-color: #1A1A2E !important;
    caret-color: #1B5E3B !important;
}

/* Submit button */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit {
    background: linear-gradient(135deg, #1B5E3B 0%, #143D2B 100%) !important;
    border: none !important;
    border-radius: 0 14px 14px 0 !important;
    min-width: 56px !important;
    height: auto !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
    position: relative;
    overflow: hidden;
}

/* RTL: flip rounded corners */
html[dir="rtl"] .dgwt-wcas-search-wrapp .dgwt-wcas-search-submit,
body.rtl .dgwt-wcas-search-wrapp .dgwt-wcas-search-submit {
    border-radius: 14px 0 0 14px !important;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit:hover {
    background: linear-gradient(135deg, #227048 0%, #1B5E3B 100%) !important;
    transform: scale(1.02);
}

.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit:active {
    transform: scale(0.98);
}

.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier,
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit svg {
    fill: #fff !important;
    color: #fff !important;
    width: 20px !important;
    height: 20px !important;
}

/* Submit shimmer effect on hover */
.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-search-submit:hover::after {
    transform: translateX(100%);
}

/* Close / clear icon */
.dgwt-wcas-search-wrapp .dgwt-wcas-close {
    color: #bbb !important;
    transition: color 0.2s, transform 0.2s !important;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-close:hover {
    color: #E74C3C !important;
    transform: rotate(90deg);
}

/* Preloader spinner */
.dgwt-wcas-search-wrapp .dgwt-wcas-preloader {
    color: #C4A265 !important;
}

/* ══════════════════════════════════════
   DARKENED BACKGROUND OVERLAY
   ══════════════════════════════════════ */
.dgwt-wcas-overlay-visible .dgwt-wcas-overlay {
    background: rgba(10, 15, 20, 0.55) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

/* ══════════════════════════════════════
   AUTOCOMPLETE SUGGESTIONS DROPDOWN
   ══════════════════════════════════════ */

/* Main dropdown container */
.dgwt-wcas-suggestions-wrapp {
    border-radius: 16px !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
    border: none !important;
    overflow: hidden !important;
    margin-top: 8px !important;
    animation: rcFiboSlideIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-height: 70vh !important;
    scrollbar-width: thin;
    scrollbar-color: #C4A265 transparent;
}

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

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar {
    width: 5px;
}

.dgwt-wcas-suggestions-wrapp::-webkit-scrollbar-thumb {
    background: #C4A265;
    border-radius: 10px;
}

/* ── Section Headers (Categories, Tags, Products) ── */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #1B5E3B !important;
    background: linear-gradient(to bottom, #f7faf8, #f0f5f2) !important;
    padding: 10px 18px !important;
    border-bottom: 1px solid #e8ede9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline::before {
    content: '';
    width: 3px;
    height: 14px;
    background: linear-gradient(to bottom, #1B5E3B, #C4A265);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── Individual Suggestion Items ── */
.dgwt-wcas-suggestion {
    padding: 12px 18px !important;
    border-bottom: 1px solid #f5f5f5 !important;
    transition: all 0.15s ease !important;
    font-family: 'Cairo', sans-serif !important;
    direction: rtl !important;
    cursor: pointer;
}

.dgwt-wcas-suggestion:last-child {
    border-bottom: none !important;
}

.dgwt-wcas-suggestion:hover,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-selected {
    background: #f0f7f2 !important;
}

/* ── Product Image in Suggestions ── */
.dgwt-wcas-suggestion .dgwt-wcas-si {
    width: 60px !important;
    height: 60px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 1px solid #eee !important;
    background: #fafafa !important;
}

.dgwt-wcas-suggestion .dgwt-wcas-si img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.dgwt-wcas-suggestion:hover .dgwt-wcas-si img {
    transform: scale(1.08);
}

/* ── Product Title ── */
.dgwt-wcas-suggestion .dgwt-wcas-st {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1A1A2E !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* ── Product Price ── */
.dgwt-wcas-suggestion .dgwt-wcas-sp {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #1B5E3B !important;
    margin-top: 4px !important;
}

.dgwt-wcas-suggestion .dgwt-wcas-sp del {
    color: #ccc !important;
    font-weight: 400 !important;
    font-size: 0.78rem !important;
}

.dgwt-wcas-suggestion .dgwt-wcas-sp ins {
    text-decoration: none !important;
    color: #1B5E3B !important;
    font-weight: 700 !important;
}

/* ── Sale badge ── */
.dgwt-wcas-suggestion .dgwt-wcas-sp .onsale,
.dgwt-wcas-suggestion .onsale {
    background: linear-gradient(135deg, #C4A265, #A88B4A) !important;
    color: #fff !important;
    font-size: 0.6rem !important;
    font-weight: 700 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
}

/* ── Product Description ── */
.dgwt-wcas-suggestion .dgwt-wcas-sd {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.76rem !important;
    color: #888 !important;
    line-height: 1.5 !important;
    margin-top: 3px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* ── Product SKU ── */
.dgwt-wcas-suggestion .dgwt-wcas-sku {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.68rem !important;
    color: #aaa !important;
    direction: ltr !important;
    display: inline-block !important;
    background: #f5f5f5 !important;
    padding: 1px 6px !important;
    border-radius: 3px !important;
    margin-top: 3px !important;
}

/* ── Highlighted matching text ── */
.dgwt-wcas-suggestion .dgwt-wcas-st .dgwt-wcas-match,
.dgwt-wcas-suggestion .dgwt-wcas-match,
.dgwt-wcas-st mark,
.dgwt-wcas-sd mark {
    background: rgba(196, 162, 101, 0.25) !important;
    color: #1A1A2E !important;
    padding: 0 2px !important;
    border-radius: 2px !important;
    font-weight: 700 !important;
}

/* ── Category / Taxonomy Items ── */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 18px !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax .dgwt-wcas-st {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #1B5E3B !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax:hover .dgwt-wcas-st {
    color: #143D2B !important;
}

/* Category image thumbnail */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-tax .dgwt-wcas-si {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
}

/* ── "See all products..." link at bottom ── */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more {
    text-align: center !important;
    padding: 14px 18px !important;
    border-top: 1px solid #f0f0f0 !important;
    border-bottom: none !important;
    background: #fafbfc !important;
    border-radius: 0 0 16px 16px !important;
    transition: all 0.2s ease !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more .dgwt-wcas-st {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #C4A265 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more:hover {
    background: #f0f7f2 !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more:hover .dgwt-wcas-st {
    color: #1B5E3B !important;
}

/* ── Arrow icon for "See all" ── */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more .dgwt-wcas-st::after {
    content: '←';
    font-size: 1rem;
    transition: transform 0.2s ease;
}

html[dir="ltr"] .dgwt-wcas-suggestion.dgwt-wcas-suggestion-more .dgwt-wcas-st::after {
    content: '→';
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more:hover .dgwt-wcas-st::after {
    transform: translateX(-4px);
}

/* ══════════════════════════════════════
   DETAILS BOX (Product Preview Panel)
   ══════════════════════════════════════ */
.dgwt-wcas-details-wrapp {
    border-radius: 0 16px 16px 0 !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.06) !important;
    border: none !important;
    border-left: 1px solid #f0f0f0 !important;
    background: #fff !important;
    padding: 20px !important;
    animation: rcFiboFadeIn 0.3s ease !important;
}

html[dir="rtl"] .dgwt-wcas-details-wrapp,
body.rtl .dgwt-wcas-details-wrapp {
    border-radius: 16px 0 0 16px !important;
    border-left: none !important;
    border-right: 1px solid #f0f0f0 !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.06) !important;
}

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

.dgwt-wcas-details-wrapp .dgwt-wcas-details-inner {
    font-family: 'Cairo', sans-serif !important;
    direction: rtl !important;
}

/* Details box product image */
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-image {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #eee !important;
    margin-bottom: 16px !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-image img {
    border-radius: 12px !important;
    transition: transform 0.4s ease !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-image:hover img {
    transform: scale(1.05);
}

/* Details box product title */
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-title {
    font-family: 'Cairo', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #1A1A2E !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}

/* Details box price */
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-price {
    font-family: 'Cairo', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #1B5E3B !important;
    margin-bottom: 12px !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-price del {
    color: #ccc !important;
    font-weight: 400 !important;
    font-size: 0.9rem !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-price ins {
    text-decoration: none !important;
}

/* Details box description */
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-desc {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.82rem !important;
    color: #777 !important;
    line-height: 1.7 !important;
    border-top: 1px solid #f0f0f0 !important;
    padding-top: 12px !important;
}

/* Details box SKU */
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-sku {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.72rem !important;
    color: #aaa !important;
    margin-top: 8px !important;
    direction: ltr !important;
    display: inline-block !important;
    background: #f5f5f5 !important;
    padding: 3px 10px !important;
    border-radius: 4px !important;
}

/* Details box Add to Cart button */
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-add-to-cart .button,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-add-to-cart a {
    font-family: 'Cairo', sans-serif !important;
    background: linear-gradient(135deg, #1B5E3B, #143D2B) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
}

.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-add-to-cart .button:hover,
.dgwt-wcas-details-wrapp .dgwt-wcas-details-product-add-to-cart a:hover {
    background: linear-gradient(135deg, #227048, #1B5E3B) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 94, 59, 0.3) !important;
}

/* Details box rating stars */
.dgwt-wcas-details-wrapp .star-rating {
    color: #C4A265 !important;
    font-size: 0.85rem !important;
}

.dgwt-wcas-details-wrapp .star-rating::before {
    color: #e8e8e8 !important;
}

/* ══════════════════════════════════════
   NO RESULTS STATE
   ══════════════════════════════════════ */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-nores {
    padding: 30px 20px !important;
    text-align: center !important;
}

.dgwt-wcas-suggestion.dgwt-wcas-suggestion-nores .dgwt-wcas-st {
    font-family: 'Cairo', sans-serif !important;
    font-size: 0.92rem !important;
    color: #999 !important;
    font-weight: 500 !important;
}

/* ══════════════════════════════════════
   MOBILE OVERLAY SEARCH
   ══════════════════════════════════════ */
.dgwt-wcas-overlay-mobile-on .dgwt-wcas-search-wrapp {
    max-width: 100% !important;
}

.dgwt-wcas-overlay-mobile .dgwt-wcas-om-bar {
    background: #fff !important;
    padding: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.dgwt-wcas-overlay-mobile .dgwt-wcas-om-bar .dgwt-wcas-search-input {
    font-family: 'Cairo', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #1A1A2E !important;
    -webkit-text-fill-color: #1A1A2E !important;
    caret-color: #1B5E3B !important;
    direction: rtl !important;
}

.dgwt-wcas-overlay-mobile .dgwt-wcas-om-bar .dgwt-wcas-search-input::placeholder {
    font-family: 'Cairo', sans-serif !important;
    color: #999 !important;
}

.dgwt-wcas-overlay-mobile .dgwt-wcas-close-overlay-mobile {
    color: #1B5E3B !important;
    font-size: 1.2rem !important;
    transition: color 0.2s !important;
}

.dgwt-wcas-overlay-mobile .dgwt-wcas-close-overlay-mobile:hover {
    color: #E74C3C !important;
}

/* ══════════════════════════════════════
   VOICE SEARCH BUTTON (if present)
   ══════════════════════════════════════ */
.dgwt-wcas-search-wrapp .dgwt-wcas-voice-search {
    color: #bbb !important;
    transition: color 0.2s !important;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-voice-search:hover {
    color: #1B5E3B !important;
}

/* ══════════════════════════════════════
   SEARCH RESULTS PAGE (if applicable)
   ══════════════════════════════════════ */
.dgwt-wcas-search-results-wrapper {
    font-family: 'Cairo', sans-serif !important;
    direction: rtl !important;
}

/* ══════════════════════════════════════
   PIRX STYLE OVERRIDES
   (FiboSearch built-in style)
   ══════════════════════════════════════ */
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
    border-radius: 14px !important;
}

.dgwt-wcas-style-pirx .dgwt-wcas-search-input {
    border-radius: 14px !important;
}

.dgwt-wcas-style-pirx .dgwt-wcas-ico-magnifier-handler {
    color: #1B5E3B !important;
}

/* ══════════════════════════════════════
   HEADER INTEGRATION — Hide old search
   ══════════════════════════════════════ */

/* If there's a native Astra search, hide it when FiboSearch takes over */
.ast-search-menu-icon .search-form:not(.dgwt-wcas-search-wrapp) {
    display: none !important;
}

/* ══════════════════════════════════════
   LOADING / SKELETON ANIMATION
   ══════════════════════════════════════ */
.dgwt-wcas-search-wrapp .dgwt-wcas-preloader-wrapp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-default-preloader {
    border-color: rgba(27, 94, 59, 0.15) !important;
    border-top-color: #1B5E3B !important;
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */
@media (max-width: 992px) {
    .dgwt-wcas-search-wrapp {
        max-width: 100% !important;
    }

    .dgwt-wcas-suggestions-wrapp {
        border-radius: 12px !important;
        margin-top: 6px !important;
    }

    .dgwt-wcas-suggestion .dgwt-wcas-si {
        width: 50px !important;
        height: 50px !important;
    }
}

@media (max-width: 768px) {
    .dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp {
        border-radius: 12px !important;
    }

    .dgwt-wcas-search-wrapp .dgwt-wcas-search-input {
        font-size: 0.92rem !important;
        padding: 12px 14px !important;
        min-height: 46px !important;
    }

    .dgwt-wcas-search-wrapp .dgwt-wcas-search-submit {
        min-width: 46px !important;
        border-radius: 0 12px 12px 0 !important;
    }

    html[dir="rtl"] .dgwt-wcas-search-wrapp .dgwt-wcas-search-submit {
        border-radius: 12px 0 0 12px !important;
    }

    .dgwt-wcas-suggestion {
        padding: 10px 14px !important;
    }

    .dgwt-wcas-suggestion .dgwt-wcas-si {
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
    }

    .dgwt-wcas-suggestion .dgwt-wcas-st {
        font-size: 0.82rem !important;
    }

    .dgwt-wcas-suggestion .dgwt-wcas-sp {
        font-size: 0.8rem !important;
    }
}

/* ══════════════════════════════════════
   PRINT STYLES
   ══════════════════════════════════════ */
@media print {
    .dgwt-wcas-suggestions-wrapp,
    .dgwt-wcas-details-wrapp,
    .dgwt-wcas-overlay {
        display: none !important;
    }
}
