﻿/*
Default Style
============================*/
@import url("../../../../css2");

body {
    font-size: 15px;
    font-family: "Rubik", sans-serif;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 220, 196, 0.45) 0%, rgba(255, 220, 196, 0) 45%),
        radial-gradient(circle at 90% 8%, rgba(186, 224, 255, 0.45) 0%, rgba(186, 224, 255, 0) 45%),
        #f8fafc !important;
}

.trackorder-scrollable-section {
    max-height: 400px; /* Adjust as needed */
    overflow-y: auto;
}

/* WebKit Browsers (Chrome, Safari, Edge) */
.trackorder-scrollable-section::-webkit-scrollbar {
    width: 8px; /* Thin scrollbar */
}

.trackorder-scrollable-section::-webkit-scrollbar-thumb {
    background: #d1d1d1; /* Light gray thumb */
    border-radius: 10px;
}

.trackorder-scrollable-section::-webkit-scrollbar-thumb:hover {
    background: #bbbbbb; /* Slightly darker on hover */
}

.trackorder-scrollable-section::-webkit-scrollbar-track {
    background: #f9f9f9; /* Very light track */
    border-radius: 10px;
}

/* Firefox */
.trackorder-scrollable-section {
    scrollbar-width: thin;
    scrollbar-color: #d1d1d1 #f9f9f9; /* Light thumb & track */
}

/* Container Styling */
.review-container {
    padding: 24px;
    font-family: Arial, sans-serif;
    max-width: 800px;
}

/* Header */
.review-header {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 16px;
}

/* Button */
.review-button {
    padding: 10px 15px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 16px;
}

.review-button:hover {
    background-color: #0056b3;
}

/* Review List */
.review-list {
    margin-top: 16px;
}

/* Review Card */
.review-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* User Info */
.review-user-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-user-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Stars */
.review-stars {
    display: flex;
    margin-top: 5px;
}

.star-icon {
    color: #f5c518;
    width: 20px;
    height: 20px;
}

/* Review Text */
.review-text {
    margin-top: 10px;
    font-size: 1.5rem;
}

/* Review Image */
.review-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.modal-content-review {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    width: 400px;
}

/* Modal Title */
.modal-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 12px;
}

/* Input Fields */
.modal-input,
.modal-textarea,
.modal-file-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Stars in Modal */
.modal-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.star-select {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.star-filled {
    color: #f5c518;
}

.star-empty {
    color: #ccc;
}

/* Image Preview */
.modal-preview-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 10px;
}

/* Modal Buttons */
.modal-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.modal-cancel {
    background-color: #ccc;
    color: black;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.modal-submit {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.modal-cancel:hover {
    background-color: #999;
}

.modal-submit:hover {
    background-color: #0056b3;
}

.custom-header-wrapper {
    background-color: white;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.custom-logo-section {
    flex: 0 0 auto;
    margin-right: 20px;
}

.custom-logo-image {
    height: 40px;
}

.custom-search-box {
    flex: 1;
    margin: 0 20px;
}

.custom-search-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 5px 15px;
    background-color: #fff;
}

.custom-search-icon {
    margin-right: 10px;
    color: red;
}

.custom-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
}

.custom-search-input::placeholder {
    color: #aaa;
}

.custom-icons-section {
    display: flex;
    gap: 20px;
}

.custom-icon-button {
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.custom-icon {
    height: 24px;
    width: 24px;
    color: #ff6a00;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    z-index: 10;
    border-radius: 5px;
    margin-top: 5px;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: #f9f9f9;
}

.product-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.product-name {
    font-size: 14px;
    color: #333;
}

.custom-icon-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.box {
    width: 140px;
    height: auto;
    float: left;
    transition: 0.5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    text-align: center;
    margin: 0 5px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 900;
}

.box:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
}

.box:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
}

.box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.box:hover:before {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition:
        0.3s transform linear,
        0.3s height linear 0.3s;
}

.box:hover:after {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition:
        0.3s transform linear,
        0.3s height linear 0.5s;
}

.button-redircts {
    color: black;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
}

.shopping-cart-container {
    width: 100%;
    max-width: fit-content;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    padding-bottom: 10px;
}

.back-button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.emi-offers,
.coupon-section {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.coupon-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border: 1px dashed rgb(236, 90, 22);
    border-radius: 5px;
    background: #eaffea;
}

.cart-content {
    padding: 10px;
    border-top: 1px solid #ddd;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #f3f3f3;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 10px;
}

.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.product-image-mobile-cart {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.product-name {
    font-size: 16px;
    font-weight: bold;
}

.product-price {
    color: #333;
    font-size: 14px;
    margin-top: 5px;
    margin-left: auto;
}

.delivery-info {
    color: #f00;
    font-size: 12px;
    margin-top: 5px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.quantity-controls button {
    background: none;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.price-breakdown p {
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.total-amount {
    font-weight: bold;
}

.checkout-footer {
    text-align: center;
    padding-top: 10px;
}

.proceed-to-checkout {
    width: 100%;
    padding: 12px;
    background: red;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.mySwiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
    /* Prevent shrinking of slides */
}

.hot-deals-section {
    padding: 0px;
}

.product-name-mobile {
    margin-top: -20px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.product-card-mobile {
    background: #fcf6f6 !important;

    border-radius: 10px;
    padding: 10px;
    text-align: center;
    height: 263px !important;
    width: 200px !important;
}

.product-img-mobile {
    position: relative;
    width: 100%;
}

.product-img-mobile img {
    width: 100%;
    border-radius: 8px;
}

.discount-badge-mobile {
    position: absolute;
    top: 5px;
    left: 5px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 5px;
}

.product-price-mobile {
    display: flex;
    align-items: center;
    gap: 5px;
}

.original-price-mobile {
    text-decoration: line-through;
    color: gray;
    font-size: 12px;
}

.final-price {
    font-size: 14px;
    font-weight: bold;
}

.add-btn {
    background: green;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.header-more-icon {
    font-size: 30px;
    margin-top: 40px;
    background-color: transparent;
    margin-left: 18px;
    font-weight: normal !important;
}

.thumbnail-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumb-item {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumb-item.active {
    border-color: #007bff;
}

.thumb-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.categories-container {
    padding: 20px;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Show 3 cards per row */
    gap: 20px;
    margin-top: 20px;
}

.category-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 18px !important;
    text-align: center;
    transition: transform 0.2s;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.category-card h3 {
    margin: 0px 0 0;
    color: #333;
}

.categories-container-header {
    padding: 5px;
}

.category-card-header {
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s;
}

.category-card-header:hover {
    transform: scale(1.05);
}

.category-card-header img {
    width: 60%;
    height: auto;
    border-radius: 8px;
    text-align: center;
    margin-left: 20px;
}

.categories-h3-size {
    margin: 0px 0 0;
    color: #333;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.header-more-text {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.more-categories-icon {
    margin-top: 25px;
    font-size: 30px;
}

.free-delivery-banner {
    margin-top: 30px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.mobile-view-filter {
    display: none;
}

.banner-carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5;
    min-height: 180px;
    max-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f6fb;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.banner-slider {
    height: 100%;
}

.banner-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f6fb;
}

.banner-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure slick wrappers stretch so images show on mobile */
.banner-slider .slick-list,
.banner-slider .slick-track,
.banner-slider .slick-slide,
.banner-slider .slick-slide > div {
    height: 100%;
}

@media (max-width: 991.98px) {
    .banner-carousel-container {
        aspect-ratio: 16 / 5;
        min-height: 170px;
        max-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .banner-carousel-container {
        aspect-ratio: 16 / 7;
        min-height: 140px;
        max-height: 200px;
        border-radius: 10px;
    }

    .banner-slide__image {
        object-fit: contain;
        background: #f5f6fb;
    }
}

/* Home advertisement tiles */
.home-advertisement {
    padding: 6px 6px 20px;
}

.home-advertisement-mobile-slider .slick-slide {
    padding: 0 6px;
}

.home-advertisement-mobile-slider .slick-list {
    margin: 0 -6px;
}

.home-advertisement-slide {
    padding: 4px 0;
}

.home-advertisement-row {
    margin: 0;
}

.home-advertisement__image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.home-advertisement__image:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .home-advertisement__image {
        height: 110px;
        border-radius: 10px;
    }
}

@media (max-width: 575.98px) {
    .home-advertisement {
        padding-left: 4px;
        padding-right: 4px;
    }

    .home-advertisement__image {
        height: 96px;
        border-radius: 9px;
    }

    .home-advertisement-mobile-slider .home-advertisement__image {
        height: 110px;
        object-fit: cover;
    }
}

.mobile-logo-set {
    margin-left: -35px;
}

.empty-cart-cls1 {
    margin-top: -25%;
}

.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.login-span {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    padding: 10px;
}

.sidebar-widget ul {
    max-height: 250px;
    /* Set max height */
    overflow-y: auto;
    /* Enable vertical scrolling */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #888 #f1f1f1;
    /* Firefox */
    padding-right: 10px;
    /* Adjust for scrollbar space */
}

/* Webkit Browsers (Chrome, Safari, Edge) */
.sidebar-widget ul::-webkit-scrollbar {
    width: 8px;
    /* Set scrollbar width */
}

.sidebar-widget ul::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
    border-radius: 4px;
}

.sidebar-widget ul::-webkit-scrollbar-thumb {
    background: #888;
    /* Scrollbar handle color */
    border-radius: 4px;
}

.sidebar-widget ul::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Handle color on hover */
}

:root {
    --rad: 0.7rem;
    --dur: 0.3s;
    --color-dark: #2f2f2f;
    --color-light: #fff;
    --color-brand: #57bd84;
    --font-fam: "Lato", sans-serif;
    --height: 5rem;
    --btn-width: 6rem;
    --bez: cubic-bezier(0, 0, 0.43, 1.49);
}

html {
    box-sizing: border-box;
    height: 100%;
    font-size: 10px;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.search-form-home {
    position: relative;
    width: 60rem;
    background: var(--color-brand);
    border-radius: var(--rad);
}

.search-input-home,
.search-button-home {
    height: var(--height);
    font-family: var(--font-fam);
    border: 0;
    color: var(--color-dark);
    font-size: 1.8rem;
}

.search-input-home {
    outline: 0;
    width: 100%;
    background: var(--color-light);
    padding: 0 1.6rem;
    border-radius: var(--rad);
    appearance: none;
    transition: all var(--dur) var(--bez);
    transition-property: width, border-radius;
    z-index: 1;
    position: relative;
}

.search-button-home {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: var(--btn-width);
    font-weight: bold;
    background: var(--color-brand);
    border-radius: 0 var(--rad) var(--rad) 0;
}

.search-input-home:not(:placeholder-shown) {
    border-radius: var(--rad) 0 0 var(--rad);
    width: calc(100% - var(--btn-width));
}

.search-input-home:not(:placeholder-shown) + .search-button-home {
    display: block;
}

.search-label-home {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* New Button Class */
.new-button-class {
    background: #ff5733;
    /* Different color */
    color: white;
    font-weight: bold;
}

.order-h-back {
    background-color: white;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.trackorder-wrapper {
    /* background-color: #f9fafb; */
    padding: 16px;
}

.trackorder-main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trackorder-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trackorder-order-details,
.trackorder-tracking-progress {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trackorder-details-header h2,
.trackorder-tracking-progress h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.trackorder-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trackorder-label {
    color: #6b7280;
    font-size: 14px;
}

.trackorder-value,
.trackorder-status {
    font-weight: 500;
    font-size: 16px;
}

.trackorder-status {
    color: #16a34a;
}

.trackorder-product-list {
    margin-top: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.trackorder-scrollable-section {
    max-height: 240px;
    overflow-y: auto;
}

.trackorder-table {
    width: 100%;
    border-collapse: collapse;
}

.trackorder-table th {
    text-align: left;
    background: #f3f4f6;
    padding: 8px;
    font-size: 14px;
}

.trackorder-table td {
    padding: 8px;
    border-top: 1px solid #e5e7eb;
}

.trackorder-product-item {
    display: flex;
    align-items: center;
}

.trackorder-product-image {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    margin-right: 8px;
}

.trackorder-reorder-button {
    display: block;
    width: 100%;
    background: #2563eb;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 16px;
}

.trackorder-reorder-button:hover {
    background: #1d4ed8;
}

.trackorder-progress-container {
    position: relative;
    padding-left: 24px;
}

.trackorder-progress-line {
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #e5e7eb;
}

.trackorder-progress-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trackorder-step {
    display: flex;
    align-items: center;
}

.trackorder-step-completed .trackorder-step-icon {
    background: #16a34a;
    color: #fff;
}

.trackorder-step-current .trackorder-step-icon {
    background: #3b82f6;
    color: #fff;
}

.trackorder-step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    background: #e5e7eb;
    color: #6b7280;
}

/* Custom scrollbar styles */
.overflow-y-auto::-webkit-scrollbar {
    width: 8px;
}

.overflow-y-auto::-webkit-scrollbar-thumb {
    background-color: #c0c1c4;
    border-radius: 10px;
}

.overflow-y-auto::-webkit-scrollbar-track {
    background-color: #f3f4f6;
}

/* Styling the scrollbar container */
.products-scrollable-container {
    max-height: 500px;
    /* Set a maximum height */
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding-right: 10px;
    /* Optional, to avoid content being cut off by the scrollbar */
}

/* Styling the scrollbar itself */
.products-scrollable-container::-webkit-scrollbar {
    width: 8px;
    /* Set the width of the scrollbar */
}

/* Styling the scrollbar track (background) */
.products-scrollable-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Light background for the track */
    border-radius: 10px;
}

/* Styling the scrollbar thumb (the draggable part) */
.products-scrollable-container::-webkit-scrollbar-thumb {
    background: #888;
    /* Darker color for the thumb */
    border-radius: 10px;
    /* Round the thumb */
}

/* Styling the thumb on hover */
.products-scrollable-container::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Darker shade when hovered */
}

/* Optional: Style the corner where two scrollbars meet (if applicable) */
.products-scrollable-container::-webkit-scrollbar-corner {
    background: #f1f1f1;
}

@media (max-width: 768px) {
    .products-scrollable-container {
        max-height: 400px;
        /* Smaller max-height for mobile */
    }
}

.order-tracking-status {
    font-size: 1.5rem;
    color: #000000;
    margin-top: 10px;
}
.order-tracking-status strong {
    font-size: 15px;
}
.order-tracking-status span {
    font-size: 15px;
    text-decoration: none !important;
    background-color: #888;
    color: #000 !important;
    font-weight: bold;
    padding: 5px;
    border-radius: 10px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.new-price {
    font-weight: bold;
    color: #000;
}

.discount {
    color: #ff0000;
    font-weight: bold;
    margin-left: 10px;
}

.padding {
    padding: 20px;
}

.table-background-color {
    background-color: #0056b3;
}

.product-table {
    background-color: #f1f5f9;
}

.tbody-back {
    background-color: #ffffff;
}

.tbody-back1 {
    border: 1px solid #abe292;
    background-color: #f6fff5;
}

.product-desc {
    padding: 15px;
    border-radius: 10px;
}

.thumb-item {
    border: 1px solid #f94d00;
}

.popular-cate {
    background-color: white;
    padding: 24px 0;
}

.popular-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding: 32px 0 20px;
}

.popular-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.popular-title {
    margin: 4px 0 0;
    font-weight: 800;
    color: #0f172a;
    font-size: 1.6rem;
}

.popular-subtitle {
    margin: 6px 0 0;
    color: #475569;
    font-size: 0.95rem;
}

.eyebrow-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #eef2ff;
    color: #334155;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.popular-grid-desktop {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.popular-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.popular-media {
    position: relative;
    height: 200px;
    background: linear-gradient(140deg, #fef3c7, #e0f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.popular-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.popular-card:hover .popular-media img {
    transform: scale(1.05);
}

.count-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}

.popular-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.popular-name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.popular-meta {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.popular-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.shop-link {
    color: #f34236;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition:
        transform 0.15s ease,
        color 0.15s ease;
}

.shop-link:hover {
    color: #d72617;
    transform: translateX(2px);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.category-media {
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    overflow: hidden;
}

.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.mobile-count {
    color: #475569;
    font-size: 12px;
    background: #e2e8f0;
    padding: 4px 8px;
    border-radius: 999px;
}

.cta-primary {
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(243, 66, 54, 0.25);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(243, 66, 54, 0.3);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    background: #fff1e8;
    color: #f94d00;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #ffd8c2;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(249, 77, 0, 0.14);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.link-btn:hover {
    background: #f94d00;
    border-color: #f94d00;
    box-shadow: 0 12px 26px rgba(249, 77, 0, 0.24);
    transform: translateY(-1px);
    color: #ffffff;
}

.link-btn i {
    font-size: 16px;
}

.action-btn {
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #fff;
    box-shadow: 0 10px 24px rgba(243, 66, 54, 0.25);
}

.action-btn.ghost {
    background: rgba(255, 112, 88, 0.08);
    color: #f34236;
    border: 1px solid rgba(243, 66, 54, 0.35);
}

.action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(243, 66, 54, 0.2);
}

.viewall-btn-wide {
    font-size: 16px;
    padding: 12px 24px;
    justify-content: center;
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    box-shadow:
        0 14px 30px rgba(243, 66, 54, 0.28),
        0 8px 0 rgba(255, 255, 255, 0.35) inset;
}

.link-btn.viewall-btn-wide:hover {
    background: linear-gradient(120deg, #ff846f, #f34236);
    border: none;
    box-shadow:
        0 16px 36px rgba(243, 66, 54, 0.32),
        0 8px 0 rgba(255, 255, 255, 0.3) inset;
    color: #ffffff;
}

/* Scoped styles for Popularcategory (pcat-) */
.pcat-section {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    padding: 32px 0 20px;
}

.pcat-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
}

.pcat-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.pcat-headings {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pcat-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #eef2ff;
    color: #334155;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.pcat-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pcat-title {
    margin: 4px 0 0;
    font-weight: 800;
    color: #0f172a;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.pcat-title-accent {
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(120deg, #ff844b, #f34236);
    display: inline-block;
}

.pcat-subtitle {
    margin: 6px 0 0;
    color: #475569;
    font-size: 0.95rem;
    max-width: 580px;
}

.pcat-ghost-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}

.pcat-ghost-btn:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.pcat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.pcat-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf4;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    min-height: 100%;
    cursor: pointer;
}

.pcat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.pcat-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: radial-gradient(circle at 20% 20%, #fff7ed 0%, #eef2ff 55%, #e2e8f0 100%);
    overflow: hidden;
}

.pcat-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    filter: saturate(1.03);
}

.pcat-card:hover .pcat-card-media img {
    transform: scale(1.07);
}

.pcat-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(17, 24, 39, 0.88);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 10px 18px rgba(17, 24, 39, 0.18);
}

.pcat-sheen {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.48) 60%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: translateX(-120%);
    transition: transform 0.6s ease;
}

.pcat-card:hover .pcat-sheen {
    transform: translateX(120%);
}

.pcat-card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.pcat-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pcat-card-title {
    margin: 0;
    font-size: 1.04rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
}

.pcat-chevron {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #4c51c6;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.pcat-card:hover .pcat-chevron {
    transform: translateX(4px);
    background: #e0e7ff;
}

.pcat-card-text {
    margin: 0;
    color: #5b6476;
    font-size: 0.92rem;
    line-height: 1.45;
}

.pcat-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pcat-tag {
    background: #ecfeff;
    color: #0ea5e9;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.pcat-tag-muted {
    background: #f8fafc;
    color: #475569;
    border-color: rgba(71, 85, 105, 0.25);
}

.pcat-mobile {
    margin-top: 8px;
}

.pcat-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
}

.pcat-mobile-title {
    margin: 4px 0 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
}

.pcat-mobile-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    scroll-snap-type: x mandatory;
}

.pcat-mobile-scroll::-webkit-scrollbar {
    height: 6px;
}

.pcat-mobile-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.pcat-mcard {
    min-width: 68%;
    background: #ffffff;
    border: 1px solid #e8ecf4;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    scroll-snap-align: start;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}

.pcat-mcard:hover,
.pcat-mcard:active {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.pcat-mcard-media {
    position: relative;
    height: 170px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pcat-mcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pcat-mchip {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(15, 23, 42, 0.88);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.16);
}

.pcat-mcard-body {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pcat-mcard-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.1rem;
}

.pcat-mcta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4c51c6;
    font-weight: 700;
    font-size: 0.9rem;
}

.pcat-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    background: linear-gradient(120deg, #ff844b, #f34236);
    color: #ffffff;
    font-weight: 800;
    border: none;
    box-shadow: 0 14px 30px rgba(243, 66, 54, 0.25);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pcat-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(243, 66, 54, 0.3);
    color: #ffffff;
}

.pcat-footer {
    margin-top: 32px;
}

@media (max-width: 1199.98px) {
    .pcat-grid {
        grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    }

    .pcat-shell {
        padding: 0 14px;
    }
}

@media (max-width: 991.98px) {
    .pcat-header {
        align-items: flex-start;
    }

    .pcat-grid {
        display: none;
    }

    .pcat-section {
        padding: 26px 0 14px;
    }
}

@media (max-width: 575.98px) {
    .pcat-mcard {
        min-width: 78%;
    }

    .pcat-mobile-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .popular-section {
        padding: 26px 0 12px;
    }

    .popular-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        border: 1px solid #e2e8f0;
        box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    }
}

.w-45 {
    width: 45%;
}

.service-content {
    background-color: white;
}

.container-fluid1 {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adjust values as needed */
}

.home-back-color {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-container {
    margin: 0 auto;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    color: #0056b3;
}

.subheading {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.text-block {
    margin-bottom: 15px;
    text-align: justify;
}

.list-container {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.list-item {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #444;
    font-size: 16px;
}

.nested-list {
    list-style-type: circle;
    margin-left: 20px;
}

.custom-link {
    color: #007bff;
    text-decoration: none;
}

.custom-link:hover {
    text-decoration: underline;
}

.home-heading {
    color: #3854a7;
    font-weight: bold;
}

.home-text-format {
    padding-left: 10%;
    padding-right: 10%;
}

.career-page {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nav-header {
    background-color: #162f4d;
    color: white;
    display: flex;
    justify-content: space-between;
}

.nav-header-font {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.heading-color {
    color: #385487;
    font-weight: bold;
    font-size: 20px;
}

.heading-font {
    font-size: 15px !important;
}

.container-head {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.card-button {
    text-align: center;
}

.buuton-css {
    font-size: 15px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 0px;
    font-weight: 400;
    border-radius: 4px;
    border: 1px solid #f94d00;
    background-color: transparent;
    color: #f94d00;
}

/* Add to Cart now matches Buy Now styling */
.product-buuton-css {
    font-size: 15px;
    line-height: 1;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 10px 20px;
    font-weight: 800;
    border-radius: 999px;
    border: 1px solid #f34236;
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #ffffff;
    box-shadow:
        0 12px 30px rgba(243, 66, 54, 0.28),
        0 8px 0 rgba(255, 255, 255, 0.4) inset;
}

.filter-button-css {
    border-radius: 10px;
    width: 11rem;
    margin-left: 60px;
}

.product-buuton-css:hover {
    color: #ffffff;
    background: linear-gradient(120deg, #ff846f, #f34236);
    border-color: #f34236;
    box-shadow:
        0 14px 34px rgba(243, 66, 54, 0.32),
        0 8px 0 rgba(255, 255, 255, 0.35) inset;
}

.product-buuton-css-details {
    font-size: 15px;
    line-height: 1;
    -webkit-transition: all ease 0.25s;
    transition: all ease 0.25s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 10px 20px;
    font-weight: 800;
    border-radius: 999px;
    border: 1px solid #f34236;
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #ffffff;
    box-shadow:
        0 12px 30px rgba(243, 66, 54, 0.28),
        0 8px 0 rgba(255, 255, 255, 0.4) inset;
}

.product-buuton-css-details:hover {
    color: #ffffff;
    background: linear-gradient(120deg, #ff846f, #f34236);
    border-color: #f34236;
    box-shadow:
        0 14px 34px rgba(243, 66, 54, 0.32),
        0 8px 0 rgba(255, 255, 255, 0.35) inset;
}

.letter-space {
    padding-left: 10px;
    padding-right: 10px;
}

.letter-space1 {
    padding-left: 10px;
    padding-right: 10px;
}

.buuton-css2 {
    font-size: 15px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 0px;
    font-weight: 400;
    border-radius: 4px;
    background-color: #162f4d;
    color: white;
    border-color: transparent;
}

.buuton-css2-details {
    font-size: 15px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 0px;
    font-weight: 400;
    border-radius: 4px;
    background-color: #162f4d;
    color: white;
    border-color: transparent;
}

.product-buuton-css2 {
    font-size: 15px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 0px;
    font-weight: 400;
    border-radius: 4px;
    background-color: #162f4d;
    color: white;
    border-color: transparent;
    font-weight: bold;
}

.buuton-css:hover {
    color: #ffffff;
    background-color: #f94d00;
    border-color: transparent;
}

.buuton-css2:hover {
    color: #ffffff;
    background-color: #f94d00;
    border-color: transparent;
}

.buuton-css2-details:hover {
    color: #ffffff;
    background-color: #f94d00;
    border-color: transparent;
}

.product-buuton-css2:hover {
    color: #ffffff;
    background-color: #162f4d;
    border-color: transparent;
}

/* Show dropdown menu on hover */
.dropdown-menu:hover > .dropdown-menu {
    display: block;
}

#card-css {
    margin-left: 105%;
}

#background-change {
    background-color: #dddddd;
}

.custom-react-flags-select .ReactFlagsSelect__label {
    display: none !important;
    /* Hide the label text */
}

.custom-react-flags-select .ReactFlagsSelect__placeholder {
    display: none !important;
    /* Hide the placeholder text */
}

.custom-react-flags-select .ReactFlagsSelect__button {
    padding: 0;
    width: 40px;
    /* Adjust width to show just the flag */
    height: 40px;
    /* Adjust height of the flag */
}

.dropdown-menu {
    position: relative;
    z-index: 1000;
}

.dropdown-menu > a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

.dropdown-menu > a:hover {
    background-color: #555;
}

/* Dropdown styles */
.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    display: none;
    background-color: #444;
    border-radius: 5px;
}

.dropdown li {
    position: relative;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
}

.dropdown li a:hover {
    background-color: #666;
}

/* Show dropdown on hover */
.dropdown-menu:hover > .dropdown {
    display: block;
}

/* Sub-dropdown styles */
.child-dropdown {
    left: 100%;
    top: 0;
    display: none;
    background-color: #555;
}

/* Dropdown 2 hover background color */
.dropdown-menu .dropdown .dropdown-menu:hover > a {
    background-color: #6cd0f1;
    /* Change this to your desired color */
    color: #ffffff;
}

.dropdown-menu .dropdown .dropdown-menu:hover > .child-dropdown {
    background-color: #d7ffb1;
    /* Matches Dropdown 2 hover color */
    color: #e61414;
}

.child-dropdown li a {
    background-color: #d7ffb1;
    /* Matches Dropdown 2 hover color */
    color: #ffffff;
    border-bottom: solid 1px rgb(236, 236, 236) !important;
}

.child-dropdown li a:hover {
    background-color: #d7ffb1;
    /* Darker shade for hover */
    color: black;
}

.nav-hover:hover {
    background-color: #d7ffb1;
    color: black;
}

/* Cart Page css */
._failed {
    border-bottom: solid 4px red !important;
    box-shadow: 0 15px 25px #00000019;
    padding: 45px;
    width: 100%;
    text-align: center;
    margin: 40px auto;
    border-bottom: solid 4px #28a745;
}

._failed i {
    color: red !important;
    font-size: 55px;
}

._failed h2 {
    margin-bottom: 12px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
}

._failed p {
    margin-bottom: 0px;
    font-size: 18px;
    color: #495057;
    font-weight: 500;
}

._success {
    box-shadow: 0 15px 25px #00000019;
    padding: 45px;
    width: 100%;
    text-align: center;
    margin: 40px auto;
    border-bottom: solid 4px #28a745;
}

._success i {
    font-size: 55px;
    color: #28a745;
}

._success h2 {
    margin-bottom: 12px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 10px;
}

._success p {
    margin-bottom: 0px;
    font-size: 18px;
    color: #495057;
    font-weight: 500;
}

.shopping-cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1500px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Styles for loading spinner */
.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
    /* Full-screen height */
    background-color: #f9f9f9;
    /* Optional background color */
}

.loading-spinner {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.row {
    margin-right: 0;
    /* Removes extra margin on the right */
    margin-left: 0;
    /* Removes extra margin on the left */
}

.single-products2 {
    margin: 0 auto;
    /* Centers the product card */
    width: calc(100% - 10px);
    /* Adjust the width as needed */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

@media (max-width: 768px) {
    .shopping-cart-wrapper {
        grid-template-columns: 1fr;
    }
}

.cart-summary {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.summary-info {
    margin: 1.5rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #666;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #eee;
    font-weight: bold;
    font-size: 1.2rem;
}

.toggle-section {
    margin: 1rem 0;
}

.toggle-section button {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.section-toggle-content {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
    max-height: 400px;
    /* Adjust the height based on your needs */
    overflow-y: auto;
    /* Enable vertical scrolling */
    margin-top: 20px;
}

.cart-item-list {
    max-height: 400px;
    /* Adjust the height according to your needs */
    overflow-y: auto;
    /* Enables vertical scrolling */
    padding-right: 10px;
    /* Adds space for the scroll bar */
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    background-color: white;
    border-radius: 10px;
}

.cart-product {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: transform 0.2s;
}

.cart-product:hover {
    transform: translateX(5px);
}

.product-thumbnail img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style-type: none;
}

.product-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-rating {
    color: #ffd700;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-quantity-controls button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.product-quantity-controls input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
}

.product-remove {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-remove:hover {
    text-decoration: underline;
}

.fas.filled {
    color: #ffd700;
}

.track-order-page #progressbar-1 {
    color: #455a64;
}

.track-order-page #progressbar-1 li {
    list-style-type: none;
    font-size: 13px;
    width: 33.33%;
    float: left;
    position: relative;
}

.track-order-page #progressbar-1 #step1:before {
    content: "1";
    color: #fff;
    width: 29px;
    margin-left: 22px;
    padding-left: 11px;
}

.track-order-page #progressbar-1 #step2:before {
    content: "2";
    color: #fff;
    width: 29px;
}

.track-order-page #progressbar-1 #step3:before {
    content: "3";
    color: #fff;
    width: 29px;
    margin-right: 22px;
    text-align: center;
}

.track-order-page #progressbar-1 li:before {
    line-height: 29px;
    display: block;
    font-size: 12px;
    background: #455a64;
    border-radius: 50%;
    margin: auto;
}

.track-order-page #progressbar-1 li:after {
    content: "";
    width: 121%;
    height: 2px;
    background: #455a64;
    position: absolute;
    left: 0%;
    right: 0%;
    top: 15px;
    z-index: -1;
}

.track-order-page #progressbar-1 li:nth-child(2):after {
    left: 50%;
}

.track-order-page #progressbar-1 li:nth-child(1):after {
    left: 25%;
    width: 121%;
}

