.ymm-container {
    background-color: #000000;
    padding: 20px;
}

.ymm-dropdown {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ymm-dropdown select {
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    border: 2px solid #ffde00;
    border-radius: 5px;
    padding: 10px 30px 10px 10px;
    appearance: none;
    position: relative;
    width: 220px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23000000' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.ymm-dropdown select[disabled] {
    opacity: 0.5;
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.ymm-dropdown button {
    background-color: #FFDE00;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    border: none;
    border-radius: 5px;
    padding: 10px 30px;
    cursor: pointer;
    width: 220px;
}

.ymm-dropdown button:hover {
    background-color: #e0c400;
}

.ymm-results {
    margin-top: 20px;
}

.ymm-results h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.ymm-results ul {
    list-style: none;
    padding: 0;
}

.ymm-results li {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

.ymm-results li strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.ymm-results li a {
    color: #0073aa;
    text-decoration: none;
}

.ymm-results li a:hover {
    text-decoration: underline;
}

.ymm-results li img {
    max-width: 100px;
    height: auto;
    margin: 10px 0;
    display: block;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .ymm-dropdown select, .ymm-dropdown button {
        width: 200px;
    }
    .ymm-dropdown button {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .wiper-products-wrapper .product-card {
        flex-direction: column;
        align-items: center;
    }
    .wiper-products-wrapper .product-type{
    gap: 0;
    padding-bottom: 0 !important;
}
.wiper-products-wrapper .product-type-subtitle, .wiper-products-wrapper .product-type-icon{
    margin-bottom: 0 !important;
}
.wiper-products-wrapper .product-content{
    margin: 10px !important;
}
.wiper-products-wrapper .product-type{
    padding: 20px;
}
}

@media screen and (max-width: 768px) {
    .ymm-dropdown {
        flex-direction: column;
        align-items: stretch;
    }
    .ymm-dropdown select {
        width: 100%;
        margin-bottom: 10px;
    }
    .ymm-dropdown button {
        width: 100%;
        margin-top: 10px;
    }
}



/* css for wiper products display */
.wiper-products-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .wiper-products-wrapper {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
        }

        .wiper-products-wrapper .products-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .wiper-products-wrapper .product-card {
            display: flex;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .wiper-products-wrapper .product-card.ceramic {
            background-color: #FFDE00;
        }

        .wiper-products-wrapper .product-card.silicone {
            background-color: #0066CC;
        }

        .wiper-products-wrapper .product-card.hybrid {
            background-color: #001F3F;
        }

        /* Product Type Sidebar */
        .wiper-products-wrapper .product-type {
            width: 240px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            padding: 30px 20px;
            color: white;
        }

        .wiper-products-wrapper .product-card.ceramic .product-type {
            color: #000;
        }

        .wiper-products-wrapper .product-type-title {
            font-size: 22px;
            text-align: center;
            margin-bottom: 5px;
            font-weight: 900;
            line-height: 1.2;
        }

        .wiper-products-wrapper .product-type-subtitle {
            font-size: 16px;
            text-align: center;
            margin-bottom: 20px;
        }

        .wiper-products-wrapper .product-type-icon {
            width: 100%;
            /* height: 120px; */
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wiper-products-wrapper .product-type-icon img {
            max-width: 100%;
            max-height: 100%;
        }

        .wiper-products-wrapper .product-type-description {
            font-size: 14px;
            text-align: center;
            font-weight: 600;
        }

        /* Product Content */
        .wiper-products-wrapper .product-content {
            flex: 1;
            background-color: white;
            padding: 0;
            display: flex;
            flex-direction: column;
            border: 5px solid;
            margin: 15px 15px 15px 0;
            border-radius: 10px;
        }

        .wiper-products-wrapper .product-card.ceramic .product-content {
            border-color: #FFDE00;
        }

        .wiper-products-wrapper .product-card.silicone .product-content {
            border-color: #0066CC;
        }

        .wiper-products-wrapper .product-card.hybrid .product-content {
            border-color: #001F3F;
        }

        .wiper-products-wrapper .product-header {
            /* background-color: #999; */
            color: #000;
            padding: 12px 20px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 5px 5px 0 0;
        }

        .wiper-products-wrapper .product-image-section {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 20px;
            min-height: 180px;
            position: relative;
            background-color: white;
        }

        .wiper-products-wrapper .product-image-section img {
            max-width: 100%;
            height: auto;
            max-height: 150px;
            transition: opacity 0.3s ease;
        }

        .wiper-products-wrapper .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .wiper-products-wrapper .product-image-section:hover .image-overlay {
            opacity: 1;
            pointer-events: auto;
        }

        .wiper-products-wrapper .overlay-content {
            text-align: center;
            color: white;
        }

        .wiper-products-wrapper .overlay-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .wiper-products-wrapper .overlay-button {
            background-color: white;
            color: #000;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
        }

        .wiper-products-wrapper .overlay-button:hover {
            background-color: #f0f0f0;
        }

        /* Product Details Table */
        .wiper-products-wrapper .product-details {
            background-color: #fff;
            padding: 20px;
        }

        .wiper-products-wrapper .details-table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #C5C5C5;
        }

        .wiper-products-wrapper .details-table th {
            background-color: #E8E8E8;
            padding: 10px 8px;
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            color: #000;
            border-bottom: 2px solid #ccc;
            line-height: 1.1em;
        }

        .wiper-products-wrapper .details-table td {
            padding: 10px 8px;
            text-align: center;
            font-size: 15px;
            color: #333;
            background-color: white;
            border-bottom: 1px solid #C5C5C5;
        }

        .wiper-products-wrapper .details-table td.link {
            color: #000;
            font-weight: 400;
        }

        .wiper-products-wrapper .details-table td.view-product-link {
            padding: 0;
        }

        .wiper-products-wrapper .details-table td.view-product-link a {
            display: inline-block;
            background-color: #FFDE00;
            color: #000;
            padding: 3px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .wiper-products-wrapper .details-table td.view-product-link a:hover {
            background-color: #e0c400;
            text-decoration: none;
        }

        /* Table Display Toggle */
        .wiper-products-wrapper .details-table-mobile {
            display: none;
        }

        .wiper-products-wrapper .details-table-desktop {
            display: table;
        }

        /* Mobile Table Specific Styles */
        .wiper-products-wrapper .details-table-mobile td.mobile-label {
            background-color: #E8E8E8;
            color: #000;
            font-weight: 700;
            text-align: center;
            padding: 10px 8px;
        }

        .wiper-products-wrapper .details-table-mobile th {
            font-weight: 400;
        }

        .wiper-products-wrapper .details-table-mobile thead th:first-child {
            font-weight: 700;
        }

        .wiper-products-wrapper .details-table-mobile td.view-product-link {
            padding: 8px;
        }

        /* Action Buttons */
        .wiper-products-wrapper .product-actions {
            display: flex;
            gap: 10px;
            padding: 20px;
            background-color: white;
            border-radius: 0 0 10px 10px;
            padding-top: 0;;
        }

        .wiper-products-wrapper .btn {
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            border: 2px solid;
            transition: all 0.3s ease;
        }

        .wiper-products-wrapper .btn-learn {
            background-color: #FFDE00;
            color: #000;
            border-color: #FFDE00;
        }

        .wiper-products-wrapper .btn-learn:hover {
            background-color: #e0c400;
        }

        .wiper-products-wrapper .btn-installation {
            background-color: white;
            color: #000;
            border-color: #333;
        }

        .wiper-products-wrapper .btn-installation:hover {
            background-color: #f5f5f5;
        }

        .wiper-products-wrapper .btn-buy {
            display: none; /* Hide Buy Now button */
        }

        .wiper-products-wrapper .btn-find {
            background-color: #FFDE00;
            color: #000;
            border-color: #FFDE00;
        }

        .wiper-products-wrapper .btn-find:hover {
            background-color: #e0c400;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .wiper-products-wrapper .product-card {
                flex-direction: column;
            }

            .wiper-products-wrapper .product-type {
                width: 100%;
                padding: 20px;
                gap: 0;
                padding-bottom: 0 !important;
            }

            .wiper-products-wrapper .product-type-subtitle,
            .wiper-products-wrapper .product-type-icon {
                margin-bottom: 0 !important;
            }

            .wiper-products-wrapper .product-content {
                margin: 10px !important;
            }

            .wiper-products-wrapper .product-header {
                font-size: 20px;
                padding: 15px;
            }

            .wiper-products-wrapper .details-table {
                font-size: 14px;
            }

            .wiper-products-wrapper .details-table th,
            .wiper-products-wrapper .details-table td {
                padding: 8px 5px;
                font-size: 13px;
            }

            .wiper-products-wrapper .details-table td.view-product-link a {
                padding: 4px 12px;
                font-size: 12px;
            }

            .wiper-products-wrapper .product-actions {
                flex-wrap: wrap;
                gap: 8px;
                padding: 15px;
            }

            .wiper-products-wrapper .btn {
                padding: 10px 20px;
                font-size: 14px;
                flex: 1 1 45%;
            }
        }

        @media screen and (max-width: 640px) {
            .wiper-products-wrapper {
                padding: 10px;
            }

            .wiper-products-wrapper .product-type {
                padding: 15px;
            }

            .wiper-products-wrapper .product-type-title {
                font-size: 20px;
            }

            .wiper-products-wrapper .product-header {
                font-size: 18px;
                padding: 12px;
            }

            .wiper-products-wrapper .details-table th,
            .wiper-products-wrapper .details-table td {
                padding: 6px 4px;
                font-size: 12px;
            }

            .wiper-products-wrapper .details-table th {
                line-height: 1.2em;
            }

            .wiper-products-wrapper .details-table td.view-product-link a {
                padding: 3px 10px;
                font-size: 11px;
            }

            .wiper-products-wrapper .product-actions {
                flex-direction: column;
                gap: 10px;
            }

            .wiper-products-wrapper .btn {
                width: 100%;
                padding: 12px 20px;
            }
        }

        @media screen and (max-width: 600px) {
            /* Toggle table display */
            .wiper-products-wrapper .details-table-desktop {
                display: none;
            }

            .wiper-products-wrapper .details-table-mobile {
                display: table;
            }

            .wiper-products-wrapper .details-table-mobile th,
            .wiper-products-wrapper .details-table-mobile td {
                padding: 10px 8px;
                font-size: 13px;
            }

            .wiper-products-wrapper .details-table-mobile th {
                font-size: 14px;
                font-weight: 700;
            }

            .wiper-products-wrapper .details-table-mobile td.view-product-link a {
                padding: 5px 12px;
                font-size: 12px;
            }
        }

        @media screen and (max-width: 480px) {
            .wiper-products-wrapper .product-type {
                padding: 12px;
            }

            .wiper-products-wrapper .product-type-title {
                font-size: 18px;
            }

            .wiper-products-wrapper .product-type-subtitle {
                font-size: 14px;
            }

            .wiper-products-wrapper .product-type-description {
                font-size: 13px;
            }

            .wiper-products-wrapper .product-header {
                font-size: 16px;
                padding: 10px;
            }

            .wiper-products-wrapper .overlay-title {
                font-size: 18px;
            }

            .wiper-products-wrapper .overlay-button {
                padding: 8px 20px;
                font-size: 14px;
            }

            .wiper-products-wrapper .details-table-mobile th,
            .wiper-products-wrapper .details-table-mobile td {
                padding: 8px 5px;
                font-size: 12px;
            }

            .wiper-products-wrapper .details-table-mobile th {
                font-size: 13px;
            }

            .wiper-products-wrapper .details-table-mobile td.view-product-link a {
                padding: 4px 10px;
                font-size: 11px;
                line-height: 1em;
            }

            .wiper-products-wrapper .product-actions {
                padding: 12px;
            }

            .wiper-products-wrapper .btn {
                font-size: 14px;
                padding: 12px 16px;
            }
        }

        @media screen and (max-width: 360px) {
            .wiper-products-wrapper .product-type-title {
                font-size: 16px;
            }

            .wiper-products-wrapper .product-header {
                font-size: 15px;
            }

            .wiper-products-wrapper .details-table th,
            .wiper-products-wrapper .details-table td {
                padding: 6px 3px;
                font-size: 10px;
            }

            .wiper-products-wrapper .details-table th {
                font-size: 11px;
            }

            .wiper-products-wrapper .btn {
                font-size: 13px;
                padding: 10px 14px;
            }
        }


/* Vehicle Bar Styles */
.ymm-vehicle-bar-wrapper {
    margin-bottom: 20px;
}

.change-my-vehicle {
    border: 2px solid #FFDE00;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.change-my-vehicle .vehicle-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.change-my-vehicle .vehicle-display-name {
    color: #333;
    font-weight: 700;
}

.change-vehicle-btn {
    background-color: #010101;
    color: #fff;
    border-radius: 9px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.change-vehicle-btn:hover {
    background-color: #333;
}

/* Popup Overlay */
.change-vehicle-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.change-vehicle-popup-overlay.active {
    display: flex;
}

.change-vehicle-popup {
    background-color: #000000;
    /* padding: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid #fff;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.popup-content-wrapper {
    width: 100%;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.close-popup:hover,
.close-popup:focus {
    transform: scale(1.1);
    color: #FFDE00;
    outline: none;
}

.popup-heading {
       color: #fff;
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    margin: 0;
}

.popup-heading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    /* margin-bottom: 20px; */
}

.hr-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hr-div hr {
    width: 99px;
    height: 2px;
    background-color: #fff;
    border: none;
    margin: 0;
}


@media screen and (min-width: 900px){
    .change-vehicle-popup .ymm-container {
    display: flex;
    justify-content: center;
}
}
/* Responsive - Vehicle Bar */
@media screen and (max-width: 768px) {
    .change-my-vehicle {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .change-vehicle-btn {
        width: 100%;
    }
    
    .change-vehicle-popup {
        border-width: 3px;
        padding: 50px 20px;
    }
    
    .close-popup {
        font-size: 28px;
        top: 10px;
        right: 10px;
    }
    .hr-div hr {
      width:30px;  
}
.popup-heading {
    font-size: 24px;
    line-height: 1.1em;
}
}

.change-vehicle-popup {
    background: url(https://invisibleglasswindshieldwipers.com/wp-content/uploads/2025/10/Mask-group-1.jpg) !important;
    background-size: cover !important;
    background-position: center;
}
.change-vehicle-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Black overlay with 50% opacity */
  z-index: 1; /* Ensures the overlay is above the background image */
}

.change-vehicle-popup  .popup-content-wrapper {
    z-index: 2;
}

.change-vehicle-popup  .ymm-container {
    background-color: transparent;
}

/* Product Page Compatibility Badge */
.ymm-compatibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background-color: #f8f8f8;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.ymm-compatibility-badge .ymm-check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.ymm-compatibility-badge .ymm-vehicle-name {
    color: #4CAF50;
    font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ymm-compatibility-badge {
        font-size: 14px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .ymm-compatibility-badge .ymm-check-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   Buyer Guide Styles (v5.1)
   =================================== */

.buyer-guide-wrapper {
    margin: 30px 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.buyer-guide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #f8f8f8;
    border-bottom: 2px solid #ddd;
}

.buyer-guide-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.buyer-guide-header .btn-find-blade {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFDE00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.buyer-guide-header .btn-find-blade:hover {
    background-color: #e0c400;
}

/* Loading State */
.buyer-guide-loading {
    text-align: center;
    padding: 60px 20px;
}

.buyer-guide-loading p {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
}

.ymm-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFDE00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error State */
.buyer-guide-error {
    text-align: center;
    padding: 60px 20px;
}

.buyer-guide-error p {
    font-size: 18px;
    color: #999;
}

/* Table Wrapper */
.buyer-guide-content {
    padding: 20px;
}

.buyer-guide-table-wrapper {
    position: relative;
    overflow-x: auto;
    margin-bottom: 20px;
}

/* Table Loading Overlay */
.buyer-guide-table-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(2px);
}

.buyer-guide-table-loading-overlay p {
    margin-top: 15px;
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.buyer-guide-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.buyer-guide-table thead th {
    background-color: #E8E8E8;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    padding: 12px 15px;
    border: 1px solid #ccc;
    white-space: nowrap;
}

.buyer-guide-table tbody td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    vertical-align: top;
}

.buyer-guide-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.buyer-guide-table tbody tr:hover {
    background-color: #f0f0f0;
}

.buyer-guide-table tbody td.fitment-exception-cell {
    max-width: 250px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
}

.buyer-guide-table tbody td.fitment-exception-cell a {
    color: #0066cc;
    text-decoration: underline;
    word-break: break-all;
}

.buyer-guide-table tbody td.fitment-exception-cell a:hover {
    color: #004499;
    text-decoration: none;
}

/* Pagination */
.buyer-guide-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.buyer-guide-pagination button {
    padding: 8px 16px;
    background-color: #FFDE00;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buyer-guide-pagination button:hover:not(:disabled) {
    background-color: #e0c400;
}

.buyer-guide-pagination button:disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.buyer-guide-pagination .pagination-info {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.buyer-guide-pagination .pagination-info span {
    font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .buyer-guide-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .buyer-guide-header h3 {
        font-size: 20px;
    }
    
    .buyer-guide-header .btn-find-blade {
        width: 100%;
        text-align: center;
    }
    
    .buyer-guide-pagination {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .buyer-guide-pagination button {
        flex: 1;
        min-width: 100px;
    }
}

@media screen and (max-width: 480px) {
    .buyer-guide-content {
        padding: 15px;
    }
    
    .buyer-guide-table thead th,
    .buyer-guide-table tbody td {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .buyer-guide-pagination {
        flex-direction: column;
    }
    
    .buyer-guide-pagination button {
        width: 100%;
    }
}

div#tab-buyers-guide {
    max-width: 95%;
}
