/* ============================================
   YOUR ORIGINAL CSS (Keep this as is)
   ============================================ */

.ajax-search-form {
    position: relative;
}

.ajax-search-form input[type="text"] {
    line-height: 20px;
    padding: 12px 30px;
    width: 100%;
}

.ajax-search-form button {
    position: absolute;
    right: 3px;
    top: 2.5px;
}

.modal-content .ajax-search-form button {
    padding: 3px 18px;
    right: 1px;
    top: 1px;
}

.ajax-search-results {
    border-radius: 0 0 6px 6px;
    -webkit-box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.10);
    box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.10);
    padding-bottom: 4px;
    position: absolute;
    background: #fff;
    z-index: 2;
}

.ajax-search-results li {
    line-height: 50px;
}

.ajax-search-results li img {
    width: 32px;
    margin-right: 15px;
    border-radius: 5px;
}

.ajax-search-results li a {
    color: #333;
    display: block;
    padding: 0 15px;
    -webkit-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.ajax-search-results li a:hover {
    background: #f1f1f1;
    padding: 0 20px;
}


/* ============================================
   NEW ENHANCEMENTS (Add these below)
   ============================================ */

/* 1. Clear button for search input */
.ajax-search-form .search-clear-btn {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    display: none;
    padding: 0 5px;
}

.ajax-search-form .search-clear-btn:hover {
    color: #333;
}

/* 2. Loading state */
.ajax-search-results .search-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.ajax-search-results .search-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border: 2px solid #f0f0f0;
    border-top-color: #007cba;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 3. No results message */
.ajax-search-results .no-results {
    text-align: center;
    padding: 20px;
    color: #666;
}

/* 4. View all results link */
.ajax-search-results .view-all {
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

.ajax-search-results .view-all a {
    color: #007cba;
    font-weight: 500;
}

.ajax-search-results .view-all a:hover {
    background: #f8f9fa;
}

/* 5. Product price in results */
.ajax-search-results .result-price {
    float: right;
    font-weight: 600;
    color: #28a745;
}

/* 6. Highlight search terms */
.ajax-search-results .highlight {
    background: #fff3cd;
    padding: 0 3px;
    border-radius: 2px;
}

/* 7. Stock badge */
.ajax-search-results .stock-badge {
    display: inline-block;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    background: #28a745;
    color: #fff;
    margin-left: 8px;
}

.ajax-search-results .stock-badge.out-of-stock {
    background: #dc3545;
}

/* 8. Product rating stars */
.ajax-search-results .result-rating {
    display: inline-block;
    margin-left: 8px;
}

.ajax-search-results .result-rating .star-rating {
    display: inline-block;
    font-size: 12px;
    width: 60px;
}

.ajax-search-results .rating-count {
    font-size: 11px;
    color: #999;
    margin-left: 4px;
}

/* 9. SKU display */
.ajax-search-results .result-sku {
    font-size: 11px;
    color: #999;
    margin-right: 10px;
}

/* 10. Active state for keyboard navigation */
.ajax-search-results li a.active {
    background: #f1f1f1;
    padding: 0 20px;
}

/* 11. Responsive fixes */
@media (max-width: 768px) {
    .ajax-search-form input[type="text"] {
        padding: 10px 45px 10px 15px;
        font-size: 14px;
    }
    
    .ajax-search-form button {
        padding: 6px 12px;
        right: 2px;
        top: 2px;
    }
    
    .ajax-search-results {
        max-height: 300px;
        overflow-y: auto;
        left: 0;
        right: 0;
    }
    
    .ajax-search-results li {
        line-height: 40px;
    }
    
    .ajax-search-results li img {
        width: 28px;
        margin-right: 10px;
    }
    
    .ajax-search-results .result-price {
        float: none;
        display: block;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .ajax-search-form input[type="text"] {
        padding: 8px 40px 8px 12px;
        font-size: 13px;
    }
    
    .ajax-search-results li {
        line-height: 35px;
        font-size: 13px;
    }
}

/* 12. Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .ajax-search-form input[type="text"] {
        background: #2d2d2d;
        border-color: #444;
        color: #e0e0e0;
    }
    
    .ajax-search-results {
        background: #2d2d2d;
        border-color: #444;
    }
    
    .ajax-search-results li a {
        color: #e0e0e0;
    }
    
    .ajax-search-results li a:hover {
        background: #3d3d3d;
    }
    
    .ajax-search-results .result-price {
        color: #5cb85c;
    }
    
    .ajax-search-results .highlight {
        background: #665d3a;
    }
}
/*--------------------------------------------------------------
# Views
--------------------------------------------------------------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Telegram Button Styles */
.telegram-button {
    display: inline-block;
    background-color: #0088cc;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.telegram-button:hover {
    background-color: #006da3;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


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

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

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

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

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

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

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

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

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

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

.float-r {
    float: right;
}

.float-l {
    float: left;
}

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

.loader-rel {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* Slick Banner Widget Styles */
.slick-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slide {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide:hover img {
    transform: scale(1.08);
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-slide h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.6s ease-out;
}

.banner-slide p {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.banner-slide a {
    position: relative;
    z-index: 2;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.banner-slide a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Slick Navigation */
.slick-banner .slick-prev,
.slick-banner .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slick-banner .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.slick-banner .slick-prev {
    left: 30px;
}

.slick-banner .slick-next {
    right: 30px;
}

.slick-banner .slick-prev:hover,
.slick-banner .slick-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.slick-banner .slick-prev:before,
.slick-banner .slick-next:before {
    font-family: 'Font Awesome 5 Free', 'FontAwesome', sans-serif;
    font-size: 24px;
    font-weight: 900;
    opacity: 1;
}

.slick-banner .slick-prev:before {
    content: '←';
}

.slick-banner .slick-next:before {
    content: '→';
}

/* Slick Dots */
.slick-banner .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 47%;
    z-index: 10;
    list-style: none;
    display: flex !important;
    gap: 12px;
    padding: 0;
    margin: 0;
}

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

.slick-banner .slick-dots li button {
    position: relative;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.slick-banner .slick-dots li button:before {
    display: none;
}

.slick-banner .slick-dots li.slick-active button {
    width: 30px !important;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .banner-slide {
        padding: 50px 15px;
    }

    .banner-slide h2 {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }

    .banner-slide p {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    .banner-slide a {
        padding: 12px 28px !important;
        font-size: 0.9rem !important;
    }

    .slick-banner .slick-prev,
    .slick-banner .slick-next {
        width: 40px !important;
        height: 40px !important;
    }

    .slick-banner .slick-prev {
        left: 15px;
    }

    .slick-banner .slick-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .banner-slide h2 {
        font-size: 1.5rem !important;
    }

    .banner-slide p {
        font-size: 0.9rem !important;
    }

    .slick-banner .slick-dots {
        gap: 8px;
    }
}



.slick-banner.style-2 .banner-wrap {
    border-radius: 30px;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 40px 48px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

/* left column content container (z-index management) */
.slick-banner.style-2 .banner-left {
    position: relative;
    z-index: 3;
}

/* Eyebrow style with line pseudo-element exactly as original */
.slick-banner.style-2 .banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 13px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
    font-weight: 500;
}

.slick-banner.style-2 .banner-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #888;
}

.slick-banner.style-2 .banner-title {
    font-size: clamp(32px, 5vw, 76px);
    font-weight: 700;
    color: #111;
    line-height: 1.05;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}

.slick-banner.style-2 .banner-description {
    margin-bottom: 30px;
}

/* CTA Button – exactly as original, Bootstrap overrides minimal */
.slick-banner.style-2 .btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E8252A;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: background 0.2s ease;
    line-height: 1;
}

.slick-banner.style-2 .btn-shop:hover {
    background: #c41f24;
    color: #fff;
}

.slick-banner.style-2 .banner-right {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 52%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    pointer-events: none;
}


.slick-banner.style-2 .banner-right .banner-img img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}

.slick-banner.style-2 .slick-active .banner-right .banner-img img {
    animation: zoomIn 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.slick-banner.style-2 .banner-right .banner-img {
    overflow: hidden;
    border-radius: 20px;
}

.slick-banner.style-2 .banner-right .banner-img img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.slick-banner.style-2 .banner-right .banner-img:hover img {
    transform: scale(1.05);
}

.slick-banner.style-2 .shoe-img-placeholder {
    width: 100%;
    aspect-ratio: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-banner.style-2 .shoe-circle {
    position: absolute;
    width: 78%;
    aspect-ratio: 1;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.slick-banner.style-2 .shoe-silhouette {
    width: 90%;
    z-index: 1;
    display: block;
}

/* badge-ring as absolute within shoe container */
.slick-banner.style-2 .badge-ring {
    position: absolute;
    top: 18%;
    left: 20%;
    z-index: 3;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

/* background logo N */
.slick-banner.style-2 .bg-logo {
    position: absolute;
    right: 160px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 180px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    letter-spacing: -10px;
    user-select: none;
}

@media (max-width: 992px) {
    .slick-banner.style-2 .banner-wrap {
        padding: 32px 32px;
    }

    .slick-banner.style-2 .bg-logo {
        right: 100px;
        font-size: 140px;
        opacity: 0.6;
    }

    .slick-banner.style-2 .banner-right {
        width: 48%;
        right: -10px;
    }

    .slick-banner.style-2 .badge-ring {
        width: 65px;
        height: 65px;
        top: 12%;
        left: 15%;
    }
}

@media (max-width: 768px) {
    .slick-banner.style-2 .banner-wrap {
        flex-direction: column;
        padding: 30px 24px 220px 24px;
        /* extra bottom padding to make room for shoe graphic */
        min-height: auto;
    }

    /* On mobile, change position: relative for right container and make it static under text */
    .slick-banner.style-2 .banner-right {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        justify-content: center;
        pointer-events: none;
    }

    .slick-banner.style-2 .shoe-img-placeholder {
        max-width: 320px;
        margin: 0 auto;
        aspect-ratio: 1.2;
    }

    .slick-banner.style-2 .banner-left {
        max-width: 100%;
        text-align: left;
    }

    .slick-banner.style-2 .bg-logo {
        display: none;
        /* hides huge background N for mobile clarity */
    }

    .slick-banner.style-2 .banner-title br {
        display: none;
        /* keep title inline but works fine without forced break */
    }

    .slick-banner.style-2 .btn-shop {
        margin-bottom: 10px;
    }

    .slick-banner.style-2 .banner-eyebrow::before {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .slick-banner.style-2 .banner-wrap {
        padding: 24px 20px 200px 20px;
    }

    .slick-banner.style-2 .badge-ring {
        width: 55px;
        height: 55px;
        top: 8%;
        left: 10%;
    }

    .slick-banner.style-2 .btn-shop {
        padding: 10px 24px;
        font-size: 14px;
    }

    .slick-banner.style-2 .banner-title {
        margin-bottom: 20px;
    }
}

/* small adjustment to keep badge-ring textPath functional within all screen sizes */
.slick-banner.style-2 .badge-ring text {
    dominant-baseline: middle;
}


.brands_form {
    text-align: center;
}

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

.brands_form ul {
    margin-bottom: 0;
}

.brands_form select {
    width: 220px;
}

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

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

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

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


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

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

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


/*--------------------------------------------------------------
## Banner - 2
--------------------------------------------------------------*/
.banner-2 .hero-badge {
    background: rgba(167, 139, 250, 0.18);
    border-color: rgba(167, 139, 250, 0.35);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(167, 139, 250, 0.35);
}

.banner-2 .hero-badge span {
    color: #C4B5FD;
}

.banner-2 .hero-title-highlight {
    color: #A78BFA;
}

.banner-2 .hero-subtext {
    color: #C4B5FD;
    font-size: 0.95rem;
    max-width: 500px;
}

.banner-2 .search-bar {
    font-size: 0.875rem;
    outline: none;
    box-shadow: none;
}

.banner-2 .hero-stat-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.banner-2 .hero-stat-label {
    color: #A78BFA;
    font-size: 0.75rem;
    display: block;
}

/* AJAX Search Results Styling */
.ajax-banner-search-form {
    position: relative;
}

.ajax-banner-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 5px;
    max-height: 400px;
    overflow-y: auto;
}

.ajax-search-dropdown {
    padding: 10px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    text-align: left;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.result-thumbnail {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex-shrink: 0;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.result-info {
    flex: 1;
    text-align: left;
}

.result-title {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
}

.result-price {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.view-all-results {
    padding: 10px 15px;
    text-align: center;
    background: #f8f9fa;
}

.view-all-results a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    text-align: left;
}

.view-all-results a:hover {
    text-decoration: underline;
}

.search-loading,
.no-results,
.error {
    padding: 20px;
    text-align: left;
    color: #666;
}

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

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

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

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

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

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


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

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

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

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

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

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

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

/*--------------------------------------------------------------
## Brands
--------------------------------------------------------------*/
.brand-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 25px 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.brand-img {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.brand-img img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.brand-placeholder {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-placeholder {
    background: #e8e8e8;
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 48px;
    opacity: 0.6;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
    transition: color 0.3s ease;
}

.brand-name a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-count {
    font-size: 12px;
    color: #666666;
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .brand-card {
        padding: 20px 10px;
    }

    .brand-img {
        min-height: 100px;
    }

    .brand-img img {
        max-height: 80px;
    }

    .brand-placeholder {
        width: 80px;
        height: 80px;
    }

    .placeholder-icon {
        font-size: 36px;
    }

    .brand-name {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .brand-card {
        padding: 15px 10px;
    }

    .brand-img {
        min-height: 80px;
    }

    .brand-img img {
        max-height: 60px;
    }

    .brand-placeholder {
        width: 60px;
        height: 60px;
    }

    .placeholder-icon {
        font-size: 28px;
    }
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.brand-card:hover::after {
    width: 50px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.category-item-img {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yt-video-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

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

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

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

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

.wpcf7 input {
    margin-bottom: 20px
}

.wpcf7 textarea {
    height: 160px;
}

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

/* Base Styles */
.processing-orders-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.processing-orders-title {
    color: #2c3338;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.order-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.order-cards-container .order-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.order-cards-container .order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.order-cards-container .order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.order-cards-container .order-number {
    font-weight: 600;
    color: #2271b1;
}

.order-cards-container .order-date {
    color: #666;
    font-size: 0.9em;
}

.order-cards-container .order-details {
    margin-bottom: 20px;
}

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

.order-cards-container .order-total .label {
    font-weight: 500;
}

.order-cards-container .order-total .value {
    font-weight: 600;
    color: #3d3d3d;
}

.receipt-preview {
    text-align: center;
    margin: 15px 0;
}

.receipt-gallery {
    display: inline-block;
    position: relative;
}

.receipt-gallery a {
    display: block;
    position: relative;
}

.receipt-gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #eee;
}

.receipt-gallery .view-text {
    display: block;
    margin-top: 5px;
    color: #2271b1;
    font-size: 0.85em;
}

.receipt-link,
.no-receipt {
    display: block;
    padding: 8px;
    text-align: center;
}

.receipt-link {
    color: #2271b1;
    text-decoration: none;
}

.no-receipt {
    color: #666;
    font-style: italic;
}

/* File Upload Styles */
.file-upload-wrapper {
    margin-bottom: 15px;
    position: relative;
}

.file-upload-label {
    display: block;
    padding: 10px 15px;
    background: #f6f7f7;
    border: 1px dashed #ccc;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-label:hover {
    background: #e8f0fe;
    border-color: #2271b1;
}

.file-upload-text {
    color: #2271b1;
    font-weight: 500;
}

.file-upload-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-name {
    display: block;
    margin-top: 5px;
    font-size: 0.85em;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Button Styles */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.button-primary,
.button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.button-primary {
    background: #2271b1;
    color: white;
}

.button-primary:hover {
    background: #135e96;
}

.button-secondary {
    background: #d63638;
    color: white;
}

.button-secondary:hover {
    background: #b32d2e;
}

.button-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

.button-text {
    font-size: 0.95em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .order-cards-container {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .order-header {
        flex-direction: column;
    }

    .order-date {
        margin-top: 5px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .processing-orders-container {
        padding: 15px;
    }

    .processing-orders-title {
        font-size: 20px;
    }

    .order-card {
        padding: 15px;
    }

    .button-icon {
        margin-right: 5px;
    }
}

/* No Orders Message */
.no-orders-message {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

/* Thumbnail styles */
.receipt-gallery a {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 3px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.receipt-gallery a:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.receipt-gallery img {
    display: block;
    width: 80px;
    height: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {

    .processing-orders-upload th,
    .processing-orders-upload td {
        padding: 8px 6px;
        /* Reduce padding on small screens */
    }

    .upload-receipt-form {
        flex-direction: column;
        /* Stack elements vertically on very small screens */
        align-items: flex-start;
    }

    .receipt-gallery img {
        width: 60px;
        /* Make thumbnails slightly smaller */
    }
}

/* Messages */
.woocommerce-message {
    padding: 15px;
    background: #f0fff0;
    border-left: 4px solid #46b450;
    margin: 20px 0;
}

.woocommerce-error {
    padding: 15px;
    background: #ffebee;
    border-left: 4px solid #dc3232;
    margin: 20px 0;
}

/* Magnific Popup adjustments */
.white-popup {
    position: relative;
    background: #FFF;
    padding: 20px;
    width: auto;
    max-width: 650px;
    margin: 20px auto;
    text-align: center;
}

/* Order Details Receipt Section */
.woocommerce-order-receipt {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid #e5e5e5;
}

.woocommerce-order-receipt h2 {
    margin-top: 0;
    color: #333;
    font-size: 1.5em;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.receipt-container {
    text-align: center;
}

.receipt-thumbnail {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.receipt-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.receipt-link:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* Admin Styles */
.order-receipt-details h3 {
    margin-top: 0;
    color: #23282d;
}

/* Minimalist Table with Perfect Vertical Centering */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
    -webkit-overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    line-height: 1.4;
    table-layout: fixed;
}

/* Header - Now vertically centered */
.table thead th {
    font-weight: 500;
    color: #333;
    text-align: left;
    padding: 0.85rem 1rem;
    border-bottom: 2px solid #eee;
    background-color: #fafafa;
    vertical-align: middle;
}

/* Table Cells - Perfect vertical alignment */
.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    vertical-align: middle;
    min-height: 60px;
    word-wrap: break-word;
}

/* Hover Effect */
.table tbody tr:hover td {
    background-color: #f9f9f9;
}

/* Receipt Thumbnail - Perfectly centered */
.product-receipt-thumbnail {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* View Receipt Link - Better vertical alignment */
.table a[href*="receipt"]:not(.product-receipt-thumbnail) {
    color: #555;
    text-decoration: underline;
    text-decoration-color: #ddd;
    transition: all 0.2s ease;
    display: inline-block;
    line-height: normal;
    vertical-align: middle;
}

/* Empty Cells */
.table td:empty::before {
    content: "—";
    color: #ccc;
    vertical-align: middle;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsiveness - Fixed vertical centering */
@media (max-width: 768px) {
    .table-responsive {
        width: 100%;
        overflow-x: hidden;
    }

    .table {
        display: block;
        width: 100%;
    }

    .table thead {
        display: none;
    }

    .table tbody {
        display: block;
        width: 100%;
    }

    .table tbody tr {
        display: block;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid #eee;
        border-radius: 4px;
        position: relative;
    }

    .table tbody td {
        display: block;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border: none;
        border-bottom: 1px solid #f5f5f5;
        height: auto;
        text-align: center;
        width: 100%;
    }

    .table tbody td:last-child {
        border-bottom: none;
    }

    .table tbody td::before {
        content: attr(data-label);
        font-weight: 500;
        color: #666;
        margin-right: 0;
        padding-right: 0;
        text-align: left;
    }

    .product-receipt-thumbnail {
        max-width: 60px;
        max-height: 60px;
        margin-left: auto;
    }

    /* Special cells */
    .variant-cell,
    .price-cell {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
}

/* Medium screens */
@media (max-width: 992px) and (min-width: 769px) {
    .table {
        font-size: 0.85rem;
    }

    .table thead th,
    .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    .product-receipt-thumbnail {
        max-width: 60px;
        max-height: 60px;
    }
}

/* Special fix for variant text alignment */
.variant-cell {
    vertical-align: middle;
    line-height: 1.3;
}

/* Fix for price alignment */
.price-cell {
    vertical-align: middle;
    white-space: nowrap;
}

/* Add smooth transitions for hover effects */
.table tbody td {
    transition: background-color 0.2s ease;
}

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

    .partner {
        margin-bottom: 50px;
    }

    .partner {
        text-align: center;
    }
}

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


@media (max-width: 991px) {

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

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

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

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

    }

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

}

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

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

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

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

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

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

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

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

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

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

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

}


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


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