.track-order-page #progressbar-1 li:nth-child(3):after {
    left: 25%;
    width: 50%;
}

.track-order-page #progressbar-1 li.active:before,
.track-order-page #progressbar-1 li.active:after {
    background: #1266f1;
}

.track-order-page .card-stepper {
    z-index: 0;
}

.single-products-search {
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 3px;
    position: relative;
    background: var(--white);
    border: 1px solid var(--ghost-white);
    border-radius: 8px;
    padding: 16px;
    position: relative;
    margin: 5px 15px 5px 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    background-color: white;
}

/* Order css code */
.order-history-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.search-filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.filter-options {
    display: flex;
    gap: 15px;
}

.filter-options select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.order-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    /* Optional: Limit the width */
    height: 400px;
    /* Fix height for the card */
    overflow: hidden;
    /* Prevent card expansion */
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-number {
    font-weight: bold;
    color: #333;
}

.order-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.order-status.delivered {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.order-status.processing {
    background-color: #fff3e0;
    color: #ef6c00;
}

.order-status.shipped {
    background-color: #e3f2fd;
    color: #1565c0;
}

.order-items {
    flex-grow: 1;
    /* Allow this section to grow within the card */
    overflow-y: auto;
    /* Add vertical scrolling */
    max-height: 200px;
    /* Adjust based on your layout */
    margin-top: 16px;
    padding-right: 8px;
    /* Add padding for scrollbar spacing */
}

/* Webkit scrollbar styles */
.order-items::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
}

.order-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track background color */
    border-radius: 10px;
    /* Round the corners of the track */
}

.order-items::-webkit-scrollbar-thumb {
    background: #888;
    /* Scrollbar thumb color */
    border-radius: 10px;
    /* Round the corners of the thumb */
}

.order-items::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Darker thumb color when hovered */
}

/* Firefox scrollbar styles */
.order-items {
    scrollbar-width: thin;
    /* Makes the scrollbar thinner in Firefox */
    scrollbar-color: #888 #f1f1f1;
    /* Thumb and track color */
}

.item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.item-details h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    flex: 1;
}

.item-details p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.total-cost {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.track-btn {
    padding: 8px 16px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.track-btn:hover {
    background-color: #1565c0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination button {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .search-filter-section {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-options {
        flex-wrap: wrap;
    }

    .filter-options select {
        flex: 1;
        min-width: 150px;
    }

    .orders-grid {
        grid-template-columns: 1fr;
    }
}

.cart-align {
    text-align: end;
}

.home-slider-section {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.category-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    /* Slight lift effect */
}

.category-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.product-item {
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s ease-in-out;
}

.product-item1 {
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: scale(1.05);
}

.product-name {
    color: #333;
    font-weight: 500;
}

.product-price {
    color: #007bff;
    font-weight: bold;
    font-size: 14px;
}

.cart-button-home {
    border-radius: 6px;
    padding: 10px 12px;
    background-color: #fff !important;
    font-size: 12px;
}

.more-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
    text-decoration: underline;
}

.more-btn:hover {
    color: #0056b3;
}

.product-img11 {
    border: none;
    width: 100%;
    max-width: 200%;
}

a {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-decoration: none;
    color: #9c9c9c;
}

a:hover {
    text-decoration: none;
    color: #3854a7;
}

a:focus {
    text-decoration: none;
}

button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    padding: 0;
}

button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111111;
    font-weight: 500;
    font-family: "Rubik", sans-serif;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

