/* Slider Styles */
.slider-container {
    padding: 20px 0;
}

.slider-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-main {
    width: 80%;
    /* col-md-8 equivalent */
    max-width: 850px;
}

.side-space {
    width: 20%;
    /* 2 spaces total = 33.33% remaining */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Amazon-style Slider */
.amazon-slider {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 4px;
    max-width: 400px;
}

.slide-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.slide-btn {
    background: #ff9900;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.slide-btn:hover {
    background: #e68a00;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #ff9900;
}

/* Side Banner Ads (Amazon-style) */
.side-banner {
    background: white;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.side-banner img {
    width: 100%;
    height: 161px;
    object-fit: cover;
    margin-bottom: 8px;
    border-radius: 3px;
}

.side-banner h4 {
    font-size: 14px;
    color: #111;
    margin-bottom: 8px;
}

.side-banner p {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

.banner-btn {
    background: #232f3e;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-btn:hover {
    background: #37475a;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide img {
        height: 350px;
    }

    .slide-content {
        bottom: 30px;
        left: 30px;
        padding: 15px;
    }

    .slide-content h3 {
        font-size: 20px;
    }
}


@media (max-width: 991px) {
    .slider-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .slider-main {
        width: 100%;
    }

    .side-space {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .side-banner {
        flex: 0 0 48%;
    }

    .slide img {
        height: 300px;
    }
}/* Add these styles to your existing CSS */

/* Mobile View Side Banners Grid */
@media (max-width: 991px) {
    .slider-wrapper {
        flex-direction: column;
        gap: 5px;
    }

    .slider-main {
        width: 100%;
        order: 1;
        /* Ensure slider comes first */
    }

    .side-space {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        order: 2;
        /* Ensure banners come after slider */
        /* margin-top: 20px; */
        display: none;
        /* Hide by default on mobile */
    }

    .side-banner {
        flex: 0 0 calc(50% - 15px);
        /* 2 columns with gap */
        margin-bottom: 15px;
    }
}

/* Show side banners in grid layout below slider on mobile */
@media (max-width: 991px) {
    .side-space.mobile-grid {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        margin-top: 20px;
    }

    .side-space.mobile-grid .side-banner {
        flex: 0 0 calc(50% - 15px);
        /* 2 columns */
        max-width: calc(50% - 15px);
    }

    /* Hide original side spaces on mobile */
    .left-space,
    .right-space {
        display: none !important;
    }

    .slider-container {
        padding: 10px 0;
        /* Reduced from 20px */
    }

    .slider-wrapper {
        gap: 10px;
        /* Reduced from 20px */
    }

    .side-space.mobile-grid {
        margin-top: 15px;
        /* Reduced from 30px */
        gap: 10px;
        /* Reduced from 15px */
    }

    .side-banner {
        padding: 10px;
        /* Reduced from 15px */
        margin-bottom: 10px;
        /* Reduced from 15px */
    }
}

/* Tablet view adjustments */
@media (max-width: 768px) {
    .side-space.mobile-grid .side-banner {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
        .slider-container {
            padding: 8px 0;
            /* Further reduction */
        }

        .slider-wrapper {
            gap: 10px;
        }

        .side-space.mobile-grid {
            margin-top: 12px;
            gap: 8px;
        }

        .slide-content {
            padding: 12px;
            /* Reduced from 15px */
        }

        .side-banner {
            padding: 8px;
            margin-bottom: 8px;
        }
}

/* Small mobile adjustments */
@media (max-width: 576px) {
    .side-space.mobile-grid {
        gap: 5px;
    }

    .side-space.mobile-grid .side-banner {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

        .slider-container {
            padding: 5px 0;
            /* Minimal padding for small screens */
        }

        .slider-wrapper {
            gap: 8px;
        }

        .side-space.mobile-grid {
            margin-top: 10px;
            gap: 5px;
        }

        .slide-content {
            padding: 10px;
        }

        .side-banner {
            padding: 5px;
            margin-bottom: 5px;
        }

        .slider-dots {
            margin-top: 10px;
            /* Reduced from 15px */
            margin-bottom: 10px;
            /* Reduced from 15px */
        }
}

/* Ensure PC view remains unchanged */
@media (min-width: 992px) {
    .mobile-grid {
        display: none !important;
    }

    .left-space,
    .right-space {
        display: flex !important;
    }

         .slider-container {
             padding: 20px 0;
             /* Original value */
         }

         .slider-wrapper {
             gap: 10px;
             /* Original value */
         }

         .slide-content {
             padding: 20px;
             /* Original value */
         }

         .side-banner {
             padding: 15px;
             /* Original value */
         }

         .slider-dots {
             margin-top: 15px;
             /* Original value */
             margin-bottom: 15px;
             /* Original value */
         }
}




















/* Amazon Cards Styles */
/* ============================================
   AMAZON STYLE HOME PAGE CARDS - FULL STYLES
   ============================================ */
/* Amazon Style Gift Cards - home.css */
/* Enhanced Amazon Style Gift Cards - Premium Version */


/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Main Container */
.row.g-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Amazon Cards Section - Each section takes 25% width for 4 columns */
.box-cards-section {
    flex: 0 0 calc(25% - 15px);
    min-width: 300px;
    margin-bottom: 0;
    font-family: 'Amazon Ember', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Single Amazon Card Styling */
.box-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 10px 15px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.box-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9900, #ffac31, #ffd814);
    z-index: 1;
}

.box-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 12px 20px rgba(0, 0, 0, 0.08),
        0 20px 30px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 153, 0, 0.2);
}

/* Card Header */
.box-card-header {
    padding: 10px 10px 6px;
    border-bottom: 1px solid #f0f2f2;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.box-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #0F1111;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.2px;
    position: relative;
    padding-left: 12px;
}

.box-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #ff9900, #ffac31);
    border-radius: 2px;
}

/* Card Body */
.box-card-body {
    padding: 16px 20px;
    flex-grow: 1;
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

/* Grid Rows for Quadrants */
.box-grid-row {
    display: flex;
    margin-bottom: 12px;
    gap: 12px;
}

.box-grid-row:last-child {
    margin-bottom: 0;
}

/* Individual Quadrants */
.box-quadrant-container {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 1px solid #e7e7e7;
    position: relative;
}

.box-quadrant-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.box-quadrant-container:hover {
    transform: translateY(-4px);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.08),
        0 3px 6px rgba(0, 0, 0, 0.05);
    border-color: #ff9900;
}

.box-quadrant-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.box-image-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(45deg, #f8f8f8, #f0f0f0);
    position: relative;
}

.box-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.box-quadrant-link:hover .box-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.amazon-image-label {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    padding: 8px 8px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.amazon-label-text {
    font-size: 10px;
    font-weight: 450;
    color: #0F1111;
    line-height: 1.3;
    display: block;
    position: relative;
    padding: 4px 0;
}

.amazon-label-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9900, #ffac31);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.box-quadrant-link:hover .amazon-label-text::after {
    width: 40px;
}

/* Price-specific styling */
.amazon-left-quadrant .amazon-label-text,
.box-quadrant-container[class*="left-quadrant"] .amazon-label-text {
    color: #b12704;
}

.amazon-right-quadrant .amazon-label-text,
.box-quadrant-container.amazon-right-quadrant .amazon-label-text {
    color: #007185;
}

/* Card Footer */
.box-card-footer {
    padding: 18px 20px;
    border-top: 1px solid #f0f2f2;
    background: linear-gradient(to bottom, #fafafa, #f5f5f5);
    position: relative;
}

.amazon-footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #007185;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #d5d9d9;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.amazon-footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 153, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.amazon-footer-link:hover {
    color: #c45500;
    background: #fff;
    border-color: #ff9900;
    box-shadow: 0 2px 5px rgba(255, 153, 0, 0.2);
    transform: translateY(-1px);
}

.amazon-footer-link:hover::before {
    left: 100%;
}

.amazon-link-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.amazon-link-text::after {
    content: "→";
    font-weight: 700;
    font-size: 16px;
    color: #ff9900;
    transition: transform 0.3s ease, color 0.3s ease;
}

.amazon-footer-link:hover .amazon-link-text::after {
    transform: translateX(3px);
    color: #c45500;
}

.amazon-link-full,
.amazon-link-cut {
    display: inline;
}

/* Special styling for the "Deals" quadrant */
.box-quadrant-container:has(.amazon-label-text:contains("Deals")) {
    background: linear-gradient(135deg, #fff9f0, #fff);
    border-color: #ffe6b3;
}

.box-quadrant-container:has(.amazon-label-text:contains("Deals")) .amazon-label-text {
    color: #b12704;
    font-weight: 700;
}

.box-quadrant-container:has(.amazon-label-text:contains("Deals")) .box-image-container::before {
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 153, 0, 0.1));
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1200px and up) - 4 cards per row */
@media (min-width: 1200px) {
    .row.g-2 {
        padding: 20px;
    }


}

/* Desktop (992px to 1199px) - 4 cards per row, smaller gap */
@media (min-width: 992px) and (max-width: 1199px) {
    .row.g-2 {
        gap: 15px;
        padding: 15px;
    }

    .box-card-header {
        padding: 18px 18px 12px;
    }

    .box-card-title {
        font-size: 19px;
    }

    .box-card-body {
        padding: 14px 18px;
    }

    .box-image-container {
        height: 130px;
    }

    .amazon-image-label {
        padding: 12px 10px;
    }

    .amazon-label-text {
        font-size: 14px;
    }
}

/* Tablet Landscape (768px to 991px) - 2 cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    .row.g-2 {
        gap: 20px;
        padding: 20px;
    }

    .box-card {
        border-radius: 10px;
    }

    .box-card-header {
        padding: 16px 16px 10px;
    }

    .box-card-title {
        font-size: 18px;
    }

    .box-card-title::before {
        height: 20px;
    }

    .box-card-body {
        padding: 14px 16px;
    }

    .box-grid-row {
        margin-bottom: 10px;
        gap: 10px;
    }

    .box-image-container {
        height: 120px;
    }

    .amazon-image-label {
        padding: 12px 10px;
    }

    .amazon-label-text {
        font-size: 14px;
    }

    .box-card-footer {
        padding: 16px 16px;
    }

    .amazon-footer-link {
        padding: 7px 14px;
        font-size: 13px;
    }
}

/* Tablet Portrait (576px to 767px) - 2 cards per row, smaller */
@media (min-width: 576px) and (max-width: 767px) {
    .row.g-2 {
        gap: 15px;
        padding: 15px;
    }

    .box-card-header {
        padding: 14px 14px 8px;
    }

    .box-card-title {
        font-size: 17px;
        padding-left: 10px;
    }

    .box-card-title::before {
        width: 3px;
        height: 18px;
    }

    .box-card-body {
        padding: 12px 14px;
    }

    .box-grid-row {
        margin-bottom: 8px;
        gap: 8px;
    }

    .amboxazon-image-container {
        height: 110px;
    }

    .amazon-image-label {
        padding: 10px 8px;
    }

    .amazon-label-text {
        font-size: 13px;
    }

    .box-card-footer {
        padding: 14px 14px;
    }

    .amazon-footer-link {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Mobile (up to 575px) - 1 card per row */
@media (max-width: 575px) {
    .row.g-2 {
        gap: 15px;
        padding: 15px;
        flex-direction: column;
    }

    .box-card {
        border-radius: 8px;
        max-width: 400px;
        margin: 0 auto;
    }

    .box-card-header {
        padding: 12px 12px 8px;
    }

    .box-card-title {
        font-size: 16px;
        padding-left: 8px;
    }

    .box-card-title::before {
        width: 3px;
        height: 16px;
    }

    .box-card-body {
        padding: 10px 12px;
    }

    .box-grid-row {
        margin-bottom: 6px;
        gap: 6px;
        flex-direction: column;
    }

    .box-quadrant-container {
        width: 100%;
    }

    .box-image-container {
        height: 150px;
    }

    .amazon-image-label {
        padding: 10px 8px;
    }

    .amazon-label-text {
        font-size: 14px;
    }

    .box-card-footer {
        padding: 12px 12px;
    }

    .amazon-footer-link {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Extra Small Mobile (320px to 374px) */
@media (max-width: 374px) {
    .row.g-2 {
        padding: 10px;
        gap: 10px;
    }

    .box-card-header {
        padding: 10px 10px 6px;
    }

    .box-card-title {
        font-size: 15px;
    }

    .box-card-body {
        padding: 8px 10px;
    }

    .box-image-container {
        height: 130px;
    }

    .amazon-image-label {
        padding: 8px 6px;
    }

    .amazon-label-text {
        font-size: 13px;
    }

    .box-card-footer {
        padding: 10px 10px;
    }
}

/* ============================================
   ACCESSIBILITY & UTILITIES
   ============================================ */

.amaboxzon-quadrant-link:focus {
    outline: 2px solid #ff9900;
    outline-offset: 2px;
    border-radius: 8px;
}

.box-quadrant-container:active {
    transform: translateY(-1px);
}

.box-quadrant-link:focus-visible {
    outline: 2px solid #ff9900;
    outline-offset: 2px;
}

/* Loading State Animation */
.amazon-image-container.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Price Styling Data Attributes */
.box-quadrant-container .amazon-label-text[data-price="under-10"],
.box-quadrant-container .amazon-label-text[data-price="under-25"],
.box-quadrant-container .amazon-label-text[data-price="under-50"] {
    color: #b12704;
    font-weight: 600;
}

.box-quadrant-container .amazon-label-text[data-deals="deals"] {
    color: #007185;
    font-weight: 600;
}

/* Print Styles */
@media print {
    .row.g-2 {
        display: block;
    }

    .box-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .box-card:hover {
        transform: none;
        box-shadow: none;
    }

    .box-quadrant-container:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Section Title (if you want to add it later) */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0F1111;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9900, #ffac31);
    border-radius: 2px;
}


.prod-caption-small{
    font-size: 11px;
    font-weight: 400;
    color: #0F1111;
    font-family: 'Amazon Ember', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}











/* =========================
   MOBILE FIX (IMPORTANT)
========================= */
@media (max-width: 576px) {

    /* Grid full width */
    .box-cards-grid.d-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Card full width & center */
    .box-card {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Row remains row (remove flex-direction: column) */
    .box-grid-row {
        flex-direction: row;
        /* <-- change from column to row */
        flex-wrap: wrap;
        /* <-- allow wrapping */
        gap: 12px;
    }

    /* Bigger image like upper design */
    .box-image-container {
        height: 150px;
    }

    /* Text readable */
    .amazon-label-text {
        font-size: 14px;
    }

    .box-card-title {
        font-size: 16px;
    }
}

.box-cards-sec {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}

.pt-20 {
    padding-top: 20px;
}

.box-cards-grid.d-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.box-grid-row {
    display: flex;
    gap: 10px;
}

.box-quadrant-container {
    flex: 1;
}

@media (max-width: 992px) {
    .box-cards-grid.d-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .box-cards-grid.d-grid {
        grid-template-columns: 1fr;
    }
}










/* EXTRA IMAGE SECTION RESPONSIVE */
.extra-image-row {
    justify-content: center;
    /* PC default: center */
}

.extra-image-item {
    display: block;
    min-width: 90px;
    /* ensures proper width */
    text-decoration: none;
    /* remove underline */
    color: inherit;
    /* inherit text color */
}

/* Mobile view */
@media (max-width: 767px) {
    .extra-image-row {
        justify-content: flex-start !important;
        /* left-align */
        flex-wrap: wrap;
        /* allow wrap */
        overflow-x: hidden;
    }

    .extra-image-item {
        flex: 0 0 48%;
        /* 2 items per row */
        max-width: 48%;
        margin-right: 4%;
        /* spacing */
        margin-bottom: 10px;
    }
}

/* Optional: hide scrollbar but still scrollable horizontally */
.extra-image-row::-webkit-scrollbar {
    height: 6px;
}

.extra-image-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.extra-image-row::-webkit-scrollbar-track {
    background: transparent;
}
