.mysearchcontainer {
    position: relative;
    width: 300px !important;
    padding: 2px;
    border-radius: 25px;
    background-color: var(--bs-white);
}

.mysearchbar {
    width: 300px !important;
    border: solid 1px var(--border-color);
    box-shadow: none !important;
    padding: 9px 43px 9px 15px;
    border-radius: 20px !important;
}

.sliding-text{
    width: 600px;
    padding-inline: 20px;
    border-right: 1px solid white;
    border-left: 1px solid white;
}


.sliding-text-marq{
        color: white;
    margin-top: 5px;
    font-size: 17px;
}



@media (min-width: 1200px) {
       .company-logo {
        margin-right:120px;
    }
}


.about-nav{
    justify-content: flex-end !important;
}

.faq-nav {
        justify-content: flex-start !important;
}

.wrap-categories.style-2 {
    justify-content: unset;
    flex-wrap: nowrap;
    gap: 30px !important;
}

.has-boxshadow {
    padding: 25px 0px;
    margin: -25px 0px;
}

.wrap-categories {
    display: flex;
}

.categories-item:not(.categories-item.style-3) {
    text-align: center;
    padding: 20px 20px 18px;
    border-radius: 8px;
    border: 1px solid var(--line);
    transition: 0.3s;
     visibility: visible;
    animation-delay: 0s;
    animation-name: fadeInUp;
}

.categories-item:not(.categories-item.style-3) .icon {
    font-size: 68px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.wrap-categories.style-2 .categories-item {
    width: 234px;
    flex-shrink: 0;
}


/* Base styles for all screens */
.categories-container {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.categories-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 0; /* Prevent flex items from overflowing */
}

.categories-item .icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--theme-color);
}

/* Mobile styles (horizontal scroll) */
@media (max-width: 767px) {
    .categories-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding: 10px 15px;
        margin: 0 -15px;
    }
    
    .categories-item {
        flex: 0 0 150px; /* Fixed width for mobile items */
        scroll-snap-align: start;
    }
    
    /* Hide scrollbar but keep functionality */
    .categories-container::-webkit-scrollbar {
        display: none;
    }
}

/* Desktop styles (grid layout) */
@media (min-width: 768px) {
    .categories-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        overflow-x: visible;
    }
    
    .categories-item {
        flex: none;
    }
}



/* Three Image Banner Layout */
.three-image-banner {
    padding: 20px 0;
}

.three-image-banner .container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.left-banner {
    grid-column: 1;
}

.right-banners {
    grid-column: 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.banner-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-5px);
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-item:hover img {
    transform: scale(1.03);
}

.banner-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: white;
    z-index: 2;
}

.banner-content h3,
.banner-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 15px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white {
    background: white;
    color: #333;
}

.btn-white:hover {
    background: #f1f1f1;
}