p {
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

p:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.form-control {
    height: 55px;
    color: #3854a7;
    border: 1px solid #d7d7d7;
    background-color: transparent;
    border-radius: 0;
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
}

.form-control::-webkit-input-placeholder {
    color: #676a6a;
}

.form-control:-ms-input-placeholder {
    color: #676a6a;
}

.form-control::-ms-input-placeholder {
    color: #676a6a;
}

.form-control::placeholder {
    color: #676a6a;
}

.form-control:focus {
    color: #000000;
    background-color: transparent;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    outline: 0;
    border: 1px solid #3854a7;
}

.form-control:hover:focus,
.form-control:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

textarea.form-control {
    height: auto;
}

.pb-40 {
    padding-bottom: 40px;
}

.ptb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.pb-30 {
    padding-bottom: 30px;
}

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

.ptb-54 {
    padding-top: 15px;
    padding-bottom: 54px;
}

.pb-54 {
    padding-bottom: 54px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-minus-100 {
    margin-top: -100px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.pl-15 {
    padding-left: 15px;
}

.pr-15 {
    padding-right: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.gap-20 {
    margin-bottom: 20px;
}

.gap-24 {
    margin-bottom: 24px;
}

.gap-30 {
    margin-bottom: 30px;
}

/*
Bg-color Style*/
.bg-color {
    background-color: #f9fafb;
}

/*
Default Btn Area Style*/
.default-btn {
    font-size: 15px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 16px 30px;
    font-weight: 400;
    background-color: #3854a7;
}

.default-btn2 {
    font-size: 15px;
    color: #ffffff;
    line-height: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-table;
    padding: 16px 30px;
    font-weight: 400;
    background-color: #154cf0;
}

.default-btn.radius-btn {
    border-radius: 4px;
}

.default-btn2 {
    border-radius: 4px;
}

.default-btn i {
    position: relative;
    top: 1.7px;
    margin-right: 5px;
}

.default-btn2 i {
    position: relative;
    top: 1.7px;
    margin-right: 5px;
}

.default-btn::before,
.default-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    z-index: -1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.default-btn2::before,
.default-btn2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111111;
    z-index: -1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.default-btn::after {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.default-btn2::after {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.default-btn:hover {
    color: #ffffff;
}

.default-btn2:hover {
    color: #ffffff;
}

.default-btn:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.default-btn2:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.default-btn:hover::after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.default-btn2:hover::after {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

/*
Read More Btn Area Style*/
.read-more {
    font-size: 15px;
    color: white;
}

.read-more i {
    position: relative;
    top: 3px;
}

.read-more:hover {
    color: #3854a7;
    letter-spacing: 1px;
}

/*
Section Title Area Style*/
.section-title {
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
}

.section-title span {
    font-size: 16px;
    color: #3854a7;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 25px;
    margin-bottom: 20px;
    position: relative;
}

.section-title h2:last-child {
    margin-bottom: 0;
}

.section-title p {
    max-width: 600px;
    margin: auto;
}

.section-title .read-more {
    position: absolute;
    top: 5px;
    right: 0;
}

.section-title.white-title span {
    color: #3854a7;
}

.section-title.white-title h2 {
    color: #ffffff;
}

.section-title.white-title p {
    color: #ffffff;
}

/*
Header Area Style
======================================================*/
.top-header {
    background-color: #f8f8f9;
    padding-top: 15px;
    padding-bottom: 15px;
}

.top-header .header-left-content {
    line-height: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-header .header-left-content li {
    display: inline-block;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    color: #555555;
}

.top-header .header-left-content li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.top-header .header-left-content li:last-child::before {
    display: none;
}

.top-header .header-left-content li::before {
    content: "";
    position: absolute;
    top: 1px;
    right: -3px;
    width: 1px;
    height: 100%;
    background-color: #dddddd;
}

.top-header .header-left-content li a {
    color: #555555;
    font-size: 15px;
}

.top-header .header-left-content li a span {
    color: #3854a7;
}

.top-header .header-left-content li a:hover {
    color: #3854a7;
}

.top-header .header-left-content li a i {
    font-size: 16px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    color: #3854a7;
    text-align: center;
    border-radius: 50%;
    line-height: 1;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.top-header .header-left-content li a:hover i {
    color: #3854a7;
}

.top-header .header-left-content li:last-child {
    margin-right: 0;
}

.top-header .header-right-content {
    line-height: 1;
    float: right;
    position: relative;
    top: -2px;
}

.top-header .header-right-content .navbar-option-language {
    position: relative;
    top: 2px;
}

.top-header .header-right-content .navbar-option-language button {
    background-color: transparent;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    color: #111111;
}

.top-header .header-right-content .navbar-option-language button img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    max-width: 35px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    margin-right: 10px;
}

.top-header
    .header-right-content
    .navbar-option-language
    .dropdown-toggle:after {
    content: "\ea4e";
    font-family: "remixicon" !important;
    font-size: 20px;
    margin-left: 5px;
    border: 0;
}

.top-header .header-right-content .navbar-option-language .dropdown-menu {
    margin: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    display: block !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    right: 0;
    left: auto;
    border-radius: 0;
    padding: 8px 0;
    border: none;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    -webkit-transform: translate(-77px, 20px) !important;
    transform: translate(-77px, 20px) !important;
}

.top-header
    .header-right-content
    .navbar-option-language
    .dropdown-menu
    .dropdown-item {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    font-size: 15px;
}

.top-header
    .header-right-content
    .navbar-option-language
    .dropdown-menu
    .dropdown-item
    img {
    max-width: 25px;
    width: 25px;
    margin-right: 10px;
}

.top-header
    .header-right-content
    .navbar-option-language
    .dropdown-menu
    .dropdown-item:hover {
    color: #3854a7;
    background-color: transparent;
}

.top-header
    .header-right-content
    .navbar-option-language
    .dropdown-menu
    .dropdown-item:focus {
    color: #3854a7;
    background-color: transparent;
}

.top-header .header-right-content .navbar-option-language .dropdown-menu.show {
    -webkit-transform: translateY(26px);
    transform: translateY(26px);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.top-header .header-right-content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-block;
    margin-left: 20px;
}

.top-header .header-right-content ul li {
    display: inline-block;
    position: relative;
    margin-right: 15px;
    padding-right: 15px;
}

.top-header .header-right-content ul li::before {
    content: "";
    position: absolute;
    top: 1px;
    right: -1px;
    width: 1px;
    height: 100%;
    background-color: #dddddd;
}

.top-header .header-right-content ul li a {
    font-size: 15px;
    color: #555555;
}

.top-header .header-right-content ul li a:hover {
    color: #3854a7;
}

.top-header .header-right-content ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.top-header .header-right-content ul li:last-child::before {
    display: none;
}

.top-header .header-right-content ul li .usd select {
    background-color: transparent;
    border: none;
}

.top-header .header-right-content ul li .usd select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}

.middle-header {
    padding-top: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
    background-color: #eee;
    position: relative;
    /* Ensure dropdown stays inside this container */
    height: auto;
    /* Prevents the header from resizing */
}

.search-box-wrapper {
    position: relative;
    z-index: 2000;
    /* Higher than .desktop-nav to ensure it's on top */
    width: 100%;
}

.middle-header .search-box {
    position: relative;
    width: 100%;
    /* Ensures the search box takes up full width of its container */
    z-index: 1050;
}

.middle-header .search-box .form-control {
    border-radius: 4px;
    border-color: #3854a7;
    width: 100%;
}

.middle-header .search-box .form-control::-webkit-input-placeholder {
    color: #bbb;
}

.middle-header .search-box .form-control:-ms-input-placeholder {
    color: #bbb;
}

.middle-header .search-box .form-control::-ms-input-placeholder {
    color: #bbb;
}

.middle-header .search-box .form-control::placeholder {
    color: #bbb;
}

.middle-header .search-box .search-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    padding: 8px 16px;
    background-color: transparent;
    color: #3854a7;
    border-radius: 4px;
    line-height: 1;
    border: 1px solid #3854a7;
}

.middle-header .search-box .search-btn:hover {
    background-color: #3854a7;
    color: white;
    font-weight: bold;
}

.middle-header .search-box .search-btn i {
    position: relative;
    top: 2px;
}

.middle-header .search-box .form-control:focus {
    border-color: #3854a7;
    outline: none;
    box-shadow: 0 0 4px rgba(56, 84, 167, 0.4);
}

.middle-header .search-box .search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 84, 167, 0.3);
}

@media (max-width: 768px) {
    .middle-header .search-box {
        width: 100%;
    }

    .middle-header .search-box .form-control {
        padding-left: 40px;
    }

    .middle-header .search-box .search-btn {
        top: 50%;
        right: 5px;
        transform: translateY(-50%);
    }
}

.middle-header .wish-cart {
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
    position: relative;
    top: -3px;
}

.middle-header .wish-cart li {
    display: inline-block;
    margin-right: 30px;
}

.middle-header .wish-cart li:last-child {
    margin-right: 0;
}

.middle-header .wish-cart li a,
.middle-header .wish-cart li .cart {
    position: relative;
    color: #111111;
    display: block;
    padding-left: 65px;
    font-weight: 500;
    cursor: pointer;
}

.middle-header .wish-cart li a .wish-icon,
.middle-header .wish-cart li .cart .wish-icon {
    /* position: absolute; */
    top: 0;
    left: 0;
    display: inline-block;
}

.middle-header .wish-cart li a .wish-icon i,
.middle-header .wish-cart li .cart .wish-icon i {
    font-size: 26px;
    background-color: #fff1e8;
    color: #3854a7;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
}

.middle-header .wish-cart li a .wish-icon .count,
.middle-header .wish-cart li .cart .wish-icon .count {
    position: absolute;
    top: 0;
    right: -5px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background-color: #3854a7;
    color: #ffffff;
    font-size: 12px;
    border-radius: 50%;
}

.middle-header .wish-cart li a .favorite,
.middle-header .wish-cart li .cart .favorite {
    display: block;
    color: #9c9c9c;
    font-size: 15px;
    font-weight: normal;
}

.middle-header.middle-header-style-two {
    border-bottom: none;
}

/*
Navbar Area Style
======================================================*/
.navbar-area {
    position: relative;
}

.navbar-area .navbar-brand {
    margin-right: 0;
}

.navbar-area.is-sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-area.is-sticky .navbar-category-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    max-height: 435px;
}

.navbar-area.is-sticky .navbar-category-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.navbar-area.navbar-area-style-two .desktop-nav {
    background-color: #3854a7;
}

.navbar-area.navbar-area-style-two
    .desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    a {
    color: #ffffff;
}

.navbar-area.navbar-area-style-two
    .desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    a {
    color: #111111;
}

.navbar-area.navbar-area-style-two
    .desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    a:hover,
.navbar-area.navbar-area-style-two
    .desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.navbar-area.navbar-area-style-two .desktop-nav .navbar .others-options span {
    color: #ffffff;
}

.navbar-area.navbar-area-style-two .navbar-category button {
    background-color: #ffffff;
    color: #3854a7;
}

.only-home-one-sticky {
    position: relative;
}

.only-home-one-sticky .navbar-brand {
    margin-right: 0;
}

.only-home-one-sticky.is-sticky {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    position: fixed;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.only-home-one-sticky.is-sticky .navbar-category-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    max-height: 435px;
}

.only-home-one-sticky.is-sticky .navbar-category-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.desktop-nav {
    background-color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
}

.desktop-nav .navbar {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    z-index: 2;
    padding-right: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
}

.desktop-nav .navbar ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.desktop-nav .navbar .navbar-nav {
    /* margin-left: 24px;
  margin-right: auto; */
    margin: 0 auto;
}

.desktop-nav .navbar .navbar-nav .nav-item {
    position: relative;
    padding-bottom: 25px;
    padding-top: 25px;
    padding-right: 0px;
    padding-left: 0px;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 15px;
    color: #111111;
    line-height: 1;
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:focus,
.desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: #3854a7;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover:before,
.desktop-nav .navbar .navbar-nav .nav-item a:focus:before,
.desktop-nav .navbar .navbar-nav .nav-item a.active:before {
    width: 100%;
    left: 0;
    right: auto;
}

.desktop-nav .navbar .navbar-nav .nav-item a i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 4px;
}

.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
    margin-right: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover a,
.desktop-nav .navbar .navbar-nav .nav-item:focus a,
.desktop-nav .navbar .navbar-nav .nav-item.active a {
    color: #3854a7;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    position: absolute;
    visibility: hidden;
    border-radius: 0;
    display: block;
    width: 250px;
    border: none;
    z-index: 99;
    opacity: 0;
    top: 80px;
    left: 0;
    padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
    padding: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    color: #111111;
    padding: 15px;
    border-bottom: 1px dashed #eeeeee;
    margin: 0;
    font-size: 14px;
    line-height: 1;
    display: block;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:before {
    display: none;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a i {
    float: right;
    top: 7px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus,
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #3854a7;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    left: 250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    a {
    color: #111111;
    border-bottom: 1px dashed #eeeeee;
    font-size: 14px;
    line-height: 1;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:hover,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:focus,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu {
    left: 250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a {
    color: #000000;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:hover,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:focus,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu {
    left: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a {
    color: #000000;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:hover,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:focus,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu {
    left: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a {
    color: #000000;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:hover,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:focus,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu {
    left: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a {
    color: #000000;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:hover,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:focus,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu {
    left: -250px;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a {
    color: #000000;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:hover,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a:focus,
.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    a.active {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li.active
    a {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li:hover
    .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -15px;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li.active
    a {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li:hover
    .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -1px;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li.active
    a {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li:hover
    .dropdown-menu {
    opacity: 1;
    top: -1px;
    visibility: visible;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li.active
    a {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li
    .dropdown-menu
    li:hover
    .dropdown-menu {
    opacity: 1;
    top: -15px;
    visibility: visible;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li.active
    a {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li
    .dropdown-menu
    li:hover
    .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: -15px;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
    color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item
    .dropdown-menu
    li:hover
    .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: none;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
    top: 80%;
    opacity: 1;
    margin-top: 0;
    visibility: visible;
}

.desktop-nav .navbar .navbar-nav .nav-item:hover.mega-menu .dropdown-menu {
    pointer-events: auto;
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu {
    position: unset;
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu .dropdown-menu {
    left: 0;
    right: 0;
    top: 80%;
    width: 100%;
    margin: auto;
    padding: 25px;
    margin-top: 0;
    position: absolute;
    -webkit-transform: unset !important;
    transform: unset !important;
    pointer-events: none;
}

.desktop-nav .navbar .navbar-nav .nav-item.mega-menu .dropdown-menu .menu-img {
    background-image: url(../images/menu-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    display: block;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item.mega-menu
    .dropdown-menu
    .sub-menu-title {
    position: relative;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 25px;
    margin-top: -2px;
    font-weight: 600;
    font-size: 18px;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item.mega-menu
    .dropdown-menu
    .sub-menu-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: #3854a7;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item.mega-menu
    .dropdown-menu
    .sub-menu
    li
    a {
    border-bottom: 1px dashed #eeeeee;
    padding-left: 0;
    padding-right: 0;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item.mega-menu
    .dropdown-menu
    .sub-menu
    li:first-child
    a {
    padding-top: 0;
}

.desktop-nav
    .navbar
    .navbar-nav
    .nav-item.mega-menu
    .dropdown-menu
    .sub-menu
    li:last-child
    a {
    border-bottom: none;
    padding-bottom: 0;
}

.desktop-nav .navbar .navbar-nav.mr-auto {
    margin-right: auto;
    margin-left: 125px;
}

.desktop-nav .navbar .others-options span {
    color: #111111;
    font-size: 15px;
}

.mobile-responsive-nav {
    display: none;
}

.navbar-category button {
    background-color: #3854a7;
    width: 320px;
    padding: 21px 25px;
    color: #ffffff;
    text-align: left;
}

.navbar-category button i {
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.navbar-category button .arrow-down {
    float: right;
    position: relative;
    right: -8px;
}

.navbar-category-dropdown {
    /* position: absolute; */
    top: 100%;
    left: 0;
    width: 320px;
    max-height: 541px;
    overflow: auto;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.navbar-category-dropdown.dropdown-menu {
    margin: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.navbar-category-dropdown.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0;
    border-radius: 0;
}

.navbar-category-dropdown::-webkit-scrollbar {
    width: 5px;
}

.navbar-category-dropdown::-webkit-scrollbar-thumb {
    background: #a2a2a2;
}

.navbar-category-dropdown::-webkit-scrollbar-track {
    background: #e2e2e2;
}

.navbar-category-dropdown ul {
    border: 1px solid #e7e7e7;
    padding-top: 25px;
    padding-bottom: 25px;
    list-style-type: none;
    padding-left: 0;
}

.navbar-category-dropdown ul li {
    padding: 0 25px;
}

.navbar-category-dropdown ul li:last-child a {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.navbar-category-dropdown ul li a {
    display: block;
    color: #3b3b3b;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    font-size: 15px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/*
Cart Shit Area Style
======================================================*/
.cart-shit .cart-shit-wrap {
    max-width: 1302px;
    margin-left: auto;
    margin-top: 135px;
    margin-right: auto;
}

.cart-shit .modal-dialog {
    margin-left: auto;
    margin-right: 0;
}

.cart-shit .modal-body {
    padding: 30px;
    padding-top: 0;
}

.cart-shit .close-btn {
    position: absolute;
    top: 0;
    right: 4px;
    font-size: 25px;
    background-color: transparent;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.cart-shit .close-btn:hover {
    color: #3854a7;
}

.cart-shit .modal-header {
    border: none;
}

.cart-shit .modal-content {
    border-radius: 0;
    height: 538px;
    overflow: auto;
}

.cart-shit .modal-content::-webkit-scrollbar {
    width: 5px;
}

.cart-shit .modal-content::-webkit-scrollbar-thumb {
    background: #a2a2a2;
}

.cart-shit .modal-content::-webkit-scrollbar-track {
    background: #e2e2e2;
}

.cart-shit .cart-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.cart-shit .cart-list li {
    display: inline-block;
    padding-left: 90px;
    margin-bottom: 20px;
    padding-right: 50px;
    position: relative;
}

.cart-shit .cart-list li i {
    position: absolute;
    top: 23px;
    right: 0;
    cursor: pointer;
    font-size: 20px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.cart-shit .cart-list li i:hover {
    color: #3854a7;
}

.cart-shit .cart-list li:last-child {
    margin-bottom: 0;
}

.cart-shit .cart-list li a {
    display: block;
    font-size: 14px;
    color: #111111;
}

.cart-shit .cart-list li img {
    max-width: 73px;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #dddddd;
}

.cart-shit .cart-list li span {
    display: block;
    color: #3854a7;
    margin-top: 8px;
}

.cart-shit .payable {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cart-shit .payable li {
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #111111;
}

.cart-shit .payable li.total {
    float: right;
}

.cart-shit .cart-check-btn {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.cart-shit .cart-check-btn li {
    display: inline-block;
}

.cart-shit .cart-check-btn li.checkout {
    float: right;
}

/*
Hero Area Style
======================================================*/
.hero-slider-area {
    overflow: hidden;
}

.hero-slider-area .owl-item.active .hero-slider-content {
    overflow: hidden;
}

.hero-slider-area .owl-item.active .hero-slider-content span {
    -webkit-animation: 0.6s fadeInLeft both;
    animation: 0.6s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content h1 {
    -webkit-animation: 0.9s fadeInLeft both;
    animation: 0.9s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content p {
    -webkit-animation: 1s fadeInLeft both;
    animation: 1s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content h3 {
    -webkit-animation: 1s fadeInLeft both;
    animation: 1s fadeInLeft both;
}

.hero-slider-area .owl-item.active .hero-slider-content .hero-slider-btn {
    -webkit-animation: 1s fadeInLeft both;
    animation: 1s fadeInLeft both;
}

.hero-slider-area .owl-dots {
    line-height: 1;
    margin-top: 0 !important;
    position: absolute;
    left: 40px;
    bottom: 80px;
    display: block;
    width: 100%;
    max-width: 1320px;
    margin: auto;
    right: 0;
    text-align: left;
}

.hero-slider-area .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 0 10px;
    background: transparent !important;
    border: 1px solid #ffffff;
    border-radius: 50%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    position: relative;
}

.hero-slider-area .owl-dots .owl-dot span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 50%;
    margin: 3px;
}

.hero-slider-area .owl-dots .owl-dot:hover span {
    border-color: #3854a7;
}

.hero-slider-area .owl-dots .owl-dot:hover span::before {
    background-color: #3854a7;
}

.hero-slider-area .owl-dots .owl-dot.active span {
    border-color: #3854a7;
}

.hero-slider-area .owl-dots .owl-dot.active span::before {
    background-color: #3854a7;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content {
    max-width: 900px;
    padding: 0;
}

.hero-slider-area.hero-slider-area-style-two .hero-slider-content h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero-slider-area.hero-slider-area-style-three {
    padding-top: 24px;
}

.hero-slider-area.hero-slider-area-style-three .hero-slider-content {
    max-width: 630px;
}

.hero-slider-area.hero-slider-area-style-three .hero-slider-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-slider-area.hero-slider-area-style-three .hero-slider-content h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-slider-area.hero-slider-area-style-three .hero-slider-content h3 sub {
    font-weight: normal;
    font-size: 20px;
}

.hero-slider-area.hero-slider-area-style-three .hero-slider-content h3 sup {
    font-weight: normal;
    font-size: 20px;
}

.hero-slider-area.hero-slider-area-style-three .owl-dots {
    max-width: 966px;
    left: 42px;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools {
    background-image: url(../images/offer-tools-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 48%;
    padding: 20px;
    margin-bottom: 24px;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools.bg-2 {
    background-image: url(../images/offer-tools-2.jpg);
    margin-bottom: 0;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools h3 {
    font-size: 24px;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools h3.ffffff {
    color: #ffffff;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools h3.3854a7 {
    color: #3854a7;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools .read-more {
    color: #111111;
    margin-top: 20px;
    display: inline-block;
}

.hero-slider-area.hero-slider-area-style-three .offer-tools:hover {
    color: #3854a7;
}

.read-more:hover {
    color: #ffffff;
}

.hero-slider {
    max-width: 952px;
    margin-left: auto;
    margin-right: 0;
}

.slider-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding-top: 141px;
    padding-bottom: 141px;
}

.slider-item.bg-1 {
    background-image: url(../images/slider/bg-1.jpg);
}

.slider-item.bg-2 {
    background-image: url(../images/slider/bg-2.jpg);
}

.slider-item.bg-3 {
    background-image: url(../images/slider/bg-3.jpg);
}

.slider-item.bg-4 {
    background-image: url(../images/slider/bg-4.jpg);
}

.slider-item.bg-5 {
    background-image: url(../images/slider/bg-5.jpg);
}

.slider-item.bg-6 {
    background-image: url(../images/slider/bg-6.jpg);
}

.slider-item.bg-7 {
    background-image: url(../images/slider/bg-7.jpg);
}

.slider-item.bg-8 {
    background-image: url(../images/slider/bg-8.jpg);
}

.slider-item.bg-9 {
    background-image: url(../images/slider/bg-9.jpg);
}

.hero-slider-content {
    padding: 0 50px;
    max-width: 600px;
}

.hero-slider-content span {
    color: #111111;
    display: block;
    margin-bottom: 10px;
}

.hero-slider-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
}

.hero-slider-content p {
    color: #111111;
    margin-bottom: 30px;
}

/*
Services Area Style
======================================================*/
.single-services {
    border: 1px solid #dddddd;
    padding: 30px;
    position: relative;
    padding-left: 115px;
    margin-bottom: 24px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    background-color: #162f4d;
    color: white;
    height: 80%;
}

.service-cart {
    padding: 30px;
    text-align: center;
}

.single-services-color {
    color: white;
}

.single-services.bg-e6f7f6 {
    background-color: #e6f7f6;
}

.single-services.bg-e6f7f6 .icon {
    background-color: #ffffff;
}

.single-services.bg-fff5e7 {
    background-color: #fff5e7;
}

.single-services.bg-fff5e7 .icon {
    background-color: #ffffff;
}

.single-services.bg-eff5ff {
    background-color: #eff5ff;
}

.single-services.bg-eff5ff .icon {
    background-color: #ffffff;
}

.single-services .icon {
    background-color: #f5f5f5;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    position: absolute;
    top: 28px;
    left: 30px;
}

.single-services .icon img {
    width: auto;
}

.single-services h3 {
    font-size: 20px;
}

.single-services:hover {
    border-color: #3854a7;
}

/*
Products Area Style
======================================================*/
.best-seller-area .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    margin-top: 0;
}

.best-seller-area .owl-nav .owl-prev,
.best-seller-area .owl-nav .owl-next {
    background-color: transparent;
    border: 2px solid #dddddd !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #9c9c9c;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin: 0;
    margin-left: 15px;
}

.best-seller-area .owl-nav .owl-prev i,
.best-seller-area .owl-nav .owl-next i {
    font-size: 27px;
    position: relative;
    top: -1px;
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.best-seller-area .owl-nav .owl-prev:hover,
.best-seller-area .owl-nav .owl-next:hover {
    background-color: transparent;
    background-color: #3854a7;
    border-color: #3854a7 !important;
}

.best-seller-area .owl-nav .owl-prev:hover i,
.best-seller-area .owl-nav .owl-next:hover i {
    color: #ffffff;
}

.best-seller-area .owl-nav .owl-next i {
    right: -1px;
}

.single-products {
    /* border: 1px solid #dddddd;
  margin-bottom: 24px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s; */

    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 3px;
    position: relative;
    background: var(--white);
    border: 1px solid var(--ghost-white);
    border-radius: 8px;
    padding: 16px;
    position: relative;
    margin: 5px 15px 5px 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    height: 100%;
}

.single-products2 {
    /* border: 1px solid #dddddd;
  margin-bottom: 24px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s; */

    border-radius: 8px;
    padding: 3px;
    position: relative;
    background: var(--white);
    border: 1px solid var(--ghost-white);
    border-radius: 8px;
    padding: 16px;
    /* width: 70%; */
    position: relative;
    margin: 5px 15px 5px 0;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        /* Light shadow */ 0 1px 3px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
    background-color: white;
    border: 1px solid #c4c4c4;
}

.single-products-2-search {
    /* border: 1px solid #dddddd;
  margin-bottom: 24px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s; */

    border-radius: 8px;
    padding: 3px;
    position: relative;
    background: var(--white);
    border: 1px solid var(--ghost-white);
    border-radius: 8px;
    padding: 16px;
    /* width: 70%; */
    position: relative;
    margin: 5px 15px 5px 0;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        /* Light shadow */ 0 1px 3px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
    background-color: white;
    border: 1px solid #c4c4c4;
}

.single-products3 {
    /* border: 1px solid #dddddd;
  margin-bottom: 24px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s; */

    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 3px;
    position: relative;
    background: var(--white);
    border: 1px solid var(--ghost-white);
    border-radius: 8px;
    padding: 16px;
    position: relative;
    margin: 5px 15px 5px 0;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    min-height: 350px;
}

.smilar-slider {
    background-color: white;
    /* box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3); */
    border-radius: 10px;
    padding: 10px;
}

.single-products.deals-products {
    padding: 0;
    border: none;
}

.single-products.deals-products .product-img {
    position: relative;
    border: none;
    width: 100%;
    max-width: 100%;
}

.single-products.deals-products .product-img .hot {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    top: 20px;
    left: 20px;
}

.single-products.deals-products:hover {
    border-color: #3854a7;
}

.single-products.deals-products:hover .product-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.single-products.deals-products .product-content {
    padding: 0;
    border: none;
}

.single-products.deals-products .product-content .title {
    margin-bottom: 10px;
}

.single-products.deals-products .product-content .in-stock {
    color: #30b239;
    display: block;
    margin-bottom: 8px;
}

.single-products.deals-products .product-content #timer,
.single-products.deals-products .product-content #timers,
.single-products.deals-products .product-content #timerss {
    margin-top: 0;
    margin-bottom: 15px;
}

.single-products.deals-products .product-content #timer div,
.single-products.deals-products .product-content #timers div,
.single-products.deals-products .product-content #timerss div {
    display: inline-block;
    position: relative;
    background-color: #f3f3f3;
    color: #9c9c9c;
    width: 40px;
    height: 40px;
    line-height: 16px;
    border-radius: 0;
    padding-top: 13px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-right: 10px;
}

.single-products.deals-products .product-content #timer div span,
.single-products.deals-products .product-content #timers div span,
.single-products.deals-products .product-content #timerss div span {
    display: block;
    text-transform: capitalize;
    margin-top: -6px;
    font-size: 17px;
    font-weight: 500;
    display: none;
}

.single-products.deals-products .product-content #timer div::before,
.single-products.deals-products .product-content #timers div::before,
.single-products.deals-products .product-content #timerss div::before {
    content: "";
    position: absolute;
    right: -9px;
    top: 25px;
    z-index: 1;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9c9c9c;
}

.single-products.deals-products .product-content #timer div::after,
.single-products.deals-products .product-content #timers div::after,
.single-products.deals-products .product-content #timerss div::after {
    content: "";
    position: absolute;
    right: -9px;
    bottom: 25px;
    z-index: 1;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9c9c9c;
}

.single-products.deals-products .product-content #timer div:last-child,
.single-products.deals-products .product-content #timers div:last-child,
.single-products.deals-products .product-content #timerss div:last-child {
    margin-right: 0;
}

.single-products.deals-products .product-content #timer div:last-child::before,
.single-products.deals-products .product-content #timers div:last-child::before,
.single-products.deals-products
    .product-content
    #timerss
    div:last-child::before {
    display: none;
}

.single-products.deals-products .product-content #timer div:last-child::after,
.single-products.deals-products .product-content #timers div:last-child::after,
.single-products.deals-products
    .product-content
    #timerss
    div:last-child::after {
    display: none;
}

.single-products.new-arrivals {
    padding: 0;
}

.single-products.new-arrivals .product-content {
    padding: 15px;
}

.single-products.new-arrivals .product-content .products-cart-wish-view li {
    margin-right: 5px;
}

.single-products.new-arrivals
    .product-content
    .products-cart-wish-view
    li
    .default-btn {
    padding: 11px 8px;
    font-size: 12px;
}

.default-btn2 {
    padding: 11px 8px;
    font-size: 12px;
}

.single-products.new-arrivals
    .product-content
    .products-cart-wish-view
    li
    .wish-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    top: 3px;
}

.single-products.new-arrivals
    .product-content
    .products-cart-wish-view
    li
    .eye-btn {
    width: 30px;
    height: 30px;
    line-height: 29px;
    font-size: 16px;
    top: 3px;
}

.single-products .product-img {
    position: relative;
}

.single-products .product-img .hot {
    background-color: #ff0707;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.single-products .product-img .hot.new {
    background-color: #3854a7;
}

.single-products .product-img img {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    z-index: -1;
    position: relative;
}

.single-products .product-img a {
    display: block;
}

.single-products .product-content {
    border-top: 1px solid #dddddd;
    padding: 15px;
}

.single-products .product-content .title {
    color: #111111;
    margin-bottom: 12px;
    display: block;
    font-size: 13px;
}

.single-products .product-content .title:hover {
    color: #3854a7;
}

.single-products .product-content .products-rating {
    padding: 0;
    margin-bottom: 10px;
    list-style: none;
}

.single-products .product-content .products-rating li {
    display: inline-block;
}

.single-products .product-content .products-rating li i {
    color: #3854a7;
}

.single-products .product-content .products-rating li a {
    position: relative;
    top: -2px;
    margin-left: 5px;
    font-size: 14px;
}

.single-products .product-content .products-price {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 12px;
}

.single-products .product-content .products-price li {
    display: inline-block;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
}

.single-products .product-content .products-price li span {
    color: #30b239;
    font-size: 14px;
    font-weight: normal;
}

.single-products .product-content .products-price li del {
    color: #9c9c9c;
    margin-left: 5px;
    margin-right: 5px;
}

.single-products .product-content .products-cart-wish-view {
    padding: 0;
    margin: 0;
    list-style: none;
}

.single-products .product-content .products-cart-wish-view li {
    display: inline-block;
    margin-right: 13px;
}

.single-products .product-content .products-cart-wish-view li:last-child {
    margin-right: 0;
}

.single-products .product-content .products-cart-wish-view li .default-btn {
    padding: 12px 20px;
    font-size: 15px;
    border: 1px solid #3854a7;
    background-color: transparent;
    color: #3854a7;
}

.default-btn2 {
    font-size: 15px;
    border: 1px solid #3854a7;
    background-color: transparent;
    color: #3854a7;
}

.single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn::before,
.single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn::after {
    background-color: #3854a7;
}

.single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn2::before,
.single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn2::after {
    background-color: #3854a7;
}

.single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn:hover {
    border-color: #3854a7;
    background-color: #3854a7;
    color: #ffffff;
}

.single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn2:hover {
    border-color: #3854a7;
    background-color: #3854a7;
    color: #ffffff;
}

.single-products .product-content .products-cart-wish-view li .wish-btn {
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border: 1px solid #dddddd;
    display: block;
    position: relative;
    top: 6px;
    border-radius: 50px;
    font-size: 22px;
}

.single-products .product-content .products-cart-wish-view li .wish-btn:hover {
    border-color: #3854a7;
    background-color: #3854a7;
    color: #ffffff;
}

.single-products .product-content .products-cart-wish-view li .eye-btn {
    width: 42px;
    height: 42px;
    line-height: 41px;
    text-align: center;
    border: 1px solid #dddddd;
    display: block;
    position: relative;
    top: 5px;
    border-radius: 50px;
    font-size: 22px;
    background-color: transparent;
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    cursor: pointer;
}

.single-products .product-content .products-cart-wish-view li .eye-btn:hover {
    border-color: #3854a7;
    background-color: #3854a7;
    color: #ffffff;
}

.single-products:hover {
    border-color: #3854a7;
}

/*
Product View One Style
=================================================*/
.product-view-one {
    padding-left: 10px !important;
    width: fit-content !important;
}

.product-view-one.modal.show .modal-dialog {
    margin-top: 25px;
}

.product-view-one .product-view-one-image {
    position: relative;
    overflow: hidden;
    background-color: white;
}

.product-view-one-image img {
    width: 100%;
    height: 5%;
    cursor: crosshair;
}

.zoomed-image {
    position: absolute;
    top: 0;
    left: 50%;
    /* Position the zoom window on the right */
    width: 50%;
    height: 50%;
    max-width: 50%;
    max-height: 30%;
    background-repeat: no-repeat;
    /* Adjust to control zoom level */
    border: 1px solid #ccc;
    background-color: #ccc;
    display: inline-block;
    pointer-events: none;
    z-index: 1000;
}

.user-icon-css {
    font-size: 18px;

    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.user-icon-container:hover {
    background-color: #ffffff;
    color: #000;
    border-radius: 10px;
    height: 4rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* User Profile Dropdown */
.user-dropdown-menu {
    display: none;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 35px;
    left: 0;
    width: 200px;
    padding: 10px;
    z-index: 10;
    margin-left: -30px;
    margin-top: 5px;
}

/* Centered Triangle at the Top */
.user-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.user-dropdown-item {
    display: flex;
    padding: 3px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-left: -30px;
}

.user-dropdown-item i {
    margin-right: 10px;
    font-size: 16px;
}

.user-dropdown-item:hover {
    color: #f94d00 !important;
}

.user-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-icon-container:hover .user-dropdown-menu {
    display: block;
}

.form-select option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-select-text {
    font-size: 16px;
}

.form-select img {
    vertical-align: middle;
}

.user-icon {
    font-size: 24px;
    cursor: pointer;
}

.enquiry-button {
    text-align: center;
    background-color: #162f4d;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
}

.enquiry-button:hover {
    color: #ffffff;
    background-color: #f94d00;
    border-color: transparent;
}

.product-view-one .modal-dialog {
    margin: 0 auto;
    background-color: #0000ff;
}

.product-view-one .modal-content {
    border: none;
    padding: 40px;
    border-radius: 0;
    overflow: scroll;
}

.product-view-one .modal-content button.close {
    position: absolute;
    right: 0;
    top: 0;
    outline: 0;
    opacity: 1;
    color: #111111;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    line-height: 35px;
    padding: 0;
    margin: 0;
    font-size: 20px;
    width: 35px;
    text-shadow: unset;
    height: 35px;
}

.product-view-one .modal-content button.close:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.product-view-one .modal-content .product-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 500;
}

.product-view-one .modal-content .product-content h3 a {
    color: #111111;
}

.product-view-one .modal-content .product-content h3 a:hover {
    color: #111111;
}

.product-view-one .modal-content .product-content .price {
    margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .price .new-price {
    display: inline-block;
    font-size: 25px;
    color: #000;
    font-weight: bold;
}

.product-view-one .modal-content .product-content .price .new-price del {
    display: inline-block;
    font-size: 18px;
    color: #c1c1c1;
    margin-left: 5px;
}

.product-view-one .modal-content .product-content .in-stock {
    margin-left: 10px;
    color: #30b239;
    font-size: 14px;
    position: relative;
    top: -2px;
}

.product-view-one .modal-content .product-content .product-review {
    margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .product-review .rating {
    display: inline-block;
    padding-right: 5px;
}

.product-view-one .modal-content .product-content .product-review .rating i {
    color: #f94d00;
}

.product-view-one
    .modal-content
    .product-content
    .product-review
    .rating-count {
    display: inline-block;
    color: #111111;
    line-height: initial;
    position: relative;
    top: -2px;
}

.home-rating-count {
    display: inline-block;
    color: #111111;
    line-height: initial;
    position: relative;
    top: -2px;
    left: -50px;
}

.home-product-review {
    display: inline-block;
    color: #3854a7;
    line-height: initial;
    position: relative;
    top: -2px;
}

.home-rating-count:hover {
    color: #3854a7;
}

.product-view-one
    .modal-content
    .product-content
    .product-review
    .rating-count:hover {
    color: #3854a7;
}

.product-view-one .modal-content .product-content .product-info {
    list-style-type: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.product-view-one .modal-content .product-content .product-info li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #111111;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .product-info li:last-child {
    margin-bottom: 0;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .product-info li p {
    font-size: 15px;
    color: #9c9c9c;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .product-info li span {
    font-size: 14px;
    color: #111111;
    font-weight: 500;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .product-info li a {
    display: inline-block;
    color: #111111;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .product-info li a:hover {
    color: #111111;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .product-color-switch {
    margin-top: 0;
    margin-bottom: 15px;
}

.product-view-one .modal-content .product-content .product-color-switch ul {
    list-style-type: none;
    margin-bottom: 0;
    margin-top: -4px;
    margin-left: -4px;
    padding-left: 0;
}

.product-view-one .modal-content .product-content .product-color-switch ul li {
    display: inline-block;
    margin-left: 4px;
    margin-top: 4px;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    span {
    position: relative;
    top: 4px;
    font-size: 14px;
    color: #111111;
    font-weight: 500;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button {
    display: inline-block;
    position: relative;
    border: 1px solid transparent;
    width: 25px;
    height: 25px;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #eeeeee;
    margin: 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button.color-white::before {
    background: #0000ff;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button.color-black::before {
    background: #222222;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button.color-green::before {
    background: #008000;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button.color-yellowgreen::before {
    background: #9acd32;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button.color-teal::before {
    background: #008080;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button:hover {
    border-color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li
    button:focus {
    border-color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-color-switch
    ul
    li.active
    button {
    border-color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter {
    max-width: 130px;
    min-width: 130px;
    margin-right: 10px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 10px;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    span {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #dddddd;
    cursor: pointer;
    color: #9c9c9c;
    width: 30px;
    height: 30px;
    line-height: 30px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 50px;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    span:hover {
    color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    .minus-btn {
    left: auto;
    right: 10px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    .minus-btn:hover {
    background-color: #3854a7;
    color: #ffffff;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    .plus-btn {
    right: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    .plus-btn:hover {
    background-color: #3854a7;
    color: #ffffff;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    input {
    height: 45px;
    color: #111111;
    outline: 0;
    display: block;
    border: none;
    background-color: transparent;
    border: 1px solid #575757;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    input::-webkit-input-placeholder {
    color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    input:-ms-input-placeholder {
    color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    input::-ms-input-placeholder {
    color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .input-counter
    input::placeholder {
    color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .default-btn {
    padding: 14px 15px;
}

.product-view-one
    .modal-content
    .product-content
    .product-add-to-cart
    .default-btn2 {
    padding: 14px 15px;
}

.product-view-one .modal-content .product-content .wishlist-btn {
    margin-top: 15px;
}

.product-view-one .modal-content .product-content .wishlist-btn .default-btn {
    padding: 14px 23px;
    background-color: transparent;
    border: 1px solid #dddddd;
    color: #9c9c9c;
}

.product-view-one .modal-content .product-content .wishlist-btn .default-btn2 {
    padding: 14px 23px;
    background-color: transparent;
    border: 1px solid #dddddd;
    color: #9c9c9c;
}

.product-view-one
    .modal-content
    .product-content
    .wishlist-btn
    .default-btn::before,
.product-view-one
    .modal-content
    .product-content
    .wishlist-btn
    .default-btn::after {
    background-color: #3854a7;
}

.product-view-one
    .modal-content
    .product-content
    .wishlist-btn
    .default-btn2::before,
.product-view-one
    .modal-content
    .product-content
    .wishlist-btn
    .default-btn2::after {
    background-color: #3854a7;
}

.product-view-one
    .modal-content
    .product-content
    .wishlist-btn
    .default-btn:hover {
    border-color: #3854a7;
    color: #ffffff;
}

.product-view-one
    .modal-content
    .product-content
    .wishlist-btn
    .default-btn2:hover {
    border-color: #3854a7;
    color: #ffffff;
}

.product-view-one .modal-content .product-content .share-this-product {
    margin-top: 15px;
}

.product-view-one .modal-content .product-content .share-this-product ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.product-view-one .modal-content .product-content .share-this-product ul li {
    display: inline-block;
    margin-right: 3px;
}

.product-view-one
    .modal-content
    .product-content
    .share-this-product
    ul
    li
    span {
    position: relative;
    top: -2px;
    font-size: 14px;
    color: #111111;
    font-weight: 500;
    margin-right: 10px;
}

.product-view-one
    .modal-content
    .product-content
    .share-this-product
    ul
    li
    a
    i {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    color: #111111;
}

.product-view-one
    .modal-content
    .product-content
    .share-this-product
    ul
    li
    a:hover
    i {
    background-color: #3854a7;
    color: #ffffff;
}

.product-view-one .owl-carousel .owl-item img {
    width: unset;
    margin: auto;
}

.product-view-one #big .item {
    padding: 30px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.product-view-one .owl-item.active.current {
    background-color: #3854a7 !important;
    padding: 2px;
}

.product-view-one.fade {
    -webkit-animation: zoomIn 1s linear;
    animation: zoomIn 1s linear;
}

.product-view-one .owl-next {
    position: absolute;
    top: 50%;
    right: 50px;
    margin: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}

.product-view-one .owl-next i {
    background-color: #3854a7;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border-radius: 4px;
    font-size: 15px;
}

.product-view-one .owl-prev {
    position: absolute;
    top: 50%;
    left: 50px;
    margin: 0 !important;
    border-radius: 0 !important;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    opacity: 0;
    -webkit-transform: translateY(-25px);
    transform: translateY(-25px);
}

.product-view-one .owl-prev i {
    background-color: #3854a7 !important;
    color: #ffffff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    font-size: 15px;
    border-radius: 4px;
}

.product-view-one .owl-theme .owl-nav {
    margin-top: 0 !important;
}

.product-view-one .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: transparent;
}

.product-view-one:hover .owl-prev {
    opacity: 1;
    left: 0;
}

.product-view-one:hover .owl-next {
    opacity: 1;
    right: 0;
}

/*
Sale Offer Bg Style
=================================================*/
.sale-offer-bg {
    background-image: url(../images/sale-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 100px;
}

.sale-offer-bg.bg-2 {
    background-image: url(../images/sale-bg-2.jpg);
}

.sale-offer-bg.product-page {
    height: auto;
    padding: 50px;
}

.sale-offer-bg h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sale-offer-bg h5 span {
    color: #3854a7;
}

.sale-offer-bg h3 {
    font-size: 25px;
    margin-bottom: 35px;
}

/*
Featured Products Style
=================================================*/
.featured-products-area .owl-nav {
    position: absolute;
    top: -55px;
    right: 0;
    margin-top: 0;
}

.featured-products-area .owl-nav .owl-prev,
.featured-products-area .owl-nav .owl-next {
    background-color: transparent;
    border: 2px solid #dddddd !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #9c9c9c;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin: 0;
    margin-left: 15px;
}

.featured-products-area .owl-nav .owl-prev i,
.featured-products-area .owl-nav .owl-next i {
    font-size: 27px;
    position: relative;
    top: -1px;
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.featured-products-area .owl-nav .owl-prev:hover,
.featured-products-area .owl-nav .owl-next:hover {
    background-color: transparent;
    background-color: #3854a7;
    border-color: #3854a7 !important;
}

.featured-products-area .owl-nav .owl-prev:hover i,
.featured-products-area .owl-nav .owl-next:hover i {
    color: #ffffff;
}

.featured-products-area .owl-nav .owl-next i {
    right: -1px;
}

.featured-product-img {
    background-image: url(../images/featured-offer-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
}

.featured-product-img.bg-2 {
    background-image: url(../images/featured-offer-img-2.png);
}

.featured-product-img.bg-2::after {
    display: none;
}

.featured-product-img.bg-2 .featured-product-content {
    bottom: auto;
    top: 0;
}

.featured-product-img.bg-2 .featured-product-content .best {
    color: #111111;
}

.featured-product-img.bg-2 .featured-product-content h3 {
    color: #111111;
}

.featured-product-img.bg-2 .featured-product-content .offer {
    color: #111111;
}

.featured-product-img.bg-2 .featured-product-content a {
    color: #111111;
}

.featured-product-img.bg-3 {
    background-image: url(../images/featured-offer-img-3.jpg);
}

.featured-product-img.bg-3::after {
    display: none;
}

.featured-product-img.bg-3 .featured-product-content {
    bottom: auto;
    top: 0;
    text-align: center;
    left: 0;
    right: 0;
}

.featured-product-img.bg-3 .featured-product-content .best {
    color: #111111;
}

.featured-product-img.bg-3 .featured-product-content h3 {
    color: #111111;
}

.featured-product-img.bg-3 .featured-product-content .offer {
    color: #111111;
}

.featured-product-img.bg-3 .featured-product-content a {
    color: #111111;
}

.featured-product-img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 24px;
    background-color: #ffffff;
}

.featured-product-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        from(rgba(0, 0, 0, 0.9)),
        to(transparent)
    );
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: -1;
}

.featured-product-img .featured-product-content {
    position: absolute;
    padding: 30px;
    bottom: 20px;
    left: 0;
}

.featured-product-img .featured-product-content .best {
    font-size: 13px;
    color: #ffffff;
    display: block;
    margin-bottom: 6px;
}

.featured-product-img .featured-product-content h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}

.featured-product-img .featured-product-content .offer {
    color: #ffffff;
    display: block;
    margin-bottom: 30px;
}

.featured-product-img .featured-product-content a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: underline;
}

.featured-product-img .featured-product-content a:hover {
    color: #3854a7;
}

/*
Flash Style
=================================================*/
.flash-deals-area .owl-nav {
    position: absolute;
    top: -79px;
    right: -24px;
    margin-top: 0;
}

.flash-deals-area .owl-nav .owl-prev,
.flash-deals-area .owl-nav .owl-next {
    background-color: transparent;
    border: 2px solid #dddddd !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #9c9c9c;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin: 0;
    margin-left: 15px;
}

.flash-deals-area .owl-nav .owl-prev i,
.flash-deals-area .owl-nav .owl-next i {
    font-size: 27px;
    position: relative;
    top: -1px;
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.flash-deals-area .owl-nav .owl-prev:hover,
.flash-deals-area .owl-nav .owl-next:hover {
    background-color: transparent;
    background-color: #3854a7;
    border-color: #3854a7 !important;
}

.flash-deals-area .owl-nav .owl-prev:hover i,
.flash-deals-area .owl-nav .owl-next:hover i {
    color: #ffffff;
}

.flash-deals-area .owl-nav .owl-next i {
    right: -1px;
}

.flash-deals-img {
    background-image: url(../images/mega-sale-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
}

.flash-deals-img .flash-deals-content {
    position: absolute;
    padding: 30px;
    top: 0;
    left: 0;
}

.flash-deals-img .flash-deals-content .best {
    font-size: 13px;
    color: #111111;
    display: block;
    margin-bottom: 6px;
}

.flash-deals-img .flash-deals-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.flash-deals-img .flash-deals-content .offer {
    color: #111111;
    display: block;
    margin-bottom: 30px;
}

.flash-deals-img .flash-deals-content a {
    color: #111111;
    font-size: 14px;
    text-decoration: underline;
}

.flash-deals-img .flash-deals-content a:hover {
    color: #3854a7;
}

.flash-deals-wrap {
    border: 1px solid #dddddd;
    padding: 24px;
    padding-bottom: 0;
}

.flash-deals-wrap.need-border {
    border-color: #3854a7;
}

.flash-deals-wrap.need-border
    .single-products.deals-products
    .product-content
    #timer
    div,
.flash-deals-wrap.need-border
    .single-products.deals-products
    .product-content
    #timers
    div,
.flash-deals-wrap.need-border
    .single-products.deals-products
    .product-content
    #timerss
    div {
    background-color: #3854a7;
    color: #ffffff;
}

/*
Trending Products Style
=================================================*/
.trending-product-list {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #dddddd;
    padding: 20px;
}

.trending-product-list .single-list {
    position: relative;
    padding-left: 112px;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.trending-product-list .single-list .hot {
    background-color: #ff0707;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
}

.trending-product-list .single-list .hot.new {
    background-color: #3854a7;
}

.trending-product-list .single-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trending-product-list .single-list img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 112px;
}

.trending-product-list .single-list .product-content .title {
    color: #111111;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}

.trending-product-list .single-list .product-content .title:hover {
    color: #3854a7;
}

.trending-product-list .single-list .product-content .products-price {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 8px;
}

.trending-product-list .single-list .product-content .products-price li {
    display: inline-block;
    color: #000;
    font-size: 17px;
    font-weight: bold;
    margin-top: 7px;
}

.trending-product-list .single-list .product-content .products-price li del {
    color: #9c9c9c;
    margin-left: 5px;
    margin-right: 5px;
}

.trending-product-list .single-list .product-content .products-rating {
    padding: 0;
    margin: 0;
    list-style: none;
}

.trending-product-list .single-list .product-content .products-rating li {
    display: inline-block;
}

.trending-product-list .single-list .product-content .products-rating li i {
    color: #3854a7;
}

.trending-product-list .single-list .product-content .products-rating li a {
    position: relative;
    top: -2px;
    margin-left: 5px;
    font-size: 14px;
}

.trending-product-list.special-product-list {
    margin-bottom: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.trending-product-list.special-product-list .single-list img {
    max-width: 80px;
}

/*
Sale Discount Bg Style
=================================================*/
.sale-discount-bg {
    background-image: url(../images/discount-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 100px;
    position: relative;
    z-index: 1;
}

.sale-discount-bg .discount-content {
    max-width: 400px;
    text-align: center;
}

.sale-discount-bg .discount-content h5 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.sale-discount-bg .discount-content h3 {
    font-size: 25px;
    margin-bottom: -5px;
    color: #ffffff;
    line-height: 1.5;
}

/*
Categories Style
=================================================*/
.single-categories {
    border: 1px solid #dddddd;
    padding: 20px;
    position: relative;
    margin-bottom: 24px;
    z-index: 1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    padding-right: 180px;
    background-color: #162f4d;
    color: white;
}

.single-name {
    color: white;
}

.single-categories::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #fff3ef;
    z-index: -1;
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.single-categories.bg-eff5ff::before {
    background-color: #eff5ff;
}

.single-categories.bg-ebf1f5::before {
    background-color: #ebf1f5;
}

.single-categories.bg-ebf9ea::before {
    background-color: #ebf9ea;
}

.single-categories.bg-fff8e5::before {
    background-color: #fff8e5;
}

.single-categories.bg-f3f1ff::before {
    background-color: #f3f1ff;
}

.single-categories img {
    position: absolute;
    top: 7px;
    right: 35px;
    max-width: 120px;
    margin-left: 130px;
}

.single-categories h3 {
    font-size: 20px;
}

.single-categories h3 a {
    color: white;
}

.single-categories span {
    display: block;
    margin-bottom: 20px;
}

.single-categories:hover {
    border-color: #3854a7;
}

.single-categories:hover h3 a {
    color: #ffffff;
}

/*
Blog Area Style
======================================================*/
.single-blog {
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-bottom: 24px;
}

.single-blog.blog-post .blog-content h3 {
    margin-bottom: 12px;
}

.single-blog .blog-content {
    margin-top: 20px;
}

.single-blog .blog-content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    line-height: 1;
    margin-bottom: 10px;
}

.single-blog .blog-content ul li {
    display: inline-block;
    margin-right: 15px;
    padding-right: 15px;
    position: relative;
    font-size: 14px;
}

.single-blog .blog-content ul li::before {
    content: "";
    position: absolute;
    top: 0;
    right: -3px;
    width: 1px;
    height: 100%;
    background-color: #9c9c9c;
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
}

.single-blog .blog-content ul li:last-child::before {
    display: none;
}

.single-blog .blog-content h3 {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.single-blog .blog-content h3 a {
    color: #111111;
}

.single-blog .blog-content .default-btn {
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid #dddddd;
    color: #111111;
}

.single-blog .blog-content .default-btn2 {
    padding: 12px 20px;
    background-color: transparent;
    border: 1px solid #dddddd;
    color: #111111;
}

.single-blog .blog-content .default-btn::before,
.single-blog .blog-content .default-btn::after {
    background-color: #3854a7;
}

.single-blog .blog-content .default-btn2::before,
.single-blog .blog-content .default-btn2::after {
    background-color: #3854a7;
}

.single-blog .blog-content .default-btn:hover {
    color: #ffffff;
}

.single-blog .blog-content .default-btn2:hover {
    color: #ffffff;
}

.single-blog:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.single-blog:hover .blog-content h3 a {
    color: #3854a7;
}

/*
Partner Area Style
======================================================*/
.partner-area .owl-carousel .owl-item img {
    width: auto;
    margin: auto;
}

.partner-area .partner-title {
    text-align: center;
    margin-bottom: 30px;
}

.partner-area .partner-title p {
    margin-top: -9px;
}

.partner-area .partner-title p span {
    color: #3854a7;
}

.partner-wrap {
    border: 1px solid #dddddd;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 10px;
}

.partner-item img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.3;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    cursor: pointer;
}

.partner-item:hover img {
    opacity: 1;
}

/*
Subscribe Area Style
======================================================*/
.subscribe-area {
    background-color: #3854a7;
}

.newsletter-form {
    position: relative;
}

.newsletter-form p {
    margin-bottom: 20px;
    color: #c5c6cd;
}

.newsletter-form .form-control {
    background-color: transparent;
    background-color: #ffffff;
    border: none;
}

.newsletter-form .form-control::-webkit-input-placeholder {
    color: #dddddd;
}

.newsletter-form .form-control:-ms-input-placeholder {
    color: #dddddd;
}

.newsletter-form .form-control::-ms-input-placeholder {
    color: #dddddd;
}

.newsletter-form .form-control::placeholder {
    color: #dddddd;
}

.newsletter-form .submit-btn {
    background-color: #3854a7;
    color: #ffffff;
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 14px 25px;
    height: 49px;
}

.newsletter-form #validator-newsletter {
    color: #ffffff;
    margin-top: 10px;
    position: absolute;
}

.subscribe-content span {
    color: #ffffff;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.subscribe-content h3 {
    font-size: 20px;
    color: #ffffff;
}

.subscribe-content p {
    color: #ffffff;
}

/*
Footer Area Style
======================================================*/
.single-footer-widget {
    margin-bottom: 24px;
}

.single-footer-widget h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.single-footer-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.single-footer-widget .info-list {
    margin-bottom: 20px;
}

.single-footer-widget .info-list li {
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 17px;
}

.single-footer-widget .info-list li:last-child {
    margin-bottom: 0;
}

.single-footer-widget .info-list li i {
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}

.single-footer-widget .info-list li a:hover {
    color: #f94d00;
}

.single-footer-widget .social-link {
    padding: 0;
    list-style-type: none;
}

.single-footer-widget .social-link li {
    display: inline-block;
    margin-right: 10px;
}

.single-footer-widget .social-link li:last-child {
    margin-right: 0;
}

.single-footer-widget .social-link li span {
    margin-right: 20px;
    color: white;
}

.single-footer-widget .import-link li {
    margin-bottom: 10px;
}

.single-footer-widget .import-link li:last-child {
    margin-bottom: 0;
}

.single-footer-widget .app-btn {
    margin-bottom: 20px;
}

.single-footer-widget .app-btn li {
    display: inline-block;
    margin-right: 10px;
}

.single-footer-widget .app-btn li:last-child {
    margin-right: 0;
}

.single-footer-widget .app-btn li a img {
    max-width: 115px;
}

.single-footer-widget .payment {
    color: #111111;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

.single-footer-widget .payment-option li {
    display: inline-block;
    margin-right: 10px;
}

/*
Copy Right Area Style
======================================================*/
.copy-right-area {
    border-top: 1px solid #dddddd;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.copy-right-area p a {
    color: #3854a7;
}

.copy-right-area p a:hover {
    color: #3854a7;
}

/*
Customer Area Style
======================================================*/
.flash-deals-area .owl-carousel .owl-item img {
    width: auto;
}

.flash-deals-area .owl-theme .owl-dots {
    position: absolute;
    top: 50%;
    right: -11px;
    display: -ms-grid;
    display: grid;
    margin-top: 0 !important;
    opacity: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.flash-deals-area .owl-theme .owl-dots .owl-dot span {
    background-color: #ffdbc1;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.flash-deals-area .owl-theme .owl-dots .owl-dot span:hover {
    background-color: #3854a7;
}

.flash-deals-area .owl-theme .owl-dots .owl-dot span.active {
    background-color: #3854a7;
}

.flash-deals-area .owl-theme:hover .owl-dots {
    opacity: 1;
}

.single-customer {
    background-color: #eff5ff;
    padding: 20px;
}

.single-customer.single-card {
    margin-bottom: 24px;
}

.single-customer.bg-fff5e7 {
    background-color: #fff5e7;
}

.single-customer p {
    color: #111111;
}

.single-customer .avatar {
    position: relative;
    padding-left: 85px;
    margin-bottom: 30px;
    margin-top: 14px;
}

.single-customer .avatar .customer {
    border-radius: 50px;
}

.single-customer .avatar img {
    position: absolute;
    top: -14px;
    left: 0;
}

.single-customer .avatar .quote {
    bottom: -20px;
    top: auto;
    text-align: center;
    left: 22px;
}

.single-customer .avatar .avatar-name h3 {
    font-size: 16px;
}

.single-customer .avatar .avatar-name span {
    font-size: 14px;
}

/*
Categories Area Style
======================================================*/
.categories-wrap {
    border: 1px solid #dddddd;
    padding: 24px;
    padding-bottom: 0;
}

.categories-wrap .tabs {
    padding: 0;
    margin: 0;
    list-style-type: none;
    border: 1px solid #dddddd;
    padding-top: 12px;
    margin-bottom: 24px;
}

.categories-wrap .tabs li {
    border: none;
    padding: 0;
    font-size: 16px;
    color: #111111;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-bottom: 13px;
    padding-bottom: 12px;
    border-bottom: 1px solid #dddddd;
    display: block;
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
}

.categories-wrap .tabs li i {
    position: relative;
    top: 2px;
}

.categories-wrap .tabs li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.categories-wrap .tabs li.current {
    color: #3854a7;
}

.categories-wrap .tabs li:hover {
    color: #3854a7;
}

.categories-wrap .owl-nav {
    margin-top: 0;
}

.categories-wrap .owl-nav .owl-prev,
.categories-wrap .owl-nav .owl-next {
    background-color: transparent;
    border: 1px solid #dddddd !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #9c9c9c;
    text-align: center;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin: 0;
    position: absolute;
    top: 50%;
    left: -19px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.categories-wrap .owl-nav .owl-prev i,
.categories-wrap .owl-nav .owl-next i {
    font-size: 27px;
    position: relative;
    top: -1px;
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.categories-wrap .owl-nav .owl-prev:hover,
.categories-wrap .owl-nav .owl-next:hover {
    background-color: transparent;
    background-color: #3854a7;
    border-color: #3854a7 !important;
}

.categories-wrap .owl-nav .owl-prev:hover i,
.categories-wrap .owl-nav .owl-next:hover i {
    color: #ffffff;
}

.categories-wrap .owl-nav .owl-next {
    left: auto;
    right: -19px;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}

.categories-wrap .owl-nav .owl-next i {
    right: -1px;
}

.tab .tabs_item {
    display: none;
}

.tab .tabs_item:first-child {
    display: block;
}

/*
Popular Categories Area Style
======================================================*/
.popular-categories-area .section-title {
    text-align: center;
}

.single-popular-categories {
    background-color: #e6f7f6;
    text-align: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    margin-bottom: 30px;
}

.single-popular-categories a {
    display: block;
    padding: 20px;
}

.single-popular-categories span {
    display: block;
    color: #111111;
    margin-top: 10px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.single-popular-categories:hover {
    background-color: #3854a7;
}

.single-popular-categories:hover span {
    color: #ffffff;
}

/*
Popular Categories (Modern UI)
======================================================*/
.popular-categories-area.popular-modern {
    background: linear-gradient(135deg, #f7f9ff 0%, #f0f4ff 45%, #ffffff 100%);
    padding: 60px 0 40px;
}

.popular-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.popular-heading {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.popular-eyebrow {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7a99;
    font-weight: 600;
}

.popular-subtitle {
    color: #637083;
    margin-bottom: 0;
}

.popular-grid {
    row-gap: 28px;
}

.popular-card {
    background: #ffffff;
    border: 1px solid #e4e8f1;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0, 25, 82, 0.08);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.popular-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: radial-gradient(
        circle at 20% 20%,
        #eef2ff,
        #dfe7ff 40%,
        #f8f9ff
    );
}

.popular-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(56, 84, 167, 0.92);
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    box-shadow: 0 8px 16px rgba(56, 84, 167, 0.22);
}

.popular-chip--light {
    background: rgba(20, 30, 55, 0.78);
}

.popular-card__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popular-card__title {
    font-size: 18px;
    margin: 0;
    color: #0f1c35;
}

.popular-card__cta {
    color: #3854a7;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 25, 82, 0.12);
}

.popular-card:hover .popular-card__media img {
    transform: scale(1.05);
}

.popular-mobile {
    margin-top: 18px;
}

.popular-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 4px 10px;
}

.popular-mobile-head h3 {
    margin: 0;
}

.popular-mobile-hint {
    font-size: 12px;
    color: #6b7a99;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.popular-mobile-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 14px;
    overflow-x: auto;
    padding: 6px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.popular-mobile-scroller::-webkit-scrollbar {
    height: 8px;
}

.popular-mobile-scroller::-webkit-scrollbar-track {
    background: rgba(228, 232, 241, 0.6);
}

.popular-mobile-scroller::-webkit-scrollbar-thumb {
    background: #c7cfe4;
    border-radius: 10px;
}

.popular-mobile-card {
    background: #ffffff;
    border: 1px solid #e4e8f1;
    border-radius: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px;
    box-shadow: 0 12px 24px rgba(0, 25, 82, 0.08);
    scroll-snap-align: start;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    cursor: pointer;
}

.popular-mobile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 25, 82, 0.12);
}

.popular-mobile-img {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #eef2ff;
    flex-shrink: 0;
}

.popular-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-mobile-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.popular-mobile-title {
    margin: 0;
    font-size: 17px;
    color: #0f1c35;
    line-height: 1.25;
}

.popular-footer {
    margin-top: 28px;
    text-align: center;
}

.popular-viewall {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #3854a7;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(56, 84, 167, 0.25);
    border: 1px solid transparent;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.popular-viewall:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(56, 84, 167, 0.32);
    color: #ffffff;
}

@media (max-width: 1199px) {
    .popular-categories-area.popular-modern {
        padding: 50px 0 32px;
    }
    .popular-card__media {
        aspect-ratio: 16 / 11;
    }
}

@media (max-width: 991px) {
    .popular-categories-area.popular-modern {
        padding: 42px 0 28px;
    }
    .popular-heading {
        margin-bottom: 10px;
    }
    .popular-mobile-scroller {
        grid-auto-columns: 70%;
    }
}

@media (max-width: 575px) {
    .popular-shell {
        padding-left: 8px;
        padding-right: 8px;
    }
    .popular-heading h2 {
        font-size: 22px;
    }
    .popular-subtitle {
        font-size: 14px;
    }
    .popular-mobile-card {
        padding: 12px;
    }
    .popular-mobile-img {
        width: 96px;
        height: 96px;
    }
    .popular-mobile-title {
        font-size: 16px;
    }
    .popular-mobile-scroller {
        grid-auto-columns: 82%;
    }
    .popular-viewall {
        width: 100%;
        justify-content: center;
    }
}

/*====================================================
INNER PAGE STYLE AREA
=====================================================*/
/* 
Page Title Area Style
=====================================================*/
.page-title-area {
    background-color: #f8f8f9;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
    height: 100%;
    z-index: 1;
}

.page-title-area .page-title-content ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

.page-title-area .page-title-content ul li {
    display: inline-block;
    position: relative;
    font-size: 16px;
    padding-right: 15px;
    margin-left: 15px;
}

.page-title-area .page-title-content ul li::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -3px;
    background-color: #9c9c9c;
    width: 1px;
    height: 15px;
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
}

.page-title-area .page-title-content ul li.active {
    color: #3854a7;
}

.page-title-area .page-title-content ul li:first-child {
    margin-left: 0;
}

.page-title-area .page-title-content ul li:last-child {
    padding-right: 0;
}

.page-title-area .page-title-content ul li:last-child::before {
    display: none;
}

/*
Cart Area Style
======================================================*/
.cart-area .cart-controller {
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    border-bottom: none;
    margin-bottom: 35px;
}

.cart-area .trash {
    text-align: center !important;
}

.cart-area .trash .remove {
    color: #ed1d24;
    font-size: 20px;
}

.cart-area .trash .remove:hover {
    color: #ed1d24;
}

.cart-area .default-btn {
    display: block;
    color: #ffffff !important;
}

.cart-area .default-btn2 {
    display: block;
    color: #ffffff !important;
}

.cart-area .product-thumbnail {
    width: 130px;
}

.cart-area .product-thumbnail img {
    border: 1px solid #dddddd;
}

.cart-area .cart-table table {
    margin-bottom: 0;
}

.cart-area .cart-table table thead tr {
    border-style: none;
}

.cart-area .cart-table table thead tr th {
    border: none;
    color: #111111;
    font-size: 16px;
    font-weight: normal;
    padding: 20px 30px;
}

.cart-area .cart-table table tbody tr td {
    vertical-align: middle;
    border: none;
    border-bottom: 1px solid #dedede;
    white-space: nowrap;
    padding: 15px 30px;
}

.cart-area .cart-table table tbody tr td .unit-amount {
    color: #9c9c9c;
}

.cart-area .cart-table table tbody tr td .subtotal-amount {
    color: #9c9c9c;
}

.cart-area .cart-table table tbody tr td a {
    color: #111111;
}

.cart-area .cart-table table tbody tr td a:hover {
    color: #3854a7;
}

.cart-area .cart-table table tbody tr td.product-quantity {
    width: 145px;
    padding: 0;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter {
    position: relative;
}

.cart-area .cart-table table tbody tr td.product-quantity .input-counter input {
    height: 45px;
    color: #111111;
    outline: 0;
    display: block;
    border: none;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
    font-size: 15px;
    font-weight: normal;
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    input::-webkit-input-placeholder {
    color: #111111;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    input:-ms-input-placeholder {
    color: #111111;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    input::-ms-input-placeholder {
    color: #111111;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    input::placeholder {
    color: #111111;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    .minus-btn {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    cursor: pointer;
    color: #ffffff;
    width: 40px;
    height: 100%;
    line-height: 48px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border: 1px solid #dedede;
    text-align: center;
    border-right: none;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    .minus-btn
    i {
    width: 23px;
    height: 23px;
    line-height: 23px;
    background-color: #dddddd;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    .minus-btn:hover
    i {
    color: #ffffff;
    background-color: #3854a7;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    .plus-btn {
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    cursor: pointer;
    color: #ffffff;
    width: 40px;
    height: 100%;
    line-height: 48px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    border: 1px solid #dedede;
    text-align: center;
    border-left: none;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    .plus-btn
    i {
    width: 23px;
    height: 23px;
    line-height: 23px;
    background-color: #dddddd;
    display: inline-block;
    border-radius: 50px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.cart-area
    .cart-table
    table
    tbody
    tr
    td.product-quantity
    .input-counter
    .plus-btn:hover
    i {
    color: #ffffff;
    background-color: #3854a7;
}

.cart-area .coupon-cart {
    padding-top: 5px;
    margin-bottom: 0;
}

.cart-area .coupon-cart .form-group {
    position: relative;
}

.cart-area .coupon-cart .form-group .form-control {
    border: 1px solid #dedede;
}

.cart-area .coupon-cart .form-group .form-control:focus {
    border-color: #3854a7;
}

.cart-area .coupon-cart .form-group .default-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 40px;
    height: 55px;
    line-height: 24px;
}

.cart-area .coupon-cart .form-group .default-btn2 {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px 40px;
    height: 55px;
    line-height: 24px;
}

.cart-area .coupon-cart .form-group .default-btn::before {
    display: none;
}

.cart-area .coupon-cart .form-group .default-btn2::before {
    display: none;
}

.cart-area .coupon-cart .form-group .default-btn::after {
    display: none;
}

.cart-area .coupon-cart .form-group .default-btn2::after {
    display: none;
}

.cart-area .coupon-cart .default-btn.update-cart {
    float: right;
    /*height: 55px;*/
    line-height: 29px;
}

.cart-area .coupon-cart .default-btn2.update-cart {
    float: right;
    /*height: 55px;*/
    line-height: 29px;
}

.cart-area .cart-totals {
    padding: 30px;
    border: 1px solid #ebebeb;
    background-color: #ffffff;
    max-width: 400px;
    margin: auto;
}

.cart-area .cart-totals h3 {
    position: relative;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.cart-area .cart-totals ul {
    padding: 0;
    margin: 0 0 25px;
    list-style-type: none;
}

.cart-area .cart-totals ul li {
    color: #9c9c9c;
    position: relative;
    margin-bottom: 15px;
}

.cart-area .cart-totals ul li b {
    font-weight: 400;
    color: #111111;
}

.cart-area .cart-totals ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.cart-area .cart-totals ul li span {
    float: right;
    color: #9c9c9c;
    font-weight: normal;
}

.cart-area .cart-totals .default-btn {
    display: block;
    padding: 15px 30px;
}

.cart-area .cart-totals .default-btn2 {
    display: block;
    padding: 15px 30px;
}

.cart-area.recent-order h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* 
Checkout Area Style
=====================================================*/
.checkout-area .billing-details {
    padding: 30px;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.checkout-area .billing-details h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.checkout-area .billing-details .form-group {
    margin-bottom: 20px;
}

.checkout-area .billing-details .form-group .form-control {
    background-color: #ffffff;
    border-color: #ebebeb;
}

.checkout-area .billing-details .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #111111;
}

.checkout-area .billing-details .form-group label .required {
    color: #9c9c9c;
}

.checkout-area .billing-details .form-group textarea {
    padding-top: 13px;
}

.checkout-area .billing-details .form-check {
    margin-bottom: 20px;
}

.checkout-area .billing-details .form-check .form-check-label {
    color: #111111;
    font-size: 14px;
}

.checkout-area .billing-details .form-check label {
    position: relative;
    top: 1px;
}

.checkout-area .billing-details .col-lg-12:last-child .form-group {
    margin-bottom: 0;
}

.checkout-area .cart-totals {
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    background-color: #ffffff;
}

.checkout-area .cart-totals h3 {
    margin-bottom: 25px;
    position: relative;
    font-size: 20px;
    position: relative;
}

.checkout-area .cart-totals ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.checkout-area .cart-totals ul li {
    color: #9c9c9c;
    position: relative;
    margin-bottom: 15px;
}

.checkout-area .cart-totals ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.checkout-area .cart-totals ul li b {
    font-weight: normal;
    color: #111111;
}

.checkout-area .cart-totals ul li span {
    float: right;
    color: #9c9c9c;
    font-weight: normal;
}

.checkout-area .faq-accordion {
    margin-top: 30px;
    margin-bottom: 0;
}

.checkout-area .faq-accordion h3 {
    margin-bottom: 20px;
    position: relative;
    font-size: 20px;
}

.checkout-area .faq-accordion .accordion .accordion-content {
    border-top: none;
    padding: 0;
    background-color: transparent;
}

.checkout-area .faq-accordion .accordion .accordion-content .form-group {
    margin-bottom: 30px;
}

.checkout-area .faq-accordion .accordion .accordion-title {
    padding: 0;
    position: relative;
    padding-left: 25px;
    background-color: transparent;
    border: none;
    margin-bottom: 10px;
    color: #111111;
    font-size: 15px;
    font-weight: 500;
}

.checkout-area .faq-accordion .accordion .accordion-title.active::after {
    background-color: #3854a7;
}

.checkout-area .faq-accordion .accordion .accordion-title.active::before {
    border-color: #3854a7;
}

.checkout-area .faq-accordion .accordion .accordion-title::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -4px;
    width: 17px;
    height: 17px;
    border: 1px solid #111111;
    border-radius: 50%;
    margin: 3px;
}

.checkout-area .faq-accordion .accordion .accordion-title::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 2px;
    width: 11px;
    height: 11px;
    background-color: #ffffff;
    border-radius: 50%;
    border-radius: 50%;
}

.checkout-area .faq-accordion .accordion .accordion-title:hover {
    color: #3854a7;
}

.checkout-area .faq-accordion .accordion .accordion-item {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 15px;
    padding: 0;
    border: none;
}

.checkout-area .faq-accordion .form-check {
    font-size: 14px;
}

.checkout-area .faq-accordion .form-check label {
    margin-bottom: 5px;
}

.checkout-area .faq-accordion .form-check label a {
    color: #3854a7;
}

.checkout-area .faq-accordion .form-check label a:hover {
    color: #3854a7;
}

.checkout-area .faq-accordion .default-btn {
    width: 100%;
}

.checkout-area .faq-accordion .default-btn2 {
    width: 100%;
}

.checkout-area .log-in-coupon-code {
    background-color: #fff4f3;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.checkout-area .log-in-coupon-code p {
    color: #111111;
}

.checkout-area .log-in-coupon-code p a {
    color: #3854a7;
}

/* 
Order Area Style
=====================================================*/
.order-content {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

.order-content img {
    margin-bottom: 20px;
}

.order-content h3 {
    font-size: 20px;
    margin-bottom: 17px;
}

.order-content span {
    display: block;
    margin-bottom: 10px;
}

.order-content p {
    margin-bottom: 30px;
}

.item-order {
    max-width: 960px;
    margin: auto;
    margin-bottom: 0;
}

.item-order h3 {
    font-size: 20px;
}

.item-order .order-item-content {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #dddddd;
}

.item-order .order-item-content li {
    border-bottom: 1px solid #dddddd;
    padding: 15px 30px;
}

.item-order .order-item-content li:last-child {
    border-bottom: none;
}

.item-order .order-item-content li span {
    float: right;
}

.order-item-address {
    padding: 0;
    margin: 0;
    list-style: none;
    border: 1px solid #dddddd;
    margin-bottom: 24px;
}

.order-item-address li {
    border-bottom: 1px solid #dddddd;
    padding: 15px 30px;
    position: relative;
    padding-left: 100px;
}

.order-item-address li.addresss {
    padding-left: 30px;
}

.order-item-address li.addresss span {
    position: unset;
}

.order-item-address li h3 {
    font-size: 20px;
}

.order-item-address li:last-child {
    border-bottom: none;
}

.order-item-address li span {
    position: absolute;
    top: 14px;
    left: 30px;
}

/* 
Order Tracking Style
=====================================================*/
.order-tracking {
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.order-tracking h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.order-tracking form .form-group {
    margin-bottom: 24px;
}

.order-tracking form .form-group label {
    text-align: left;
    display: block;
    margin-bottom: 10px;
}

.order-tracking form .default-btn {
    width: 100%;
}

.order-tracking form .default-btn2 {
    width: 100%;
}

.order-tracking form p {
    margin-top: 20px;
}

.order-tracking form p a {
    color: #3854a7;
}

/* 
Order Tracking Style
=====================================================*/
.about-area .owl-carousel .owl-item img {
    width: auto;
}

.about-content {
    position: relative;
    padding-left: 200px;
}

.about-content h3 {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
}

.single-team {
    text-align: center;
    margin-bottom: 30px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.single-team img {
    margin-bottom: 15px;
}

.single-team h3 {
    font-size: 20px;
}

.single-team:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/*
User Area CSS
=====================================================*/
.user-area {
    position: relative;
    z-index: 1;
}

.user-area .user-form-content h3 {
    font-size: 20px;
    margin-bottom: 30px;
}

.user-area .user-form-content .user-form {
    margin: auto;
}

.user-area .user-form-content .user-form .form-group {
    margin-bottom: 30px;
}

.user-area .user-form-content .user-form .form-group label {
    font-size: 16px;
    margin-bottom: 12px;
}

.user-area .user-form-content .user-form .form-group .form-control {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.user-area .user-form-content .user-form .login-action {
    margin-bottom: 30px;
}

.user-area .user-form-content .user-form .login-action .log-rem {
    display: inline-block;
}

.user-area .user-form-content .user-form .login-action .log-rem label {
    margin-bottom: 0;
    font-size: 16px;
}

.user-area .user-form-content .user-form .login-action .forgot-login {
    display: inline-block;
    float: right;
}

.user-area .user-form-content .user-form .default-btn {
    width: 100%;
}

.user-area .user-form-content .user-form .default-btn2 {
    width: 100%;
}

.user-area .user-form-content .create {
    text-align: center;
    font-size: 16px;
}

.user-area .user-form-content .create a {
    color: #3854a7;
}

.user-area .user-form-content.log-in-width {
    max-width: 930px;
    margin: auto;
}

.user-area .user-form-content.register-width {
    max-width: 930px;
    margin: auto;
}

.user-area #remember-2 {
    position: relative;
    top: 1px;
}

.user-area .log-in-page {
    max-width: 860px;
    margin: auto;
}

.user-area .log-in-page {
    max-width: 860px;
    margin: auto;
}

.user-area .register {
    max-width: 860px;
    margin: auto;
}

.testimonials-area .single-customer .avatar .avatar-name h3 {
    font-size: 18px;
}

/*
Dashboard Area CSS
=====================================================*/
.dashboard-navigation {
    border: 1px solid #dddddd;
    padding: 0;
    margin: 0;
    list-style-type: none;
    padding-top: 15px;
    padding-bottom: 15px;
}

.dashboard-navigation li {
    border-bottom: 1px solid #dddddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

.dashboard-navigation li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.dashboard-navigation li h3 {
    font-size: 20px;
}

.dashboard-navigation li a {
    color: #9c9c9c;
    display: block;
}

.dashboard-navigation li a:hover {
    color: #3854a7;
}

.dashboard-navigation li a.active {
    color: #3854a7;
}

.profile-bar {
    background-color: #e6f7f6;
    padding: 40px 30px;
    margin-bottom: 30px;
}

.profile-bar .profile-info {
    position: relative;
    padding-left: 125px;
}

.profile-bar .profile-info img {
    position: absolute;
    top: -12px;
    left: 0;
    border-radius: 50px;
}

.profile-bar .profile-info h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.profile-bar .profile-info h3 a {
    color: #111111;
}

.profile-bar .profile-info span {
    display: block;
    margin-bottom: 5px;
}

.profile-bar .profile-info a {
    display: block;
    margin-bottom: 5px;
}

.profile-bar .edit-profiles {
    text-align: right;
}

.billing-address-bar {
    background-color: #fff4f3;
    padding: 30px;
    margin-bottom: 30px;
}

.billing-address-bar h3 {
    font-size: 20px;
    margin-bottom: 7px;
}

.billing-address-bar ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-top: 20px;
}

.billing-address-bar ul li {
    margin-bottom: 10px;
}

.billing-address-bar ul li span {
    color: #111111;
    margin-right: 10px;
}

.billing-address-bar ul li:last-child {
    margin-bottom: 0;
}

.billing-address-bar .edit-address {
    text-align: right;
}

.billing-address-bar .edit-address .default-btn {
    background-color: transparent;
    border: 1px solid #3854a7;
    color: #111111;
}

.billing-address-bar .edit-address .default-btn::before,
.billing-address-bar .edit-address .default-btn::after {
    background-color: #3854a7;
}

.billing-address-bar .edit-address .default-btn:hover {
    color: #ffffff;
}

.edit-profile h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.submit-property-form .form-group {
    margin-bottom: 20px;
}

.submit-property-form .form-group label {
    margin-bottom: 10px;
    color: #111111;
}

.submit-property-form .form-group .form-select {
    color: #9c9c9c;
}

.submit-property-form .file-upload {
    position: relative;
    border: 1px solid #dddddd;
}

.submit-property-form .file-upload .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.submit-property-form .file-upload label {
    display: block;
}

.submit-property-form .file-upload .inputfile + label {
    color: #111111;
    background-color: #ffffff;
    margin-bottom: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    padding: 14px 20px;
    position: relative;
    height: 140px;
    text-align: center;
    font-size: 16px;
}

.submit-property-form .file-upload i {
    position: relative;
    top: 2px;
    margin-right: 5px;
    display: block;
    font-size: 50px;
}

.submit-property-form .file-upload .inputfile:focus + label,
.submit-property-form .file-upload .inputfile + label:hover {
    background-color: transparent;
    color: #3854a7;
}

.submit-property-form .file-upload .inputfile + label {
    cursor: pointer;
    display: block;
}

.order-details-area .cart-totals {
    padding: 30px;
    background-color: #e6f7f6;
    position: relative;
}

.order-details-area .cart-totals h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.order-details-area .cart-totals .default-btn {
    border: 1px solid #3854a7;
    background-color: #ffffff;
    color: #111111;
    padding: 12px 20px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.order-details-area .cart-totals .default-btn:hover {
    color: #ffffff;
    border-color: #111111;
}

.order-details-area .cart-totals ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.order-details-area .cart-totals ul li {
    color: #9c9c9c;
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dddddd;
}

.order-details-area .cart-totals ul li b {
    font-weight: 400;
    color: #111111;
}

.order-details-area .cart-totals ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.order-details-area .cart-totals ul li span {
    float: right;
    color: #9c9c9c;
    font-weight: normal;
}

.order-details-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.address-details-area {
    margin-top: 50px;
}

.address-details-area .cart-totals {
    padding: 30px;
    background-color: #fff4f3;
}

.address-details-area .cart-totals h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    position: relative;
}

.address-details-area .cart-totals ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.address-details-area .cart-totals ul li {
    color: #9c9c9c;
    position: relative;
    margin-bottom: 20px;
    padding-left: 75px;
}

.address-details-area .cart-totals ul li:last-child {
    margin-bottom: 0;
}

.address-details-area .cart-totals ul li span {
    color: #111111;
    font-weight: normal;
    position: absolute;
    top: 0;
    left: 0;
}

.address-list h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.address-list .added-address {
    background-color: #e6f7f6;
    text-align: center;
    margin-bottom: 30px;
}

.address-list .added-address a {
    display: block;
    padding: 30px;
}

.address-list .added-address a i {
    font-size: 30px;
    line-height: 1;
    border: 1px solid #3854a7;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
}

.address-list .added-address a span {
    display: block;
    color: #9c9c9c;
}

.address-list .edit-address .default-btn {
    width: 100%;
    margin-bottom: 10px;
}

/* 
Sidebar Widget Style
=====================================================*/
.sidebar-widget {
    margin-bottom: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.sidebar-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.sidebar-widget.search .search-form {
    background-color: #ffffff;
    position: relative;
}

.sidebar-widget.search .search-form .search-button {
    position: absolute;
    width: 55px;
    height: 55px;
    line-height: 55px;
    top: 0;
    right: 0;
    font-size: 20px;
    color: #ffffff;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    background-color: #3854a7;
}

.sidebar-widget.search .search-form .search-button:hover {
    background-color: #111111;
}

.sidebar-widget.categories ul {
    border: 1px solid #dddddd;
    padding-bottom: 10px;
    padding-top: 28px;
}

.sidebar-widget.categories ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: -6px;
}

.sidebar-widget.categories ul li a {
    display: block;
    color: #111111;
}

.sidebar-widget.categories ul li a i {
    font-size: 20px;
    position: relative;
    top: 4px;
    left: -6px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.sidebar-widget.categories ul li a:hover {
    color: #3854a7;
}

.sidebar-widget.categories ul li a:hover i {
    color: #3854a7;
}

.sidebar-widget.categories ul li span {
    position: relative;
    top: 1px;
}

.sidebar-widget.categories ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget.recent-post ul {
    border: 1px solid #dddddd;
    padding-bottom: 34px;
    padding-top: 28px;
}

.sidebar-widget.recent-post ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 120px;
    padding-right: 30px;
}

.sidebar-widget.recent-post ul li.pl-0 {
    padding-left: 30px !important;
}

.sidebar-widget.recent-post ul li.pl-0 h3 {
    margin-top: -5px;
}

.sidebar-widget.recent-post ul li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-widget.recent-post ul li a {
    font-size: 15px;
    color: #111111;
    margin-bottom: 10px;
    font-weight: 500;
    display: inline-block;
}

.sidebar-widget.recent-post ul li a:hover {
    color: #3854a7;
}

.sidebar-widget.recent-post ul li a img {
    position: absolute;
    top: 0;
    left: 30px;
    width: 80px;
    height: 80px;
}

.sidebar-widget.recent-post ul li span {
    display: block;
    font-size: 14px;
}

.sidebar-widget.tags ul {
    border: 1px solid #dddddd;
    padding: 30px;
    padding-bottom: 20px;
}

.sidebar-widget.tags ul li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
}

.sidebar-widget.tags ul li a {
    border: 1px solid #eeeeee;
    padding: 8px 7px;
    display: inline-block;
    background-color: #ffffff;
    font-size: 14px;
}

.sidebar-widget.tags ul li a:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    background-color: #3854a7;
    color: #ffffff;
    border-color: #3854a7;
}

.sidebar-widget.tags ul li:last-child {
    margin-bottom: 0;
}

.sidebar-widget.about-us {
    border: 1px solid #dddddd;
    padding: 30px;
}

.sidebar-widget.about-us .about-us-img {
    margin-bottom: 12px;
}

.sidebar-widget.about-us .about-us-img img {
    border-radius: 50px;
}

.sidebar-widget.filter {
    border: 1px solid #dddddd;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.sidebar-widget.filter h3 {
    margin-top: -4px;
}

.sidebar-widget.filter .price-range-filter-item input {
    width: 100%;
    border: 0;
    border-radius: 0;
    text-align: left;
    font-size: 16px;
    color: #111111;
}

.sidebar-widget.filter .price-range-bar {
    border: none;
    background: #111111;
    height: 3px;
    width: 94%;
    margin-left: 0;
    margin-bottom: 15px;
    margin-top: 25px;
    position: relative;
}

.sidebar-widget.filter .price-range-bar .ui-slider-range {
    background: #111111;
}

.sidebar-widget.filter .price-range-bar .ui-slider-handle {
    border: none;
    border-radius: 0;
    background: #fff;
    border: 2px solid #111111;
    height: 10px;
    width: 10px;
    top: -4px;
    cursor: pointer;
    background: #111111;
    position: absolute;
}

.sidebar-widget.filter .price-range-bar .ui-slider-handle:focus {
    outline: 0;
}

.sidebar-widget.filter .price-range-bar .ui-slider-handle + span {
    background: #111111;
}

.sidebar-widget.brand {
    overflow: hidden;
}

.sidebar-widget.brand .checkboxs .chb2 {
    top: 4px;
    width: 100%;
    left: -163px;
}

.sidebar-widget.brand ul {
    border: 1px solid #dddddd;
    padding-bottom: 10px;
    padding-top: 28px;
}

.sidebar-widget.brand ul li {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    color: #111111;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.sidebar-widget.brand ul li:hover {
    color: #3854a7;
}

.sidebar-widget.brand ul li span {
    float: right;
}

.sidebar-widget.brand ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.trendingss h3 {
    font-size: 20px;
    margin-bottom: 12px;
    padding-top: 5px;
    margin-bottom: 20px;
}

.trendingss .trending-product-list {
    padding: 30px;
}

.trendingss .trending-product-list .single-list img {
    max-width: 105px;
}

.product-color .product-color-switch {
    margin-top: 0;
    margin-bottom: 30px;
}

.product-color .product-color-switch ul {
    list-style-type: none;
    margin: 0;
    padding: 30px;
    border: 1px solid #dddddd;
}

.product-color .product-color-switch ul li {
    display: inline-block;
    margin-left: 4px;
    margin-top: 4px;
}

.product-color .product-color-switch ul li.title {
    display: block;
    margin: 0;
}

.product-color .product-color-switch ul li.title h3 {
    font-size: 20px;
    margin-top: -5px;
}

.product-color .product-color-switch ul li span {
    position: relative;
    top: 4px;
    font-size: 14px;
    color: #111111;
    font-weight: 500;
}

.product-color .product-color-switch ul li button {
    display: inline-block;
    position: relative;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
}

.product-color .product-color-switch ul li button::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #eeeeee;
    margin: 2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.product-color .product-color-switch ul li button.color-d9d9d9::before {
    background: #d9d9d9;
}

.product-color .product-color-switch ul li button.color-f759ab::before {
    background: #f759ab;
}

.product-color .product-color-switch ul li button.color-9254de::before {
    background: #9254de;
}

.product-color .product-color-switch ul li button.color-597ef7::before {
    background: #597ef7;
}

.product-color .product-color-switch ul li button.color-40a9ff::before {
    background: #40a9ff;
}

.product-color .product-color-switch ul li button.color-36cfc9::before {
    background: #36cfc9;
}

.product-color .product-color-switch ul li button.color-73d13d::before {
    background: #73d13d;
}

.product-color .product-color-switch ul li button.color-bae637::before {
    background: #bae637;
}

.product-color .product-color-switch ul li button.color-ffec3d::before {
    background: #ffec3d;
}

.product-color .product-color-switch ul li button.color-ffc53d::before {
    background: #ffc53d;
}

.product-color .product-color-switch ul li button.color-9ae6b4::before {
    background: #9ae6b4;
}

.product-color .product-color-switch ul li button.color-ff7a45::before {
    background: #ff7a45;
}

.product-color .product-color-switch ul li button.color-ff4d4f::before {
    background: #ff4d4f;
}

.product-color .product-color-switch ul li button.color-63b3ed::before {
    background: #63b3ed;
}

.product-color .product-color-switch ul li button.color-d69e2e::before {
    background: #d69e2e;
}

.product-color .product-color-switch ul li button.color-c05621::before {
    background: #c05621;
}

.product-color .product-color-switch ul li button.color-38b2ac::before {
    background: #38b2ac;
}

.product-color .product-color-switch ul li button.color-b794f4::before {
    background: #b794f4;
}

.product-color .product-color-switch ul li button.color-fbb6ce::before {
    background: #fbb6ce;
}

.product-color .product-color-switch ul li button.color-000000::before {
    background: #000000;
}

.product-color .product-color-switch ul li button.color-2d3748::before {
    background: #2d3748;
}

.product-color .product-color-switch ul li button:hover {
    border-color: #111111;
}

.product-color .product-color-switch ul li button:focus {
    border-color: #111111;
}

.product-color .product-color-switch ul li.active button {
    border-color: #111111;
}

/* 
Blog Details Content Style
=====================================================*/
.blog-details-content .blog-details-img {
    margin-bottom: 30px;
}

.blog-details-content .blog-top-content .blog-content .admin {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 8px;
}

.blog-details-content .blog-top-content .blog-content .admin li {
    margin-right: 10px;
    padding-right: 10px;
    position: relative;
    display: inline-block;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.blog-details-content .blog-top-content .blog-content .admin li i {
    color: #3854a7;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 1px;
}

.blog-details-content .blog-top-content .blog-content .admin li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.blog-details-content
    .blog-top-content
    .blog-content
    .admin
    li:last-child::before {
    display: none;
}

.blog-details-content .blog-top-content .blog-content h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.blog-details-content .blog-top-content blockquote {
    padding: 30px;
    padding-left: 80px;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
}

.blog-details-content .blog-top-content blockquote p {
    font-size: 16px;
    color: #111111;
    font-weight: 500;
    margin-bottom: 0;
}

.blog-details-content .blog-top-content blockquote i {
    font-size: 60px;
    color: #3854a7;
    position: absolute;
    top: 40px;
    left: 0;
    line-height: 1;
}

.blog-details-content .blog-top-content .blog-content-2 {
    margin-bottom: 25px;
}

.blog-details-content .blog-top-content .blog-content-3 {
    margin-bottom: 30px;
}

.blog-details-content .blog-top-content .blog-content-3 h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.blog-details-content .tags {
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-details-content .tags .tag-link {
    padding: 0;
    margin: 0;
    list-style-type: none;
    line-height: 1;
    display: inline-block;
}

.blog-details-content .tags .tag-link li {
    display: inline-block;
    margin-right: 15px;
}

.blog-details-content .tags .tag-link li span {
    color: #111111;
}

.blog-details-content .tags .tag-link li a {
    font-size: 14px;
    display: inline-block;
    border: 1px solid #dddddd;
    padding: 5px 10px;
}

.blog-details-content .tags .tag-link li a:hover {
    color: #3854a7;
    border: 1px solid #3854a7;
}

.blog-details-content .share-link {
    display: inline-block;
    float: right;
    position: relative;
    padding-bottom: 20px;
}

.blog-details-content .share-link span {
    font-size: 14px;
    cursor: pointer;
    position: relative;
    top: -2px;
    color: #111111;
}

.blog-details-content .share-link .social-icon {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.blog-details-content .share-link .social-icon li {
    display: inline-block;
}

.blog-details-content .share-link .social-icon li a {
    padding: 0 5px;
}

.blog-details-content .share-link .social-icon li a i {
    font-size: 18px;
}

.blog-details-content .comment {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-bottom: 40px;
    border: 1px solid #dddddd;
}

.blog-details-content .comment li {
    padding: 30px;
    display: inline-block;
    position: relative;
    padding-left: 120px;
    background-color: #ffffff;
    border-bottom: 1px solid #dddddd;
}

.blog-details-content .comment li:last-child {
    border-bottom: none;
}

.blog-details-content .comment li img {
    position: absolute;
    top: 30px;
    left: 30px;
}

.blog-details-content .comment li h3 {
    font-size: 16px;
    margin-top: -5px;
    margin-bottom: 2px;
}

.blog-details-content .comment li span {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

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

.blog-details-content .comment li .read-more {
    position: absolute;
    top: 30px;
    right: 30px;
}

.blog-details-content .comment li.margin-left {
    margin-left: 30px;
}

.blog-details-content .leave-reply {
    padding: 30px;
    border: 1px solid #dddddd;
}

.blog-details-content .leave-reply h3 {
    margin-bottom: 20px;
    font-size: 24px;
    position: relative;
}

.blog-details-content .leave-reply form p {
    margin-bottom: 30px;
}

.blog-details-content .leave-reply form .form-group {
    margin-bottom: 30px;
}

.blog-details-content .leave-reply form .form-group label {
    margin-bottom: 10px;
    color: #111111;
}

.blog-details-content .leave-reply form .form-group .form-control {
    background-color: #ffffff;
    border: 1px solid #ebebeb;
}

.blog-details-content
    .leave-reply
    form
    .form-group
    .form-control::-webkit-input-placeholder {
    color: #cccccc;
}

.blog-details-content
    .leave-reply
    form
    .form-group
    .form-control:-ms-input-placeholder {
    color: #cccccc;
}

.blog-details-content
    .leave-reply
    form
    .form-group
    .form-control::-ms-input-placeholder {
    color: #cccccc;
}

.blog-details-content .leave-reply form .form-group .form-control::placeholder {
    color: #cccccc;
}

.contact-info-europe h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-info-europe ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.contact-info-europe ul li {
    position: relative;
    padding-left: 0;
    padding-left: 20px;
    margin-bottom: 10px;
}

.contact-info-europe ul li h4 {
    font-size: 16px;
}

.contact-info-europe ul li i {
    position: absolute;
    top: 0;
    left: 0;
    color: #3854a7;
}

.map iframe {
    width: 100%;
    display: block;
    height: 348px;
}

/* 
Main Contact Area Style
=====================================================*/
.contact-form h2 {
    font-size: 22px;
    margin-bottom: 30px;
    margin-top: -5px;
    position: relative;
}

.contact-form .form-group {
    margin-bottom: 30px;
}

.contact-form .form-group label {
    margin-bottom: 10px;
    font-size: 14px;
    color: #111111;
}

.contact-form .form-group .form-control {
    background-color: #f9fbfe;
}

.list-unstyled {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px;
}

.hidden {
    display: none;
}

#msgSubmit {
    margin-top: 30px;
    font-size: 20px;
}

.checkboxs {
    position: relative;
    padding-left: 20px;
}

.checkboxs .chb2 {
    position: absolute;
    left: 0;
    top: 6px;
}

/*
Product Details Area Style
=====================================================*/
.product-details-area .tab .tabs_item {
    display: none;
}

.product-details-area .tab .tabs_item:first-child {
    display: block;
}

.product-details-area .products-details-tab {
    margin-top: 54px;
}

.product-details-area .products-details-tab .tabs {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
}

.product-details-area .products-details-tab .tabs li {
    display: inline-block;
    line-height: initial;
    margin-right: 30px;
    position: relative;
    color: #111111;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.product-details-area .products-details-tab .tabs li:hover {
    color: #3854a7;
}

.product-details-area .products-details-tab .tabs li.current {
    color: #3854a7;
}

.product-details-area .products-details-tab .tabs li:last-child {
    margin-right: 0;
}

.product-details-area .products-details-tab .tab_content {
    border: 1px solid #dddddd;
    padding: 30px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .additional-information {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: left;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .additional-information
    li {
    border: 1px solid #dddddd;
    border-bottom: none;
    padding: 10px 15px;
    color: #9c9c9c;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .additional-information
    li:last-child {
    border-bottom: 1px solid #dddddd;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .additional-information
    li
    span {
    display: inline-block;
    width: 30%;
    font-size: 16px;
    font-weight: 500;
    color: #111111;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title {
    position: relative;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    .rating {
    display: inline-block;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    .rating
    .fas.fa-star {
    color: #ffba0a;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    .rating
    i {
    color: #ffba0a;
    font-size: 14px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    p {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 5px;
    line-height: initial;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    .btn {
    position: absolute;
    right: 0;
    bottom: 10px;
    padding: 10px 11px;
    font-size: 11px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    .btn:focus {
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 4px;
    background-color: #111111;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments {
    margin-top: 35px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item {
    margin-top: 30px;
    position: relative;
    padding-right: 200px;
    border-top: 1px dashed #dddddd;
    padding-top: 30px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    .rating
    .fas.fa-star {
    color: #ffba0a;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    .rating
    i {
    font-size: 14px;
    color: #ffba0a;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    span {
    margin-bottom: 10px;
    font-size: 13px;
    display: block;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    span
    strong {
    font-weight: 400;
    font-size: 14px;
    color: #111111;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    p {
    margin-bottom: 0;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    .review-report-link {
    position: absolute;
    right: 0;
    color: #57647c;
    top: 40px;
    text-decoration: underline;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    .review-report-link:hover {
    color: #3854a7;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-form {
    margin-top: 30px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-form
    form
    .form-group {
    margin-bottom: 30px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-form
    form
    .form-group
    label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #111111;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-form
    form
    .form-group
    textarea {
    padding-top: 15px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-form
    form
    .form-group
    .form-control {
    font-size: 14px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .specification {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .specification
    li {
    margin-bottom: 10px;
}

.product-details-area
    .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .specification
    li:last-child {
    margin-bottom: 0;
}

.product-details-area .product-view-one .modal-content {
    overflow: initial;
}

/* 
Showing Area Style
=====================================================*/
.showing-result {
    margin-bottom: 30px;
    margin-top: 30px;
}

.showing-result .showing-result-count {
    display: inline-block;
    margin-left: 20px;
}

.showing-result .showing-top-bar-ordering select {
    border: 1px solid #dddddd;
    background-color: transparent;
    border-radius: 0;
    padding: 5px;
    color: #9c9c9c;
}

.showing-result .showing-top-bar-ordering select:focus {
    border-color: #9c9c9c;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.products-filter-options {
    display: inline-block;
}

.products-filter-options .view-list-row .view-column .icon-view-three {
    margin-left: 15px;
    position: relative;
    top: 3px;
}

.products-filter-options .view-list-row .view-column .icon-view-three span {
    width: 7px;
    height: 14px;
    display: block;
    float: left;
    border: 1px solid #d0d0d0;
    -webkit-transition: border 0.2s;
    transition: border 0.2s;
}

.products-filter-options
    .view-list-row
    .view-column
    .icon-view-three
    span:not(:first-child) {
    margin-left: 1px;
}

.products-filter-options
    .view-list-row
    .view-column
    .icon-view-three:hover
    span {
    border-color: #111111;
}

.products-filter-options
    .view-list-row
    .view-column
    .icon-view-three.active
    span {
    border-color: #111111;
}

.products-filter-options .view-list-row .view-column .view-grid-switch {
    margin-left: 1px;
    display: inline-block;
}

.products-filter-options .view-list-row .view-column .view-grid-switch span {
    width: 24px;
    height: 6px;
    display: block;
    position: relative;
    background-color: #9c9c9c;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}

.products-filter-options
    .view-list-row
    .view-column
    .view-grid-switch
    span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6px;
    background-color: #ffffff;
    display: block;
    width: 2px;
    height: 6px;
}

.products-filter-options
    .view-list-row
    .view-column
    .view-grid-switch
    span:not(:first-child) {
    margin-top: 2px;
}

.products-filter-options
    .view-list-row
    .view-column
    .view-grid-switch:hover
    span {
    background-color: #111111;
}

.products-filter-options
    .view-list-row
    .view-column
    .view-grid-switch.active
    span {
    background-color: #111111;
}

.products-collections-listing.products-row-view .single-products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.products-collections-listing.products-row-view .single-products .product-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    z-index: 1;
}

.products-collections-listing.products-row-view
    .single-products
    .product-content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 0;
    background-color: #ffffff;
    z-index: 2;
    padding: 0;
    border: none;
}

.products-collections-listing.products-row-view
    .single-products
    .product-content
    .products-price
    li {
    font-size: 14px;
}

.products-collections-listing.products-row-view
    .single-products
    .product-content
    .products-cart-wish-view
    li {
    margin-right: 2px;
}

.products-collections-listing.products-row-view
    .single-products
    .product-content
    .products-cart-wish-view
    li
    .default-btn {
    padding: 8px 10px;
    font-size: 13px;
}

.products-collections-listing.products-row-view
    .single-products
    .product-content
    .products-cart-wish-view
    li
    .wish-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
}

.products-collections-listing.products-row-view
    .single-products
    .product-content
    .products-cart-wish-view
    li
    .eye-btn {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
}

.products-collections-listing.products-row-view .col-lg-3,
.products-collections-listing.products-row-view .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

/* Global Location Area Style
=====================================================*/
.global-location-area .single-location {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.global-location-area .single-location::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #3854a7;
    border-radius: 4px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    z-index: -1;
}

.global-location-area .single-location a {
    color: #3854a7;
    padding: 25px;
    display: block;
}

.global-location-area .single-location a i {
    font-size: 20px;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.global-location-area .single-location a span {
    font-size: 16px;
    font-weight: 600;
}

.global-location-area .single-location:hover a {
    color: #ffffff;
}

.global-location-area .single-location:hover::before {
    width: 100%;
    right: auto;
    left: 0;
}

/*
FAQ Area Style
======================================================*/
.faq-accordion {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.faq-accordion h2 {
    text-align-last: left;
}

.faq-accordion .accordion {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
    border-radius: 0;
    display: block;
    margin-bottom: 25px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: none;
}

.faq-accordion .accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
    padding-left: 50px;
    color: #111111;
    text-decoration: none;
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    z-index: 1;
}

.faq-accordion .accordion .accordion-title span {
    position: absolute;
    top: -1px;
    left: 0;
}

.faq-accordion .accordion .accordion-title i {
    position: absolute;
    right: 0;
    top: -1px;
    font-size: 20px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    color: #3854a7;
}

.faq-accordion .accordion .accordion-title.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-accordion .accordion .accordion-title.active i::before {
    content: "\f1af";
}

.faq-accordion .accordion .accordion-content {
    display: none;
    position: relative;
    margin-top: 10px;
    padding-left: 50px;
}

.faq-accordion .accordion .accordion-content span {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 16px;
    font-weight: 500;
    color: #111111;
}

.faq-accordion .accordion .accordion-content.show {
    display: block;
}

.faq-tab {
    max-width: 960px;
    margin: auto;
}

.faq-tab .tabs {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-bottom: 40px;
}

.faq-tab .tabs li {
    display: inline-block;
    padding-bottom: 5px;
    margin: 0 -2px;
    margin-right: 30px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.faq-tab .tabs li:last-child {
    margin-right: 0;
}

.faq-tab .tabs li::before {
    content: "";
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background-color: #3854a7;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    z-index: -1;
}

.faq-tab .tabs li.current {
    color: #3854a7;
}

.faq-tab .tabs li.current::before {
    width: 100%;
    left: 0;
    right: auto;
}

/* 
Terms & Conditions And Privacy Policy Style
=====================================================*/
.main-content-text h1,
.main-content-text h2,
.main-content-text h3,
.main-content-text h4,
.main-content-text h5,
.main-content-text h6 {
    margin-bottom: 15px;
}

.main-content-text h1 {
    font-size: 30px;
}

.main-content-text h2 {
    font-size: 26px;
}

.main-content-text h3 {
    font-size: 24px;
}

.main-content-text h4 {
    font-size: 22px;
}

.main-content-text h5 {
    font-size: 20px;
}

.main-content-text h6 {
    font-size: 18px;
}

.main-content-text .gap-20 {
    margin-bottom: 25px;
}

.main-content-text ul {
    padding: 0;
    list-style-type: none;
}

.main-content-text ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 35px;
}

.main-content-text ul li:last-child {
    margin-bottom: 0;
}

.main-content-text ul li i {
    position: absolute;
    top: -6px;
    left: 0;
    color: #3854a7;
    font-size: 25px;
}

.main-content-text ol {
    padding-left: 18px;
}

.main-content-text ol li {
    margin-bottom: 10px;
}

.main-content-text ol li::marker {
    color: #3854a7;
}

.main-content-text ol li:last-child {
    margin-bottom: 0;
}

.main-content-text a {
    color: #3854a7;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.main-content-text a:hover {
    text-decoration: underline;
}

/*
404 Error Area Style
=====================================================*/
.error-area {
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: #e9fcff;
    height: 100%;
}

.error-area .error-content {
    z-index: 1;
    position: relative;
}

.error-area .error-content h1 {
    font-size: 300px;
    line-height: 1;
    font-weight: 700;
    color: #3854a7;
    margin-top: -48px;
}

.error-area .error-content h1 .a {
    display: inline-block;
}

.error-area .error-content h1 .red {
    color: #ff0000;
    display: inline-block;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.error-area .error-content h1 .b {
    display: inline-block;
}

.error-area .error-content h3 {
    margin: 30px 0 0;
    position: relative;
    color: #ff0000;
}

.error-area .error-content p {
    margin: 20px 0 20px;
    font-size: 19px;
    color: #3854a7;
}

/*
Coming Soon Area Style
=====================================================*/
.coming-soon-area {
    background-image: url(../images/coming-soon-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.coming-soon-area .coming-soon-content {
    max-width: 700px;
    overflow: hidden;
    text-align: center;
    padding: 40px 60px;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

.coming-soon-area .coming-soon-content .logo {
    display: inline-block;
}

.coming-soon-area .coming-soon-content h2 {
    font-size: 48px;
    margin-top: -10px;
    margin-bottom: 0;
}

.coming-soon-area .coming-soon-content #timer {
    margin-top: 40px;
}

.coming-soon-area .coming-soon-content #timer div {
    background-color: #3854a7;
    border: 4px solid #3854a7;
    color: #ffffff;
    width: 100px;
    height: 105px;
    font-size: 40px;
    font-weight: 800;
    margin-left: 10px;
    margin-right: 10px;
}

.coming-soon-area .coming-soon-content #timer div span {
    display: block;
    margin-top: -2px;
    font-size: 17px;
    font-weight: 600;
}

.coming-soon-area .coming-soon-content form {
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
}

.coming-soon-area .coming-soon-content form .form-group {
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.coming-soon-area .coming-soon-content form .form-group .label-title {
    margin-bottom: 0;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    color: #111111;
}

.coming-soon-area .coming-soon-content form .form-group .label-title i {
    position: absolute;
    left: 0;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    top: 9px;
    font-size: 22px;
}

.coming-soon-area .coming-soon-content form .form-group .label-title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    background: #3854a7;
}

.coming-soon-area .coming-soon-content form .form-group .input-newsletter {
    border-radius: 0;
    border: 1px solid #eeeeee;
    padding: 10px 20px;
    color: #111111;
    height: 50px;
    display: block;
    width: 100%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    font-size: 16px;
    font-weight: 400;
    background-color: #ffffff;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter::-webkit-input-placeholder {
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter:-ms-input-placeholder {
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter::-ms-input-placeholder {
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter::placeholder {
    color: #9c9c9c;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter:focus {
    border-color: #3854a7;
    outline: 0 !important;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter:focus::-webkit-input-placeholder {
    color: transparent;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter:focus:-ms-input-placeholder {
    color: transparent;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter:focus::-ms-input-placeholder {
    color: transparent;
}

.coming-soon-area
    .coming-soon-content
    form
    .form-group
    .input-newsletter:focus::placeholder {
    color: transparent;
}

.coming-soon-area .coming-soon-content form .default-btn {
    border-radius: 0;
    position: relative;
    height: 46px;
    line-height: 0;
}

.coming-soon-area .coming-soon-content form .default-btn::before {
    border-radius: 0;
}

.coming-soon-area .coming-soon-content form .validation-danger {
    margin-top: 15px;
    color: #ff0000;
}

.coming-soon-area .coming-soon-content form .validation-success {
    margin-top: 15px;
}

.coming-soon-area .coming-soon-content form p {
    margin-bottom: 0;
    margin-top: 20px;
}

.coming-soon-area .coming-soon-content .newsletter-form {
    position: relative;
}

.coming-soon-area .coming-soon-content .newsletter-form .default-btn {
    position: absolute;
    top: 2px;
    right: 2px;
}

.coming-soon-area .online-treatment-shape-1 {
    position: absolute;
    top: 0;
    right: 0;
}

.coming-soon-area .online-treatment-shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

/*
Modal Newsletter Area Style
======================================================*/
.popup-overlay {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 9999;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popup-overlay .container {
    padding: 0;
}

.popup-overlay .align-middle {
    position: absolute;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
}

.popup-overlay .align-middle .popup-body {
    max-width: 810px;
    height: auto;
    background-color: #ffe401;
    -webkit-box-shadow: 0 0 15px 5px #222;
    box-shadow: 0 0 15px 5px #222;
    margin: auto;
    z-index: 9999;
    margin: 30px;
    position: relative;
}

.popup-overlay .align-middle .popup-body .popup-close {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    cursor: pointer;
}

.popup-overlay .align-middle .popup-body .popup-close i {
    width: 25px;
    height: 25px;
    line-height: 25px;
    background-color: #ff0000;
    display: inline-block;
    text-align: center;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    color: #ffffff;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.popup-overlay .align-middle .popup-body .popup-close:hover i {
    background-color: #ff0000;
}

.popup-overlay .modal-newsletter {
    padding: 30px;
}

.popup-overlay .modal-newsletter h3 {
    font-size: 24px;
}

.popup-overlay .modal-newsletter p {
    color: #111111;
}

.popup-overlay .modal-newsletter .newsletter-form .form-control {
    border: 1px solid #dddddd;
    color: #111111;
    font-weight: normal;
}

.popup-overlay
    .modal-newsletter
    .newsletter-form
    .form-control::-webkit-input-placeholder {
    font-weight: normal;
    font-size: 14px;
    color: #111111;
}

.popup-overlay
    .modal-newsletter
    .newsletter-form
    .form-control:-ms-input-placeholder {
    font-weight: normal;
    font-size: 14px;
    color: #111111;
}

.popup-overlay
    .modal-newsletter
    .newsletter-form
    .form-control::-ms-input-placeholder {
    font-weight: normal;
    font-size: 14px;
    color: #111111;
}

.popup-overlay .modal-newsletter .newsletter-form .form-control::placeholder {
    font-weight: normal;
    font-size: 14px;
    color: #111111;
}

.popup-overlay .modal-newsletter .newsletter-form .default-btn {
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.popup-overlay .modal-newsletter .newsletter-form #chb1 {
    margin-right: 5px;
    position: relative;
    top: 1px;
    color: #111111;
}

.popup-overlay .modal-newsletter .newsletter-form .agree-label {
    color: #111111;
}

.popup-overlay .modal-newsletter #validator-newsletter-2 {
    color: #ff0000;
    margin-bottom: 10px;
}

.popup-overlay.popup-hide {
    opacity: 0;
    visibility: hidden;
}

.popup-show {
    opacity: 1;
    visibility: visible;
}

/*====================================================
OTHERS STYLE AREA
=====================================================*/
/*
Preloader Area Style*/
.preloader {
    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;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 99999;
}

.preloader .content {
    width: 80px;
    height: 80px;
    overflow: hidden;
    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;
    position: relative;
}

.preloader .content::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background: white;
}

.preloader .content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3854a7;
    -webkit-animation: rotate-five 12s infinite alternate;
    animation: rotate-five 12s infinite alternate;
}

.preloader .content .box {
    height: 50%;
    width: 50%;
    background: #3854a7;
    position: relative;
    z-index: 10;
    -webkit-animation: 12s rotate-five infinite alternate;
    animation: 12s rotate-five infinite alternate;
}

.preloader.preloader-deactivate {
    visibility: hidden;
}

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

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

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

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

/*
Go Top Style*/
.go-top {
    position: fixed;
    cursor: pointer;
    right: 3%;
    top: 87%;
    background-color: #3854a7;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    -webkit-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
    -webkit-transition: 0.9s;
    transition: 0.9s;
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #3854a7;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.go-top:hover {
    color: #ffffff;
    background-color: #3854a7;
}

.go-top:hover::before {
    opacity: 1;
    visibility: visible;
}

.go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.go-top:focus {
    color: #ffffff;
}

.go-top:focus::before {
    opacity: 1;
    visibility: visible;
}

.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

.go-top.active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    right: 3%;
    top: 84%;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/*
Video wave Style*/
.video-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 0;
    color: #3854a7;
    position: relative;
    top: 3px;
    z-index: 1;
    background-color: rgba(22, 104, 225, 0.8);
    border-radius: 50%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.video-btn i {
    font-size: 42px;
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 1px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

.video-btn::after,
.video-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    border-radius: 0;
    border-radius: 50%;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    -webkit-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    background-color: rgba(22, 104, 225, 0.8);
}

.video-btn:hover {
    background-color: rgba(27, 27, 27, 0.8);
}

.video-btn:hover::before,
.video-btn:hover::after {
    background-color: rgba(27, 27, 27, 0.8);
}

@-webkit-keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

@keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2);
    }
}

/*
Nice select Area Style*/
.nice-select .list {
    width: 100%;
    border-radius: 0;
    height: 200px;
    overflow-y: scroll;
}

.nice-select .option:hover {
    background-color: #3854a7;
    color: #ffffff;
}

.nice-select .option.selected.focus {
    color: #3854a7;
}

.nice-select .current {
    font-size: 16px;
}

/*
Page-navigation Area Style*/
.pagination-area .page-numbers {
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #111111;
    text-align: center;
    display: inline-block;
    position: relative;
    margin-left: 3px;
    margin-right: 3px;
    font-size: 17px;
    background-color: #f9fbfe;
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #ebebeb;
}

.pagination-area .page-numbers:hover {
    color: #ffffff;
    border-color: #3854a7;
    background-color: #3854a7;
}

.pagination-area .page-numbers i {
    font-size: 20px;
}

.pagination-area .page-numbers.next {
    top: 3px;
}

.pagination-area .page-numbers.current {
    color: #ffffff;
    border-color: #3854a7;
    background-color: #3854a7;
}

.footer-area {
    background-color: #292e32;
}

.footer-color {
    color: white;
}

.footer-color:hover {
    color: #f94d00;
}

/*
Keyframes Area Style
======================================================*/
@-webkit-keyframes moVebounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes moVebounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes moveBounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes moveBounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes FocuS {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes FocuS {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

@keyframes border-transform {
    0%,
    100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
        border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
        border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
        border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
        border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
        border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
        border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
}

/*# sourceMappingURL=style.css.map */

.product-img {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

img {
    max-width: 100%;
    height: auto;
    /* This ensures that the image maintains aspect ratio */
}

.product-content {
    margin-top: 10px;
}

/* .product-content {
  font-size: 14px;
  text-overflow: ellipsis; 
  display: block;
  white-space: nowrap; 
  overflow: hidden; 
  color:#000;
} */

.product-content {
    font-size: 14px;
    text-overflow: ellipsis;
    display: block;
    color: #000;
}

.products-price li {
    list-style: none;
    font-size: 16px;
    font-weight: bold;
}

.products-cart-wish-view li {
    list-style: none;
    margin-top: 10px;
}

.default-btn {
    padding: 8px 15px;
    background-color: #ff6f61;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.default-btn i {
    margin-right: 5px;
}

/* Custom Stylish Tabs */
.custom-tabs .nav-link {
    background-color: #f8f9fa;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-link.active {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-tabs .nav-link:hover {
    background-color: #0056b3;
    color: white;
    border-color: #0056b3;
}

.tab-content .products-details-tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 15px;
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.tab-content .products-details-tab-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.pagination-controls button {
    background-color: #3854a7;
    border: 1px solid #ddd;
    padding: 8px 12px;
    cursor: pointer;
    color: #fff;
    margin: 0 5px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.pagination-controls button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-controls button:not(:disabled):hover {
    background-color: #3854a7;
}

.pagination-controls span {
    font-weight: bold;
    margin: 0 10px;
    color: #333;
}

.col-lg-2 {
    display: flex;
    flex-direction: column;
    /* Arrange items vertically */
    align-items: center;
    /* Center items horizontally */
}

.related-categories {
    display: flex;
    flex-direction: column;
    /* Arrange items vertically */
    align-items: center;
    /* Center items horizontally */
}

.related-categories-align {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
}

.slider-img {
    align-items: center;
    padding-left: 10px;
}

.circle {
    width: 100px;
    height: 100px;
    background-color: white;
    /* Circle background color */
    border-radius: 10px;
    /* Makes the circle shape */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ddd;
    /* Light border color, adjust as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adds a subtle shadow */
    transition: box-shadow 0.3s ease;
    /* Smooth shadow transition on hover */
}

.circle:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Deeper shadow on hover */
}

.circle img {
    max-width: 80%;
    max-height: 80%;
}

.subcatname {
    font-weight: bold;
    margin-top: 12px;
    /* Center text */
}

.products-card-back {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
}

.card {
    margin-bottom: 30px;
    border: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-radius: 8px;
    -webkit-box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
    box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
}

.card .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 24px;
    border-bottom: 1px solid #f6f7fb;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card .card-body {
    padding: 30px;
    background-color: transparent;
}

.home-content {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
    background-color: #fbf7f7;
    border-radius: 30px;
}

.autocomplete-dropdown {
    position: absolute;
    /* This ensures the dropdown does not affect the layout */
    /* transform: translateX(-1%); */
    background-color: white;
    border: 1px solid #ddd;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 5px;
    /* Adds a little space between the input and the dropdown */
    width: 90%;
    /* Makes the dropdown the same width as the search input */
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Optional: add shadow for better visual separation */
    z-index: 1051;
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #888 #f1f1f1;
    /* For Firefox */
}

.autocomplete-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.autocomplete-item:hover {
    background-color: #f2f2f2;
}

/* For Webkit browsers (Chrome, Safari, Edge) */
.autocomplete-dropdown::-webkit-scrollbar {
    width: 8px;
    /* Set scrollbar width */
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: #888;
    /* Scrollbar handle color */
    border-radius: 4px;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Handle color on hover */
}

.product-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.product-name {
    flex: 1;
    font-weight: bold;
    color: #333;
}

.product-price {
    color: #888;
}

.info-boxes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #d9dadb;
    /* Dark brown background */
    padding: 20px;
}

.core-values {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.info-box {
    flex: 1;
    min-width: 200px;
    width: 400px;
    background-color: #03468a;
    /* Lighter brown for boxes */
    color: #fff;
    /* White text color */
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    margin: 10px;
    border-radius: 70px;
}

.info-box h5 {
    margin-bottom: 15px;
    color: #fff;
}

.info-box p {
    margin-bottom: 10px;
}

.products-card-back .row {
    display: flex;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .info-box {
        flex-basis: 100%;
    }
}

/* Base styles */
.col-lg-4 {
    padding: 0;
    position: relative;
}

.wish-cart {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.wish-cart li {
    display: inline-block;
    position: relative;
    margin: 0 10px;
}

.user-icon {
    font-size: 24px;
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 180px;
    z-index: 10;
}

/* Cart Icon */
.cart .wish-icon {
    font-size: 20px;
}

.count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    border-radius: 50%;
    padding: 3px 6px;
}

.catstrip {
    background: #eee;
    font-size: 13px;
    line-height: 29px;
    padding: 4px;
    margin: 4px 5px;
    width: auto !important;
    color: #000;
    font-weight: bold;
}

/* Responsive Media Queries */

/* Adjustments for larger screens */

/* Large screens (Tablets and Desktops) */
@media (max-width: 1590px) and (min-width: 994px) {
    .col-lg-4 {
        width: 33.33%;
    }

    .wish-cart li {
        margin: 0 15px;
        gap: 15px;
    }

    .user-dropdown-menu {
        left: 0;
        width: 200px;
    }

    .user-icon-container {
        position: relative;
        /* Keep position relative for dropdown positioning */
        align-items: center;
        bottom: 0px;
        right: 0px;
        z-index: 5000;
    }

    .user-icon-container:hover .user-dropdown-menu {
        display: block;
        /* Show dropdown on hover of user icon */
    }

    #ik2 {
        top: 30px;
        left: 70px;
    }

    #ik3 {
        bottom: 0px;
        left: 0px;
    }
}

/* Screen size 1600 * 900 */

@media only screen and (max-width: 1680px) {
    .products-card-back {
        margin-left: 20px;
        width: 128rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 88.33% !important;
        /* Each product takes 1/3 of the row */
        margin-left: 20px;
    }
}

/* Screen size 1600 * 900 */

@media only screen and (max-width: 1600px) {
    .single-services {
        width: 35rem;
    }

    .products-card-back {
        margin-left: 20px;
        width: 121rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 21.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 20px;
    }
}

/* Screen size 1440px * 900 */

@media only screen and (max-width: 1440px) {
    .single-services {
        width: 35rem;
        margin-left: -30px;
        padding-left: 2px;
        gap: 5rem !important;
    }

    .zoomed-image {
        position: absolute;
        top: 0;
        left: 50%;
        /* Position the zoom window on the right */
        width: 50%;
        height: 35%;
        max-width: 50%;
        max-height: 50%;
        background-repeat: no-repeat;
        background-size: 200%;
        /* Adjust to control zoom level */
        border: 1px solid #ccc;
        background-color: #ccc;
        display: inline-block;
        pointer-events: none;
        z-index: 1000;
    }

    .products-card-back {
        margin-left: 20px;
        width: 107rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 21.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 20px;
    }
}

/* Screen size 1400px * 900 */

@media only screen and (max-width: 1400px) {
    .single-services {
        width: 31rem;
        padding-left: 50px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 60px;
        height: 60px;
        line-height: 70px;
        position: absolute;
        top: 28px;
        left: 5px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
    }

    .single-services p {
        margin-left: 15px;
    }

    .zoomed-image {
        position: absolute;
        top: 0;
        left: 50%;
        /* Position the zoom window on the right */
        width: 50%;
        height: 35%;
        max-width: 50%;
        max-height: 50%;
        background-repeat: no-repeat;
        background-size: 200%;
        /* Adjust to control zoom level */
        border: 1px solid #ccc;
        background-color: #ccc;
        display: inline-block;
        pointer-events: none;
        z-index: 1000;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 115%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .products-card-back {
        margin-left: 20px;
        width: 100rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 28.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 20px;
    }
}

/* Screen size 1366px */

@media only screen and (max-width: 1366px) {
    .middle-header .wish-cart li {
        margin-left: -50px !important;
    }
    .products-card-back {
        margin-left: 40px;
        width: 100rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 28.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 15px;
    }
}

/* Screen size 1360px */

@media only screen and (max-width: 1360px) {
    .single-services {
        width: 30rem;
        padding-left: 50px;
    }

    .products-card-back {
        margin-left: 20px;
        width: 100rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 28.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 15px;
    }
}

/* Screen size 1280px */

@media only screen and (max-width: 1280px) {
    .user-icon-container {
        left: 40px;
    }

    .middle-header .wish-cart li a,
    .middle-header .wish-cart li .cart {
        position: relative;
        color: #111111;
        display: block;
        padding-left: 30px;
        font-weight: 500;
        cursor: pointer;
    }

    .single-services {
        width: 28rem;
        padding-left: 50px;
    }

    .single-services p {
        margin-left: 20px;
    }

    .single-services-color {
        margin-left: 15px;
        text-align: center;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 60px;
        height: 60px;
        line-height: 70px;
        position: absolute;
        top: 28px;
        left: 5px;
    }

    .single-services .icon img {
        width: 3rem;
        margin-top: -4px;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 125%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .products-card-back {
        margin-left: 20px;
        width: 90rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 28.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 15px;
    }
}

/* Screen size 1152px */

@media only screen and (max-width: 1152px) {
    .login-span {
        font-size: 20px;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 50rem;
        background: var(--color-brand);
        border-radius: var(--rad);
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    /* New Button Class */
    .new-button-class {
        background: #ff5733;
        /* Different color */
        color: white;
        font-weight: bold;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 117%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .category-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(0, 0, 0, 0.05);
        /* Light border for structure */
        transition:
            box-shadow 0.3s ease-in-out,
            transform 0.3s ease-in-out;
    }

    .category-card:hover {
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        transform: translateY(-5px);
        /* Slight lift effect */
    }

    .single-categories {
        border: 1px solid #dddddd;
        position: relative;
        margin-bottom: 24px;
        z-index: 1;
        -webkit-transition: all ease 0.5s;
        transition: all ease 0.5s;
        background-color: #162f4d;
        color: white;
    }

    .single-services {
        width: 24rem;
        padding-left: 30px;
        height: 20rem;
    }

    .single-services p {
        margin-left: 10px;
        font-size: 15px;
    }

    .single-services-color {
        margin-left: 15px;
        text-align: center;
        font-size: 10px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 60px;
        height: 60px;
        position: absolute;
        margin-top: -20px;
    }

    .single-services .icon img {
        width: 3rem;
    }

    .products-card-back {
        margin-left: 25px;
        width: 83rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 28.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 15px;
    }
}

/* Screen size 1280px */

@media only screen and (max-width: 1280px) {
    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 40rem;
        background: var(--color-brand);
        border-radius: var(--rad);
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    /* New Button Class */
    .new-button-class {
        background: #ff5733;
        /* Different color */
        color: white;
        font-weight: bold;
    }

    .middle-header .wish-cart li a,
    .middle-header .wish-cart li .cart {
        position: relative;
        color: #111111;
        display: block;
        padding-left: 30px;
        font-weight: 500;
        cursor: pointer;
    }

    .single-services {
        width: 20rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 28px;
        left: 5px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 105%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .products-card-back {
        margin-left: 40px;
        width: 90rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 44.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 15px;
    }

    .nav-item-position {
        width: 100px;
    }

    .nav-item-position img {
        width: 90px;
    }

    .nav-item-position a {
        font-size: medium;
    }

    .desktop-nav .navbar .navbar-nav .nav-item a {
        font-size: 12px;
        color: #111111;
        line-height: 1;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-left: 20px;
        margin-right: 20px;
    }
}

/* Screen size 1280px */

@media only screen and (max-width: 1280px) {
    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 40rem;
        background: var(--color-brand);
        border-radius: var(--rad);
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    /* New Button Class */
    .new-button-class {
        background: #ff5733;
        /* Different color */
        color: white;
        font-weight: bold;
    }

    .middle-header .wish-cart li a,
    .middle-header .wish-cart li .cart {
        position: relative;
        color: #111111;
        display: block;
        padding-left: 30px;
        font-weight: 500;
        cursor: pointer;
    }

    .single-services {
        width: 20rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 28px;
        left: 5px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 105%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .products-card-back {
        margin-left: 40px;
        width: 90rem;
    }

    .products-card-back .row {
        display: flex;
        flex-wrap: wrap;
    }

    .single-products2 {
        width: 44.33%;
        /* Each product takes 1/3 of the row */
        margin-left: 15px;
    }

    .nav-item-position {
        width: 100px;
    }

    .nav-item-position img {
        width: 90px;
    }

    .nav-item-position a {
        font-size: medium;
    }

    .desktop-nav .navbar .navbar-nav .nav-item a {
        font-size: 12px;
        color: #111111;
        line-height: 1;
        position: relative;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 360px) and (min-device-width: 360px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 8px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 15px;
        font-size: 25px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 30rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 25px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 36rem !important;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -110px !important;
        margin-left: -40px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
        font-size: 9px;
    }
}

@media only screen and (max-width: 375px) and (min-device-width: 375px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 30rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 25px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 32rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 37.5rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -9rem !important;
        margin-left: -32px !important;
    }

    .buuton-css2-details {
        margin-top: 12px !important;
    }

    .zoomed-image {
        display: none;
    }

    .single-products {
        /* border: 1px solid #dddddd;
      margin-bottom: 24px;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; */

        border: 1px solid #dddddd;
        border-radius: 8px;
        padding: 3px;
        position: relative;
        background: var(--white);
        border: 1px solid var(--ghost-white);
        border-radius: 8px;
        padding: 16px;
        position: relative;
        margin: 5px 15px 5px 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
        margin: 0 auto 20px;
        /* Center align and add spacing */
    }

    .product-img11 img {
        width: 70% !important;
        max-width: 150px;
        /* Limit max width */
        height: auto;
    }

    .product-description {
        font-size: 14px;
        /* Adjust text size for readability */
    }

    .card-button button {
        width: 100%;
        /* Buttons take full width */
        margin-bottom: 10px;
        /* Add spacing between buttons */
    }

    .products-price {
        flex-direction: column;
        /* Stack prices vertically */
        align-items: flex-start;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 9px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 320px) and (min-device-width: 320px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .buuton-css2 {
        display: none;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .categories-h3-size {
        font-size: 8px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 28rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 15px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 25rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 32.5rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -30px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 30px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 384px) and (min-device-width: 384px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 33rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38.5rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -13rem !important;
        margin-left: -23px !important;
    }

    .buuton-css2-details {
        margin-top: 30px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .single-products {
        /* border: 1px solid #dddddd;
      margin-bottom: 24px;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; */

        border: 1px solid #dddddd;
        border-radius: 8px;
        padding: 3px;
        position: relative;
        background: var(--white);
        border: 1px solid var(--ghost-white);
        border-radius: 8px;
        padding: 16px;
        position: relative;
        margin: 5px 15px 5px 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
        margin: 0 auto 20px;
        /* Center align and add spacing */
    }

    .product-img11 img {
        width: 70% !important;
        max-width: 150px;
        /* Limit max width */
        height: auto;
    }

    .product-description {
        font-size: 14px;
        /* Adjust text size for readability */
    }

    .card-button button {
        width: 100%;
        /* Buttons take full width */
        margin-bottom: 10px;
        /* Add spacing between buttons */
    }

    .products-price {
        flex-direction: column;
        /* Stack prices vertically */
        align-items: flex-start;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 9px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 353px) and (min-device-width: 353px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 30rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 35.5rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -10rem !important;
        margin-left: -13px !important;
    }

    .buuton-css2-details {
        margin-top: 15px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .single-products {
        /* border: 1px solid #dddddd;
      margin-bottom: 24px;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; */

        border: 1px solid #dddddd;
        border-radius: 8px;
        padding: 3px;
        position: relative;
        background: var(--white);
        border: 1px solid var(--ghost-white);
        border-radius: 8px;
        padding: 16px;
        position: relative;
        margin: 5px 15px 5px 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
        margin: 0 auto 20px;
        /* Center align and add spacing */
    }

    .product-img11 img {
        width: 70% !important;
        max-width: 150px;
        /* Limit max width */
        height: auto;
    }

    .product-description {
        font-size: 14px;
        /* Adjust text size for readability */
    }

    .card-button button {
        width: 100%;
        /* Buttons take full width */
        margin-bottom: 10px;
        /* Add spacing between buttons */
    }

    .products-price {
        flex-direction: column;
        /* Stack prices vertically */
        align-items: flex-start;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .letter-space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 540px) and (min-device-width: 540px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 30rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 45rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 45.5rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -10rem !important;
        margin-left: -13px !important;
    }

    .buuton-css2-details {
        margin-top: 15px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .single-products {
        /* border: 1px solid #dddddd;
      margin-bottom: 24px;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; */

        border: 1px solid #dddddd;
        border-radius: 8px;
        padding: 3px;
        position: relative;
        background: var(--white);
        border: 1px solid var(--ghost-white);
        border-radius: 8px;
        padding: 16px;
        position: relative;
        margin: 5px 15px 5px 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
        margin: 0 auto 20px;
        /* Center align and add spacing */
    }

    .product-img11 img {
        width: 70% !important;
        max-width: 150px;
        /* Limit max width */
        height: auto;
    }

    .product-description {
        font-size: 14px;
        /* Adjust text size for readability */
    }

    .card-button button {
        width: 100%;
        /* Buttons take full width */
        margin-bottom: 10px;
        /* Add spacing between buttons */
    }

    .products-price {
        flex-direction: column;
        /* Stack prices vertically */
        align-items: flex-start;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .letter-space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 344px) and (min-device-width: 344px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 30rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 28rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 45.5rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -10rem !important;
        margin-left: -13px !important;
    }

    .buuton-css2-details {
        margin-top: 15px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .single-products {
        /* border: 1px solid #dddddd;
      margin-bottom: 24px;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; */

        border: 1px solid #dddddd;
        border-radius: 8px;
        padding: 3px;
        position: relative;
        background: var(--white);
        border: 1px solid var(--ghost-white);
        border-radius: 8px;
        padding: 16px;
        position: relative;
        margin: 5px 15px 5px 0;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
        margin: 0 auto 20px;
        /* Center align and add spacing */
    }

    .product-img11 img {
        width: 70% !important;
        max-width: 150px;
        /* Limit max width */
        height: auto;
    }

    .product-description {
        font-size: 14px;
        /* Adjust text size for readability */
    }

    .card-button button {
        width: 110%;
        /* Buttons take full width */
        margin-bottom: 10px;
        /* Add spacing between buttons */
    }

    .products-price {
        flex-direction: column;
        /* Stack prices vertically */
        align-items: flex-start;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 7px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .letter-space {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media only screen and (max-width: 450px) and (min-device-width: 413px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 11.5px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 30px;
        font-size: 30px;
    }

    .categories-h3-size {
        font-size: 13.5px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 40rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 38rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 45rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 2px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 460px) and (min-device-width: 451px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 12px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 30px;
        font-size: 30px;
    }

    .categories-h3-size {
        font-size: 14.5px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 40rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 38rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 46rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 480px) and (min-device-width: 471px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 13px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 35px;
        font-size: 30px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 42rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 18px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 40rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 47rem;
        padding-left: 50px;
        height: 18rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 5px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 490px) and (min-device-width: 481px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 14px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 35px;
        font-size: 30px;
    }

    .buuton-css2 {
        display: none;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 42rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 20px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 40rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 50rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 6px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 500px) and (min-device-width: 491px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .banner-carousel-container {
        aspect-ratio: 16 / 9;
        min-height: 180px;
        max-height: 320px;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 14px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 35px;
        font-size: 30px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 42rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 25px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 40rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 51rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 10px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 7px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 310px) and (min-device-width: 301px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .custom-header-content {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin-left: -56px;
    }

    .buuton-css2 {
        display: none;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .categories-h3-size {
        font-size: 7.5px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 25rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 15px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 25rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 32rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -20px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 320px) and (min-device-width: 311px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .custom-header-content {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin-left: -54px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .categories-h3-size {
        font-size: 8px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 27rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 25rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 33.5rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -20px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 330px) and (min-device-width: 321px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .custom-header-content {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin-left: -50px;
    }

    .more-categories-icon {
        margin-top: 15px;
        font-size: 25px;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .categories-h3-size {
        font-size: 10px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 27rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 25rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 34rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -20px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 340px) and (min-device-width: 331px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .custom-header-content {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin-left: -30px;
    }

    .more-categories-icon {
        margin-top: 15px;
        font-size: 25px;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .buuton-css2 {
        display: none;
    }

    .categories-h3-size {
        font-size: 9px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 29rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 28rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 35rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -40px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 350px) and (min-device-width: 341px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .custom-header-content {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1200px;
        margin-left: -20px;
    }

    .more-categories-icon {
        margin-top: 13px;
        font-size: 25px;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .buuton-css2 {
        display: none;
    }

    .categories-h3-size {
        font-size: 10px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 29rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 28rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 36rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -40px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 360px) and (min-device-width: 351px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 8px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 15px;
        font-size: 25px;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .categories-h3-size {
        font-size: 10px;
    }

    .buuton-css2 {
        display: none;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 31rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 28rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 37rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -40px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 367px) and (min-device-width: 361px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 8px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        font-size: 12px;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 20px;
        font-size: 25px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .buuton-css2 {
        display: none;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 31rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -40px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 380px) and (min-device-width: 371px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 9px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 90%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 5px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        font-size: 12px;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 40px;
        font-size: 20px;
    }

    .single-products2 {
        margin-left: 3.5px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 39rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -30px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 390px) and (min-device-width: 381px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 9.5px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 90%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 5px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 35px;
        font-size: 30px;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .buuton-css2 {
        display: none;
    }

    .categories-h3-size {
        font-size: 11px;
    }

    .single-products2 {
        margin-left: 4px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 35rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 32rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 40rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -25px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 400px) and (min-device-width: 391px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 10px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 90%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 5px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 35px;
        font-size: 30px;
    }

    .single-products2 {
        margin-left: 4px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .buuton-css2 {
        display: none;
    }

    .category-card h3 {
        margin: 0px 0 0;
        color: #333;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 35rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 33rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 40rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -8px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 410px) and (min-device-width: 401px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 10.5px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-h3-size {
        font-size: 12.5px;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 80%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 28px;
        font-size: 30px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 37rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 8px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 33rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 43rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .buuton-css2 {
        display: none;
    }

    .single-products2 {
        margin-left: 4.5px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 420px) and (min-device-width: 411px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 11px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 90%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 5px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 42px;
        font-size: 30px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 38rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 8px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 35rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 43rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .buuton-css2 {
        display: none;
    }

    .categories-h3-size {
        font-size: 12px;
    }

    .single-products2 {
        margin-left: 5px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 430px) and (min-device-width: 421px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 11px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 90%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 5px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 45px;
        font-size: 30px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 39rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 8px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 36rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 45rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 440px) and (min-device-width: 431px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 27px;
        font-size: 30px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 40rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 8px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 36rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 45rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 0px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 470px) and (min-device-width: 461px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 13px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-container-header {
        padding: 5px;
    }

    .category-card-header {
        border-radius: 8px;
        text-align: center;
        transition: transform 0.2s;
    }

    .category-card-header:hover {
        transform: scale(1.05);
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 35px;
        font-size: 30px;
    }

    .categories-h3-size {
        font-size: 15px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 43rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 8px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 36rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 48rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }

    .display-block {
        display: none;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .single-products2 {
        margin-left: 4px !important;
        width: 97% !important;
    }

    .buuton-css2 {
        display: none;
    }
}

@media only screen and (max-width: 368px) and (min-device-width: 368px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 8px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        font-size: 12px;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 27px;
        font-size: 20px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 31rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -39px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 369px) and (min-device-width: 369px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 8.5px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        font-size: 12px;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 27px;
        font-size: 20px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        font-size: 12px;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .category-card-header {
        margin-top: 20px;
    }

    .more-categories-icon {
        margin-top: 27px;
        font-size: 20px;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 31rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -38px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 370px) and (min-device-width: 370px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 8.5px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .category-card-header img {
        width: 70%;
        height: auto;
        border-radius: 8px;
        text-align: center;
        margin-left: 10px;
    }

    .categories-h3-size {
        margin: 0px 0 0;
        font-size: 12px;
        color: #333;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .more-categories-icon {
        margin-top: 27px;
        font-size: 20px;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -37px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 378px) and (min-device-width: 378px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size {
        font-size: 10.5px;
    }

    .buuton-css2 {
        display: none;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -29px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 379px) and (min-device-width: 379px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 9px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .categories-h3-size {
        font-size: 11px;
    }

    .buuton-css2 {
        display: none;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -28px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 380px) and (min-device-width: 380px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .categories-h3-size-page {
        margin: 0px 0 0;
        color: #333;
        font-size: 9.5px !important;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    .single-products2 {
        margin-left: 3.5px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }

    .categories-h3-size {
        font-size: 11.5px;
    }

    .buuton-css2 {
        display: none;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 30rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -27px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 383px) and (min-device-width: 383px) and (orientation: portrait) {
    body {
        font-size: 15px;
        font-family: "Rubik", sans-serif;
    }

    .cart-product {
        grid-template-columns: 1fr;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
    }

    .product-actions {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --rad: 0.7rem;
        --dur: 0.3s;
        --color-dark: #2f2f2f;
        --color-light: #fff;
        --color-brand: #57bd84;
        --font-fam: "Lato", sans-serif;
        --height: 5rem;
        --btn-width: 6rem;
        --bez: cubic-bezier(0, 0, 0.43, 1.49);
    }

    html {
        box-sizing: border-box;
        height: 100%;
        font-size: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: inherit;
    }

    .search-form-home {
        position: relative;
        width: 33rem;
        background: var(--color-brand);
        border-radius: var(--rad);
        margin-left: 13px;
    }

    .search-input-home,
    .search-button-home {
        height: var(--height);
        font-family: var(--font-fam);
        border: 0;
        color: var(--color-dark);
        font-size: 1.8rem;
    }

    .search-input-home {
        outline: 0;
        width: 100%;
        background: var(--color-light);
        padding: 0 1.6rem;
        border-radius: var(--rad);
        appearance: none;
        transition: all var(--dur) var(--bez);
        transition-property: width, border-radius;
        z-index: 1;
        position: relative;
    }

    .search-button-home {
        display: none;
        position: absolute;
        top: 0;
        right: 0;
        width: var(--btn-width);
        font-weight: bold;
        background: var(--color-brand);
        border-radius: 0 var(--rad) var(--rad) 0;
    }

    .search-input-home:not(:placeholder-shown) {
        border-radius: var(--rad) 0 0 var(--rad);
        width: calc(100% - var(--btn-width));
    }

    .search-input-home:not(:placeholder-shown) + .search-button-home {
        display: block;
    }

    .search-label-home {
        position: absolute;
        clip: rect(1px, 1px, 1px, 1px);
        padding: 0;
        border: 0;
        height: 1px;
        width: 1px;
        overflow: hidden;
    }

    .navbar-category {
        height: 0px;
    }

    .mobile-menu-button {
        margin-left: 32rem !important;
        margin-top: 1px;
    }

    .mobile-view-hide {
        display: none;
    }

    .container-fluid1 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .single-services {
        width: 38rem;
        height: 18rem;
        margin-left: -5rem;
    }

    .single-services p {
        font-size: 12px;
    }

    .single-services-color {
        margin-left: 10px;
        text-align: center;
        font-size: 12px;
    }

    .single-services .icon {
        background-color: #f5f5f5;
        display: inline-block;
        text-align: center;
        border-radius: 50px;
        width: 35px;
        height: 35px;
        line-height: 70px;
        position: absolute;
        top: 35px;
        left: 5px;
        margin-top: 20px;
    }

    .single-services .icon img {
        width: 2.5rem;
        margin-top: -35px;
    }

    .thumbnail-slider {
        display: none;
    }

    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -24px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .zoomed-image {
        display: none;
    }

    .autocomplete-dropdown {
        position: absolute;
        /* This ensures the dropdown does not affect the layout */
        /* transform: translateX(-1%); */
        background-color: white;
        border: 1px solid #ddd;
        max-height: 400px;
        overflow-y: auto;
        margin-top: 5px;
        /* Adds a little space between the input and the dropdown */
        width: 100%;
        /* Makes the dropdown the same width as the search input */
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        /* Optional: add shadow for better visual separation */
        z-index: 1051;
    }

    .enquiry-button {
        text-align: center;
        background-color: #162f4d;
        color: #fff;
        padding: 10px 20px;
        margin-top: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 8px;
        transition:
            transform 0.3s ease,
            background-color 0.3s ease,
            color 0.3s ease;
    }
}

@media only screen and (max-width: 384px) and (min-device-width: 384px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -23px !important;
    }
}

@media only screen and (max-width: 385px) and (min-device-width: 385px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -22px !important;
    }
}

@media only screen and (max-width: 386px) and (min-device-width: 386px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -21px !important;
    }
}

@media only screen and (max-width: 387px) and (min-device-width: 387px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -20px !important;
    }
}

@media only screen and (max-width: 388px) and (min-device-width: 388px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -19px !important;
    }
}

@media only screen and (max-width: 389px) and (min-device-width: 389px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -18px !important;
    }

    .category-name-h3 {
        margin: 0px 0 0;
        font-size: 10px;
        color: #333;
    }

    .single-products2 {
        margin-left: 4px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 389px) and (min-device-width: 390px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -18px !important;
    }

    .categories-h3-size {
        font-size: 12px;
    }
}

@media only screen and (max-width: 408px) and (min-device-width: 400px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .single-products2 {
        margin-left: 5px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 408px) and (min-device-width: 408px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .buuton-css2-details {
        margin-top: 0px !important;
    }
}

@media only screen and (max-width: 330px) and (min-device-width: 325px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -40px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .buuton-css2 {
        display: none;
    }

    .categories-h3-size {
        font-size: 9px;
    }

    .single-products2 {
        margin-left: 3px !important;
        width: 97% !important;
    }

    .products-card-back {
        background-color: white;
        padding: 15px;
        border-radius: 10px;
        margin-left: 0px;
    }
}

@media only screen and (max-width: 390px) and (min-device-width: 390px) and (orientation: portrait) {
    .product-buuton-css-details {
        margin-bottom: -11rem !important;
        margin-left: -17px !important;
    }

    .buuton-css2-details {
        margin-top: 20px !important;
    }

    .categories-h3-size {
        font-size: 12px;
    }
}

/* @media (max-width: 991px) {
    .category-card {
        background: linear-gradient(to bottom, #fee3cf, #fffdfd);
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 18px !important;
        text-align: center;
        transition: transform 0.2s;
    }
} */

/* Header redesign overrides */
.header-shell {
    background: #ffffff;
    border-radius: 12px;
    padding: 4px 6px 2px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.header-shell .logo img {
    max-height: 44px;
}

.middle-header-elevated {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 12px;
}

.middle-header-elevated .container-fluid {
    padding-left: 4px;
    padding-right: 4px;
}

.search-shell {
    background: transparent;
    border-radius: 14px;
    padding: 0;
    border: none;
}

.search-input-row {
    display: grid;
    grid-template-columns: 1fr 56px;
    gap: 0;
    align-items: center;
}

.header-shell .search-form-home {
    width: 100%;
    background: transparent;
}

.header-shell .search-input-home {
    height: 48px;
    border-radius: 12px 0 0 12px;
    border: 1px solid #d9dce7;
    background: #ffffff;
    color: #2f3443;
    font-size: 15px;
    padding-left: 18px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-shell .search-input-home::placeholder {
    color: #959aa7;
}

.header-shell .search-input-home:focus {
    border-color: #f34236;
    box-shadow: 0 0 0 3px rgba(243, 66, 54, 0.12);
}

.header-shell .search-button-home {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 48px;
    width: 56px;
    border-radius: 0 12px 12px 0;
    border: none;
    letter-spacing: 0.2px;
    font-weight: 700;
}

.header-shell .search-button-home.search-button-elevated {
    background: #f34236;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(243, 66, 54, 0.25);
}

.header-shell .autocomplete-dropdown {
    margin-top: 8px;
    border: 1px solid #e5e7ee;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.header-shell .autocomplete-item {
    color: #2f3443;
}

.header-shell .autocomplete-item:hover {
    background: #f6f7fb;
}

.header-shell .product-name {
    color: #2f3443;
}

.header-shell .custom-search-container {
    border-radius: 14px;
    border: 1px solid #e5e7ee;
    background: #ffffff;
    padding: 10px 14px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-shell .custom-search-icon {
    color: #f34236;
}

.header-shell .custom-search-input,
.header-shell .custom-search-input-elevated {
    color: #2f3443;
}

.header-shell .custom-search-input::placeholder {
    color: #959aa7;
}

.wish-cart-neo {
    background: transparent;
    border-radius: 10px;
    padding: 4px 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.wish-cart-neo li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wish-cart-neo .login-span {
    font-weight: 600;
    color: #2f3443;
}

.wish-cart-neo .wish-icon i {
    background: #f6f7fb;
    color: #2f3443;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

.wish-cart-neo .count {
    background: #f34236;
}

.header-shell .user-dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
}

.header-shell .user-dropdown-menu::before {
    border-bottom-color: #ffffff;
}

.header-shell .user-dropdown-item {
    color: #2f3443;
}

.header-shell .user-dropdown-item:hover {
    color: #f34236 !important;
}

.header-nav .desktop-nav {
    background: #ffffff;
    border-radius: 12px;
    padding: 6px 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.header-nav .navbar-nav > li {
    margin-right: 6px;
}

.header-nav .navbar-nav > li > a.nav-link {
    color: #2f3443;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.header-nav .navbar-nav > li > a.nav-link:hover,
.header-nav .navbar-nav > li > a.nav-link:focus {
    background: #f6f7fb;
    color: #f34236;
}

.header-nav .dropdown-menu {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.header-nav .dropdown-menu li a.nav-link {
    color: #2f3443 !important;
}

.header-nav .dropdown-menu li a.nav-link:hover {
    background: #f6f7fb;
    color: #f34236 !important;
}

.category-deck {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.gradient-card {
    background: #ffffff;
    border: 1px solid #e5e7ee;
    border-radius: 12px;
    padding: 10px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.gradient-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.gradient-card img {
    background: #f6f7fb;
    padding: 8px;
    border-radius: 10px;
}

.header-shell .categories-h3-size {
    color: #2f3443;
    font-weight: 600;
}

.nav-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7ee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    padding: 6px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
}

@media (min-width: 768px) {
    body {
        padding-top: 72px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 98px;
    }

    .header-shell {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 2000;
        border-radius: 0;
    }

    .mobile-card {
        background: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    }
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-search {
    flex: 1;
    max-width: 720px;
    position: relative;
}

.nav-search-form {
    display: grid;
    grid-template-columns: 1fr 56px;
    background: #ffffff;
    border: 1px solid #d9dce7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.nav-search-input {
    border: none;
    padding: 0 16px;
    height: 48px;
    font-size: 15px;
    outline: none;
    color: #2f3443;
}

.nav-search-input::placeholder {
    color: #959aa7;
}

.nav-search-button {
    border: none;
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-autocomplete {
    margin-top: 6px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-action-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #2f3443;
    background: #f6f7fb;
    border: 1px solid #e5e7ee;
    text-decoration: none;
    font-weight: 600;
}

.nav-cart {
    position: relative;
}

.nav-cart-count {
    background: #f34236;
    color: #ffffff;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 12px;
    margin-left: 6px;
}

.nav-login-wrapper {
    position: relative;
}

.nav-login-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #e5e7ee;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    min-width: 240px;
    padding: 6px 0;
    z-index: 20;
}

.nav-login-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f0f1f5;
}

.nav-login-muted {
    color: #6b7280;
    font-size: 13px;
}

.nav-login-signup {
    color: #f34236;
    font-weight: 700;
    text-decoration: none;
}

.nav-login-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #2f3443;
    text-decoration: none;
    font-weight: 600;
}

.nav-login-item i {
    color: #4b5563;
    font-size: 16px;
}

.nav-login-item:hover {
    background: #f6f7fb;
}

.mobile-card {
    width: 100%;
    overflow-x: auto;
    padding: 0;
}

.mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 6px 8px;
    gap: 8px;
    flex-wrap: nowrap;
    width: 100%;
}

.mobile-left {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1 1 auto;
}

.mobile-menu-button {
    border: 1px solid #e5e7ee;
    background: #ffffff;
    border-radius: 10px;
    padding: 0;
    width: 32px;
    height: 32px;
    font-size: 18px;
    color: #2f3443;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-logo {
    height: 28px;
    width: auto;
    max-width: 110px;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 0 0 auto;
}

@media (min-width: 0px) and (max-width: 760px) {
    .mobile-left,
    .mobile-actions {
        margin-left: 0 !important;
    }

    .mobile-topbar {
        padding: 8px 8px 6px 4px;
        gap: 6px;
    }
}

@media (min-width: 0px) and (max-width: 400px) {
    .mobile-menu-button,
    .mobile-icon-btn {
        width: 30px;
        height: 30px;
    }

    .mobile-logo {
        max-width: 100px;
        height: 24px;
    }

    .mobile-pill {
        padding: 4px 8px;
        font-size: 11px;
    }
}

@media (max-width: 540px) {
    .mobile-topbar {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        padding: 8px 6px 6px 6px;
        width: 100%;
    }

    .mobile-left {
        gap: 6px;
        flex: 1 1 auto;
    }

    .mobile-actions {
        gap: 6px;
        flex: 0 0 auto;
        justify-content: flex-end;
        margin-left: auto;
        flex-wrap: nowrap;
    }

    .mobile-menu-button,
    .mobile-icon-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .mobile-logo {
        max-width: 96px;
        height: 24px;
    }

    .mobile-pill {
        padding: 4px 8px;
        font-size: 11px;
    }
}

@media (max-width: 460px) {
    .mobile-actions {
        gap: 8px;
    }
}

@media (max-width: 500px) {
    .mobile-topbar {
        gap: 0;
    }

    .mobile-left {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .mobile-actions {
    }

    .mobile-logo {
    }

    .mobile-menu-button {
        margin-left: 0 !important;
    }
}

.mobile-pill {
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid #fdd7cf;
}

.login-pill {
    background: #ffe8e2;
    color: #f04532;
}

.mobile-icon-btn {
    position: relative;
    border: 1px solid #e5e7ee;
    background: #ffffff;
    border-radius: 10px;
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f3443;
}

.mobile-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #f34236;
    color: #ffffff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-location-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px 8px 10px;
    font-size: 13px;
    color: #2f3443;
}

.mobile-location-row .location-action {
    font-size: 13px;
}

.mobile-search-box {
    padding: 0 10px 12px 10px;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d9dce7;
    border-radius: 10px;
    padding: 10px 12px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mobile-search-icon {
    font-size: 18px;
    color: #f34236;
}

.mobile-search-input {
    border: none;
    flex: 1;
    outline: none;
    font-size: 13px;
    color: #2f3443;
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    display: flex;
    justify-content: flex-start;
}

.mobile-drawer {
    width: 80%;
    max-width: 360px;
    background: #f9fafb;
    height: 100%;
    overflow-y: auto;
    box-shadow: 4px 0 16px rgba(0, 0, 0, 0.2);
    padding: 12px;
}

.mobile-drawer-header {
    padding: 6px;
}

.drawer-login-card {
    background: linear-gradient(135deg, #0f172a, #0b1020);
    color: #ffffff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.drawer-login-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.drawer-login-title i {
    color: #facc15;
}

.drawer-login-sub {
    font-size: 13px;
    color: #e5e7eb;
    margin-top: 4px;
}

.mobile-drawer-list {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7ee;
}

.drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    text-decoration: none;
    color: #111827;
    border-bottom: 1px solid #f3f4f6;
}

.drawer-item:last-child {
    border-bottom: none;
}

.drawer-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.drawer-item i {
    color: #4b5563;
}

.drawer-item:hover {
    background: #f6f7fb;
}

.drawer-footer {
    margin-top: 14px;
}

.drawer-app-banner {
    background: #fff7f2;
    border: 1px dashed #f97316;
    border-radius: 12px;
    padding: 12px;
    display: grid;
    gap: 8px;
}

.drawer-app-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #1f2937;
}

.drawer-app-code {
    color: #111827;
    font-size: 14px;
}

.drawer-app-btn {
    align-self: flex-start;
    background: #ef4444;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
}
.container-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-logo {
    height: 34px;
}

.top-note {
    font-size: 12px;
    font-weight: 600;
    color: #f34236;
    text-transform: uppercase;
}

.location-blade {
    background: #f6f7fb;
    border-radius: 10px;
    padding: 8px 12px;
    color: #2f3443;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.location-title {
    font-weight: 700;
    font-size: 13px;
    line-height: 1.1;
}

.location-action {
    font-size: 12px;
    color: #f34236;
    font-weight: 600;
}

.location-blade-inline {
    box-shadow: none;
    padding: 8px 10px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 992px) {
    .header-shell {
        border-radius: 10px;
        padding: 4px 6px 3px;
    }

    .middle-header-elevated {
        padding: 10px;
    }

    .search-input-row {
        grid-template-columns: 1fr;
    }

    .header-shell .search-button-home {
        width: 100%;
    }

    .header-nav .desktop-nav {
        box-shadow: none;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .category-deck {
        box-shadow: none;
    }
}

/* Header category rail refresh */
.category-rail {
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 12px;
    padding: 10px 8px;
    box-shadow: 0 8px 18px rgba(33, 37, 41, 0.05);
}

.category-rail-slider .category-slide {
    padding: 4px 2px;
    outline: none;
}

.category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 4px 2px;
    min-height: 82px;
    background: transparent;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: pointer;
}

.category-chip__icon {
    width: 52px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid #e6e9f0;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
}

.category-chip__img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.category-chip__label {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: #2f3443;
    line-height: 1.35;
    text-align: center;
}

.category-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.category-chip.more-categories {
    background: #fffaf4;
    border: 1px dashed #dce0e9;
}

.category-chip.more-categories .category-chip__icon {
    background: transparent;
    border: none;
    box-shadow: none;
}

.more-categories-icon {
    font-size: 22px;
    color: #c53030;
}

@media (max-width: 576px) {
    .category-chip__icon {
        width: 48px;
        height: 38px;
    }

    .category-chip__label {
        font-size: 11px;
    }
}

/* View Price button style (match TypeoffSlider Buy Now ghost button) */
.enquiry-button {
    background-color: rgba(255, 112, 88, 0.08) !important;
    border: 1px solid rgba(243, 66, 54, 0.35) !important;
    color: #f34236 !important;
}

.enquiry-button:hover {
    background: linear-gradient(120deg, #ff7058, #f34236) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(243, 66, 54, 0.25);
}

.product-buuton-css,
.product-buuton-css-details {
    background-color: #3854a7 !important;
    border-color: #3854a7 !important;
    color: #fff !important;
}

.product-buuton-css:hover,
.product-buuton-css-details:hover {
    background-color: #2d4489 !important;
    border-color: #2d4489 !important;
    color: #fff !important;
}

/* ===== Enhanced Header Search (scoped) ===== */
.nav-search-modern {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.nav-search-modern .nav-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 8px 10px 8px 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-search-modern .nav-search-form:focus-within {
    border-color: rgba(243, 66, 54, 0.35);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12), 0 0 0 3px rgba(243, 66, 54, 0.12);
}

.nav-search-modern .nav-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    padding: 10px 4px;
    outline: none;
}

.nav-search-modern .nav-search-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.nav-search-modern .nav-search-button {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(120deg, #ff7058, #f34236);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 20px rgba(243, 66, 54, 0.25);
    transition: transform 0.12s ease, box-shadow 0.18s ease;
}

.nav-search-modern .nav-search-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(243, 66, 54, 0.32);
}

.nav-search-modern .nav-search-button:active {
    transform: translateY(0);
}

.nav-search-modern .nav-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
    padding: 8px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 30;
    animation: navSearchFade 0.18s ease;
    backdrop-filter: blur(2px);
}

.nav-search-modern .nav-autocomplete-empty {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    color: #475569;
    font-weight: 700;
    font-size: 0.98rem;
}

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

.nav-search-modern .autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.15s ease, transform 0.12s ease, box-shadow 0.15s ease;
    border: 1px solid transparent;
}

.nav-search-modern .autocomplete-item + .autocomplete-item {
    margin-top: 4px;
}

.nav-search-modern .autocomplete-item:hover {
    background: linear-gradient(180deg, #f9fafb, #f2f6ff);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    border-color: rgba(243, 66, 54, 0.18);
}

.nav-search-modern .product-image {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: #fff;
}

.nav-search-modern .product-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.98rem;
}

/* Scoped header polish (hdx-) */
.hdx-header {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.hdx-shell {
    max-width: 1320px;
    padding: 12px 18px 6px;
}

.hdx-mobile-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 12px 10px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.hdx-mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
}

.hdx-mobile-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hdx-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hdx-mobile-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.hdx-brand-sub {
    font-size: 12px;
    color: #475569;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hdx-ghost-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.hdx-ghost-btn:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.hdx-mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdx-chip {
    background: #eef2ff;
    color: #334155;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #e0e7ff;
}

.hdx-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hdx-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.hdx-badge {
    background: linear-gradient(120deg, #ff844b, #f34236);
    color: #ffffff;
    font-weight: 800;
}

.hdx-search {
    margin-top: 10px;
    position: relative;
}

.hdx-search-form {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hdx-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.98rem;
}

.hdx-search-input:focus {
    outline: none;
}

.hdx-search-icon {
    color: #64748b;
}

.hdx-autocomplete {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.hdx-backdrop {
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(4px);
}

.hdx-drawer {
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 26px rgba(15, 23, 42, 0.18);
}

.hdx-drawer-header {
    padding: 18px 18px 10px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.hdx-drawer-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px 14px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.hdx-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.hdx-drawer-sub {
    color: #475569;
    font-size: 0.92rem;
}

.hdx-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 12px;
    background: linear-gradient(120deg, #ff844b, #f34236);
    color: #ffffff;
    font-weight: 800;
    border: none;
    box-shadow: 0 14px 30px rgba(243, 66, 54, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hdx-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(243, 66, 54, 0.28);
    color: #ffffff;
}

.hdx-drawer-list {
    padding: 10px 14px 18px;
}

.hdx-drawer-item {
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 10px 8px;
    transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
}

.hdx-drawer-item:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    transform: translateX(2px);
}

.hdx-nav-area {
    border-top: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hdx-desktop-nav {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
    padding: 10px 12px;
}

.hdx-navbar {
    padding: 0;
}

.hdx-nav-list {
    gap: 6px;
    align-items: center;
}

.hdx-nav-list .nav-item-position {
    border-radius: 12px;
    padding: 6px 10px;
    transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.hdx-nav-list .nav-item-position:hover {
    background: linear-gradient(180deg, #f9fafb, #eef2ff);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.hdx-nav-list img {
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.hdx-more-btn {
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.hdx-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.hdx-cat-active .hdx-cat-link {
    color: #0f172a;
    font-weight: 800;
}

.hdx-mega {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
    border: 1px solid #e2e8f0;
    min-width: 680px;
    background: #ffffff;
    transform: translateX(-10%);
}

.hdx-subcat {
    border-radius: 12px;
    padding: 6px 8px;
    transition: background 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

.hdx-subcat-link {
    font-weight: 700;
    color: #111827 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdx-subcat:hover {
    background: linear-gradient(180deg, #f9fafb, #eef2ff);
    transform: translateX(2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.hdx-subcat-active {
    background: linear-gradient(180deg, #eefce7, #d9f99d);
    box-shadow: 0 12px 24px rgba(82, 101, 0, 0.12);
}

.hdx-subchild {
    left: 100%;
    top: 0;
    margin-left: 8px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
    padding: 10px 0;
}

.hdx-subchild-item a {
    font-weight: 600;
    color: #111827 !important;
}

.hdx-subchild-item:hover {
    background: #f8fafc;
}

@media (max-width: 991.98px) {
    .hdx-shell {
        padding: 12px 14px 6px;
    }
}

@media (max-width: 575.98px) {
    .hdx-mobile-card {
        padding: 12px 10px 10px;
    }

    .hdx-brand-sub {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-search-modern {
        max-width: none;
    }

    .nav-search-modern .nav-search-form {
        border-radius: 12px;
        padding: 8px 10px;
    }

    .nav-search-modern .nav-search-input {
        font-size: 0.98rem;
    }

    .nav-search-modern .nav-autocomplete {
        max-height: 280px;
    }
}

