/*--------------------------------------------------------------
# Views
--------------------------------------------------------------*/

.views {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    padding: 8px 12px;
    margin-bottom: 25px;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.views i {
    color: #007BFF;
    /* A vibrant blue color */
    margin-right: 8px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.views span {
    font-weight: 500;
    color: #333;
}

.views:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background-color: #e9e9e9;
}

.views:hover i {
    color: #0056b3;
    /* Darker shade on hover */
}

/*--------------------------------------------------------------
# Coupon
--------------------------------------------------------------*/
.coupon-card {
    border-radius: 10px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
    background-color: #DA1A36;
    padding: 15px 20px;
    position: relative;
    margin-bottom: 20px;
}

.coupon-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-card::after,
.coupon-card::before {
    position: absolute;
    content: "";
    height: 30px;
    border-radius: 30px;
    z-index: 1;
    top: 65px;
    background-color: #fff;
    width: 30px;
}

.coupon-card::after {
    right: -15px;
}

.coupon-card::before {
    left: -15px;
}

.coupon-img i {
    color: #fff;
}

.coupon-vertical {
    border-left: 3px dotted #fff;
    height: 60px;
    position: absolute;
    left: 33%;
}

.coupon-content h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 0;
}

.coupon-content h3 span {
    font-size: 16px;
}

.coupon-card small {
    color: #ffffffad;
}

.coupon-content h4 {
    font-size: 14px;
    color: #fafafa;
    text-transform: uppercase;
    margin-bottom: 0;
}

.coupon-content p {
    font-size: 14px;
    color: #ffffffad;
    margin-bottom: 0;
}

.coupon-copy-button {
    margin-top: 10px;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    position: relative;
}

.coupon-copy-button input {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    outline: none !important;
    font-size: 15px;
    border-radius: 0 !important;
}

.coupon-copy-button button {
    position: absolute;
    top: 2.4px;
    right: 2.4px;
    height: initial;
    border-radius: 2.5px;
    padding: 0 20px;
    background: #DA1A36;
    color: #fff;
    border: 1px solid transparent;
}

/*--------------------------------------------------------------
## Whatsapp Button
--------------------------------------------------------------*/
.whatsapp-button {
    display: inline-block;
    background-color: #25d366;
    /* WhatsApp green */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: #fff !important;
}

/*--------------------------------------------------------------
# Custom Select
--------------------------------------------------------------*/
/*the container must be positioned relative:*/
.raspberrypibd-custom-select {
    position: relative;
    width: 220px;
}

.raspberrypibd-custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: #fff;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 20px;
    right: 15px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #333 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #333 transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
    padding: 10px 16px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border: 1px solid #ddd;
}

.select-items div {
    border-top: 1px solid #fafafa;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    color: #fff;
}

.float-r {
    float: right;
}

.float-l {
    float: left;
}

/*--------------------------------------------------------------
## Loader
--------------------------------------------------------------*/

.loader-rel {
    position: relative;
}

.loader {
    position: absolute;
    right: 47.7%;
    border: 5px solid;
    border-radius: 50%;
    border-top: 5px solid #f3f3f3 !important;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 0.8s linear infinite;
    /* Safari */
    animation: spin 0.8s linear infinite;
    display: none;
    margin: 20px 0;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
## Section Title
--------------------------------------------------------------*/
.section-title h1 {
    font-weight: bold;
}

.section-title p {
    margin-top: 20px
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
.banner-extra-pad {
    padding-top: 250px;
}

.breadcrumb-extra-pad {
    padding-top: 180px !important;
}

.banner {
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    padding: 140px 0 120px;
    text-align: center;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.banner:after {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.6);
    right: 0;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-content #search {
    position: relative;
}

.banner-content {
    margin-bottom: 70px;
}

.banner-content p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 0;
    font-weight: 300;
}

.banner .raspberrypibd-product-search-form {
    margin-top: 70px;
    width: 70%;
    float: left;
}

.banner-slide {
    overflow: hidden;
    border-radius: 20px;
}

/* Style for Arrows */
.banner-slider .slick-arrow {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
}

.banner-slider .slick-prev {
    left: 40px;
}

.banner-slider .slick-next {
    right: 40px;
}

.banner-slider .slick-dots li {
    margin-right: 0;
}

.banner-slider .slick-dots li button:before {
    content: '';
}

.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
    display: none;
}

/* Style for Dots */
.banner-slider .slick-dots {
    bottom: 40px;
}

.banner-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
}

.banner-slider .slick-dots {
    background: rgb(221 221 221 / 80%);
    width: fit-content;
    padding: 0 10px;
    border-radius: 10px;
    margin: 0 auto;
    left: 0;
    right: 0;
    position: absolute;
    text-align: center;
}

.brands_form {
    text-align: center;
}