.btn-line {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-line:hover {
    background: white;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .banner-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .banner-content h3,
    .banner-content h4 {
        font-size: 20px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .btn {
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .right-banners {
        grid-column: 1;
        grid-template-rows: auto auto;
    }
    
    .left-banner,
    .right-banners .banner-item {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .banner-content h3,
    .banner-content h4 {
        font-size: 18px;
    }
    
    .banner-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}







/*.dual-banner-section {*/
/*    padding: 30px 0;*/
/*}*/

/*.dual-banner-section .container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 0 15px;*/
/*}*/

/*.banner-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: 20px;*/
/*}*/

/*.banner-card {*/
/*    position: relative;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
/*}*/

/*.banner-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 10px 20px rgba(0,0,0,0.1);*/
/*}*/

/*.banner-link {*/
/*    display: block;*/
/*    height: 100%;*/
/*    text-decoration: none;*/
/*    color: inherit;*/
/*}*/

/*.banner-image {*/
/*    position: relative;*/
    padding-bottom: 70%; /* Aspect ratio control */
/*    overflow: hidden;*/
/*}*/

/*.banner-image img {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.5s ease;*/
/*}*/

/*.banner-card:hover .banner-image img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.banner-content {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    padding: 25px;*/
/*    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);*/
/*    color: white;*/
/*    z-index: 2;*/
/*}*/

/*.banner-title {*/
/*    font-size: 22px;*/
/*    font-weight: 600;*/
/*    margin-bottom: 8px;*/
/*    color: white;*/
/*    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);*/
/*}*/

/*.banner-description {*/
/*    font-size: 15px;*/
/*    margin-bottom: 15px;*/
/*    opacity: 0.9;*/
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);*/
/*}*/

/*.banner-button {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    gap: 5px;*/
/*    padding: 10px 20px;*/
/*    background-color: white;*/
/*    color: #333;*/
/*    border-radius: 4px;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.banner-card:hover .banner-button {*/
/*    background-color: #f1f1f1;*/
/*}*/


/*@media (max-width: 992px) {*/
/*    .banner-content {*/
/*        padding: 20px;*/
/*    }*/
    
/*    .banner-title {*/
/*        font-size: 20px;*/
/*    }*/
    
/*    .banner-description {*/
/*        font-size: 14px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .banner-grid {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 15px;*/
/*    }*/
    
/*    .banner-image {*/
/*        padding-bottom: 60%; */
/*    }*/
    
/*    .banner-content {*/
/*        padding: 15px;*/
/*    }*/
    
/*    .banner-title {*/
/*        font-size: 18px;*/
/*    }*/
    
/*    .banner-button {*/
/*        padding: 8px 16px;*/
/*        font-size: 13px;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .dual-banner-section {*/
/*        padding: 20px 0;*/
/*    }*/
    
/*    .banner-title {*/
/*        font-size: 16px;*/
/*    }*/
    
/*    .banner-description {*/
/*        font-size: 13px;*/
/*        margin-bottom: 10px;*/
/*    }*/
    
/*    .banner-button {*/
/*        padding: 7px 14px;*/
/*    }*/
/*}*/



/* Updated Dual Banner Section CSS */
.dual-banner-section {
    padding: 30px 0;
    overflow: hidden;
}

.dual-banner-section .container-fluid {
    width: 100%;
    margin: 0;
    padding: 0;
}

.banner-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    transition: transform 0.3s ease;
}

.banner-card:hover {
    transform: translateY(-5px);
}

.banner-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-card:hover .banner-image img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.banner-description {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background-color: white;
    color: #333;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.banner-card:hover .banner-button {
    background-color: #f1f1f1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .banner-content {
        padding: 20px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .banner-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .banner-card {
        min-height: 250px;
    }
    
    .banner-content {
        padding: 15px;
    }
    
    .banner-title {
        font-size: 18px;
    }
    
    .banner-button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .dual-banner-section {
        padding: 15px 0;
    }
    
    .banner-card {
        min-height: 200px;
    }
    
    .banner-title {
        font-size: 16px;
    }
    
    .banner-description {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .banner-button {
        padding: 7px 14px;
    }
}










/* Top Picks Section Styles */
.top-picks-section {
    padding: 40px 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

/* Product Card Styles */
.product-card-new {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    background: #fff;
}

.product-card-new:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s ease;
}

.product-image .primary-image {
    opacity: 1;
}

.product-image .secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card-new:hover .primary-image {
    opacity: 0;
}

.product-card-new:hover .secondary-image {
    opacity: 1;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card-new:hover .product-actions {
    opacity: 1;
}

.product-actions button {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    color: #333;
    margin-bottom: 8px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-actions button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.product-content {
    padding: 20px;
}

.product-title-home {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-title-home a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-title-home a:hover {
    color: var(--primary-color);
}

.product-price {
    margin-bottom: 12px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.product-colors {
    display: flex;
    margin-bottom: 15px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.color-swatch.active {
    border-color: #333;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background-color: #333;
}

/* Swiper Slider Styles */
.top-picks-slider {
    padding: 10px;
    position: relative;
    width: 100%;
}

.swiper-slide {
    width: auto; /* Let swiper handle the width */
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #000; /* Arrow color */
    background: rgba(255,255,255,0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: #fff;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .top-picks-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .product-content {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .product-title-home {
        font-size: 15px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .old-price {
        font-size: 13px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 22px;
    }
    
    .product-card-new {
        margin-bottom: 20px;
    }
    
    .product-actions {
        opacity: 1;
        flex-direction: row;
        top: auto;
        bottom: 15px;
        right: 15px;
    }
    
    .product-actions button {
        margin-bottom: 0;
        margin-right: 8px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