.brands_form form {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    display: inline-block;
}

.brands_form ul {
    margin-bottom: 0;
}

.brands_form select {
    width: 220px;
}

.brands_form input[type="submit"] {
    width: 150px;
    height: 46px;
    border-radius: 0;
}

.white-text-color .banner-content h1,
.white-text-color .banner-content p,
.white-text-color .banner-content h6 {
    color: #fff;
}

.raspberrypibd-product-search-form {
    margin: 0 auto;
    border-radius: 50px;
    z-index: 0;
    border: 1px solid #ccc;
}

.raspberrypibd-search-btn {
    position: absolute;
    height: 60px;
    right: 0;
    top: 0;
    z-index: 1000;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50px;
    width: 140px;
    text-align: center;
    border: 3px solid #fff;
}


.raspberrypibd-search-btn input[type="submit"] {
    border: none;
    background: transparent;
    position: relative;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 100;
    padding: 0;
}

.raspberrypibd-search-fields {
    position: relative;
    display: inline-block;
    width: 70%;
    vertical-align: top;
    color: #fff;
}

.raspberrypibd-download-cat-filter {
    background: transparent !important;
    float: left;
    width: 30%;
    border-right: 1px solid #fff;
}

/*Blog*/
.blog-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.blog-thumb {
    overflow: hidden;
    position: relative;
}

.blog-thumb .date {
    padding: 1px 10px;
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    border-radius: 20px;
}

.blog-thumb img {
    width: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 1s linear;
    -o-transition: 1s linear;
    transition: 1s linear;
}

.blog-item:hover .blog-thumb img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-meta img {
    width: 40px;
    border-radius: 50% !important;
}


.blog-meta span {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
}

.blog-content {
    padding: 45px 35px;
}

.blog-content a {
    text-transform: capitalize;
    color: #333;
}

.blog-content h4 {
    font-weight: 500;
    font-size: 20px;
    margin-top: 15px;
    line-height: 32px;
    margin-bottom: 0;
}

.blog-content p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## Counter
--------------------------------------------------------------*/
.counter-item .counter-icon i {
    border-radius: 50%;
    font-size: 36px;
    padding: 15px;
    height: 80px;
    width: 80px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 25px;
}

.counter-item h2 {
    font-size: 52px;
}

/*--------------------------------------------------------------
## InfoBox
--------------------------------------------------------------*/

.infobox-item {
    padding: 50px 30px;
    border-radius: 10px;
}

.infobox-item i {
    border-radius: 50%;
    font-size: 24px;
    padding: 15px;
    height: 70px;
    width: 70px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 25px;
}

.infobox-item h5 {
    margin-bottom: 15px;
    font-weight: 500;
}

.infobox-item p {
    font-weight: 300;
    font-size: 17px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## IconBox
--------------------------------------------------------------*/
.iconbox-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.iconbox-item div:first-child {
    width: 25%;
    margin-right: 15px;
}

.iconbox-item div:last-child {
    width: 75%;
}

.iconbox-item i {
    font-size: 45px;
    -webkit-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}

.iconbox-item:hover i {
    font-size: 48px;
}

.iconbox-item h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 5px;
}

.iconbox-item p {
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## Partner
--------------------------------------------------------------*/

.partner img {
    padding: 0 15px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.partner img:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

/*--------------------------------------------------------------
## Category item
--------------------------------------------------------------*/
.category-item {
    overflow: hidden;
    border-radius: 10px;
    display: block;
    background: #fff;
    border: 1px solid #ddd;
}

.category-item:hover h5 {
    color: #fff;
}

.category-item-img {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 265px;
    height: 265px;
    padding: 45px;
}

.category-item h5 {
    background: #efefef;
    padding: 30px 0;
    margin-bottom: 0;
}

.category-item-2 {
    border-radius: 10px;
    border: 1px solid #f1f1f1;
    background: #fff;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.category-item-2>a {
    width: 40%;
}

.category-item-2>a>img {
    padding-right: 25px;
}

.category-item-2>div {
    width: 60%;
}

.category-item-2>div h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.category-item-2>div h5 a {
    color: #333;
}

.category-item-2>div ul li a {
    color: #808080;
    font-size: 14px;
}

.category-item-2>div>a {
    font-size: 14px;
    font-weight: 500;
}

/*--------------------------------------------------------------
## Accordion
--------------------------------------------------------------*/
.raspberrypibd-accordion-item {
    padding: 20px 30px;
    border-radius: 6px;
    border: 1px solid #ececec;
    background: #fff;
}

.raspberrypibd-accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.raspberrypibd-accordion-item h5 {
    margin: 0 !important;
    font-weight: 500;
    cursor: pointer;
}

.raspberrypibd-accordion-item.active h5 span:nth-child(1) {
    display: none;
}

.raspberrypibd-accordion-item h5 span:nth-child(2) {
    display: none;
}

.raspberrypibd-accordion-item.active h5 span:nth-child(2) {
    display: block;
}

.raspberrypibd-accordion-item h5 span {
    float: right;
}

.raspberrypibd-accordion-item .collapse.show {
    margin-top: 20px;
    padding-top: 20px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    border-top: 1px solid #ddd;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.raspberrypibd-team {
    position: relative;
    padding: 0 45px 55px 0;
}

.raspberrypibd-team img {
    border-radius: 6px !important;
}

.raspberrypibd-team-content {
    position: absolute;
    width: 100%;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(45px, 55px);
    -ms-transform: translate(45px, 55px);
    transform: translate(45px, 55px);
    padding: 25px 0 25px 50px;
    background: #fff;
    -webkit-box-shadow: 5.994px 14.835px 30px 0px rgba(97, 105, 140, 0.1);
    box-shadow: 5.994px 14.835px 30px 0px rgba(97, 105, 140, 0.1);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.raspberrypibd-team:hover .raspberrypibd-team-content {
    -webkit-transform: translate(0px, 55px);
    -ms-transform: translate(0px, 55px);
    transform: translate(0px, 55px);
}

.raspberrypibd-team-social {
    position: absolute;
    width: 45px;
    background: #fff;
    -webkit-box-shadow: 8px 0px 8.6px 1.4px rgba(229, 234, 239, 0.2);
    box-shadow: 8px 0px 8.6px 1.4px rgba(229, 234, 239, 0.2);
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding-left: 10px;
    margin-bottom: 0;
}

.raspberrypibd-team-social li a {
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    margin: 15px 0;
}

.raspberrypibd-team:hover .raspberrypibd-team-social {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

/*--------------------------------------------------------------
## Product Filter
--------------------------------------------------------------*/
.product-filter {
    display: block;
    overflow: hidden;
    margin-bottom: 45px;
}

.product-filter>h4 {
    font-weight: 500;
    float: left;
    margin-bottom: 0;
}

.product-filter ul {
    margin-bottom: 0;
    margin-right: 120px;
}

.product-filter ul li a {
    color: #808080;
    padding: 3px 15px;
    border-radius: 20px;
}

.product-filter ul li.list-inline-item:not(:last-child) {
    margin-right: 0;
}

.product-filter ul li:hover {
    background: #fafafa;
}

.product-filter ul li a.active {
    color: #fff;
}

.product-items .slick-arrow {
    position: absolute;
    right: 15px;
    top: -77px;
    color: #fff;
    border-radius: 50px;
    padding: 8px 15px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.product-items .slick-arrow.fa-chevron-left {
    right: 70px;
}

.product-items .product-item {
    margin: 2px 15px;
}

/*--------------------------------------------------------------
## Product item style 2
--------------------------------------------------------------*/
.product-item.style-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    overflow-y: hidden;
}

.style-2 .product-item-image {
    border-bottom: none;
}

.style-2 .product-item-image img {
    height: 100%;
    max-width: 110px;
}

.style-2 .product-item-content {
    padding: 15px 20px;
}

.style-2 .product-item-content a h5 {
    font-size: 17px;
    font-weight: 400;
}

.style-2 .product-item-content .price {
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    bottom: 15px;
}

.style-2 .product-item-image .onsale {
    font-size: 12px;
    padding: 0 10px;
    top: 4px;
}

.style-2 .woocommerce-product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.style-2 .star-rating {
    margin-bottom: 25px;
    top: 4px;
}

.style-2 .woocommerce-review-link {
    font-size: 12px;
}

.style-2 .star-rating::before,
.style-2 .star-rating span::before {
    font-size: 12px;
}

/*--------------------------------------------------------------
## Testimonial
--------------------------------------------------------------*/

.testimonial-img img {
    width: 250px;
    border-radius: 6% !important;
    border: 5px solid #fff !important;
    margin: 0 auto;
}

.testimonial-content>i {
    margin-bottom: 15px;
    display: inline-block;
    font-size: 50px;
    opacity: 0.2;
}

.flaticon-quotation::before {
    content: "\f109";
    font-size: 37px;
    color: #5580ff;
}

.testimonial-content p {
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.client-info span {
    font-size: 14px;
    display: block;
    margin-top: 10px;
}

.testimonials-nav .slick-arrow {
    position: absolute;
    bottom: -71px;
    left: 0;
    background: transparent;
    padding: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border: 2px solid #d4d4d4;
    color: #808080;
    font-size: 15px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 9;
    border-radius: 50px;
    color: #fff;
}

.testimonials-nav .slick-next {
    left: 65px;
}

.testimonials-nav {
    margin-left: 45px;
    margin-top: -60px;
}

.testimonials-nav .slick-arrow:hover {
    color: #fff
}

.testimonial-wrap {
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 50px;
}

.testimonial-wrap:last-child {
    border-bottom: none;
}

.testimonial-revers-loop>.row:nth-child(2n)>.col-lg-4:first-child {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}


.testi-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.testi-bottom ul li.list-inline-item:not(:last-child) {
    margin-right: 0;
}

.testi-bottom ul li i {
    color: #f2b01e;
}


/*--------------------------------------------------------------
## Ad Banner
--------------------------------------------------------------*/
.adbanner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 50px;
    color: #fff;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
}

.adbanner.horizontal:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(51 51 51 / 60%);
    z-index: -1;
}

.adbanner.vertical:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(51 51 51 / 60%);
    z-index: -1;
}

.adbanner.vertical ul li {
    line-height: 35px;
}

.adbanner h2 {
    line-height: 50px;
}

.adbanner h2,
.adbanner h3 {
    font-weight: bold;
}

.adbanner h2,
.adbanner h3,
.adbanner p,
.adbanner a {
    color: #fff;
}

/* === Playlist Container === */
.yt-playlist-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* === Main Video Player === */
.yt-main-player {
    flex: 2;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.yt-main-player iframe {
    border-radius: 12px;
    width: 100%;
    height: 420px;
    border: none;
}

/* === Video List === */
.yt-video-list {
    flex: 1;
    min-width: 250px;
    max-height: 440px;
    overflow-y: hidden;      /* Hide scrollbar and prevent scrolling by default */
    padding-right: 4px;
    transition: overflow 0.3s ease;
}

/* Show scrollbar and allow scroll on hover */
.yt-video-list:hover {
    overflow-y: auto;
}

/* Customize scrollbar for Firefox */
.yt-video-list:hover {
    scrollbar-width: thin;
    scrollbar-color: #aaa transparent;
}

/* Customize scrollbar for Webkit browsers (Chrome, Edge, Safari) */
.yt-video-list:hover::-webkit-scrollbar {
    width: 8px;
}

.yt-video-list:hover::-webkit-scrollbar-track {
    background: transparent;
}

.yt-video-list:hover::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.yt-video-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* === Individual Video Card === */
.yt-video-item {
    margin-bottom: 14px;
    border-radius: 10px;
    background-color: #fafafa;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.yt-video-item:hover {
    background-color: #f0f4ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* === Link Wrapper === */
.yt-video-link {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 14px;
    text-decoration: none;
    color: #222;
}

/* === Thumbnail Image === */
.yt-thumb {
    width: 100px;
    height: 56px!important;
    object-fit: cover;
    border-radius: 8px!important;
    flex-shrink: 0;
}

/* === Title Text === */
.yt-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
    transition: color 0.2s;
}

.yt-video-item:hover .yt-title {
    color: #0073e6;
}

/* === Active Video Highlight === */

.yt-video-item.active .yt-title {
    color: #fff;
}

/*--------------------------------------------------------------
# Contact form
--------------------------------------------------------------*/
.wpcf7 p {
    margin-bottom: 0
}

.wpcf7 input {
    margin-bottom: 20px
}

.wpcf7 textarea {
    height: 160px;
}

.wpcf7 input[type=submit] {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 60px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1200px) {
    .banner h1 {
        font-size: 52px;
    }

    .partner {
        margin-bottom: 50px;
    }

    .partner {
        text-align: center;
    }
}

@media (max-width: 1024px) {}


@media (max-width: 991px) {

    .select-items div,
    .select-selected {
        margin-bottom: 15px;
    }

    .category-item-2 {
        display: block;
    }

    .category-item-2>a {
        width: 100%;
    }

    .category-item-2>a>img {
        padding-right: 0;
        margin-bottom: 20px;

    }

    .category-item-2>div {
        width: 100%;
    }

}

@media (max-width: 768px) {
    .banner {
        text-align: center;
    }

    .banner h1 {
        font-size: 42px;
    }

    .banner .raspberrypibd-product-search-form {
        width: 100%;
        float: none;
    }

    .banner-slider .slick-arrow {
        font-size: 15px;
        width: 30px;
        height: 30px;
    }

    .banner-slider .slick-prev {
        left: 20px;
    }

    .banner-slider .slick-next {
        right: 20px;
    }

    .banner-slider .slick-dots {
        bottom: 20px;
    }

    .banner-slider .slick-dots {
        background: unset;
    }

    .products-filter-area .woocommerce-ordering {
        margin-top: 20px;
    }

    .products-filter-area .woocommerce-ordering,
    .products-filter-area p {
        text-align: center !important;
    }

    .category-item-img {
        width: 120px;
        height: 120px;
        padding: 15px;
    }

}


@media (max-width: 540px) {
    .partner img {
        width: 200px;
    }
}


@media (max-width: 320px) {}