/* Logo styling */
.header-middle-section {
    overflow: visible !important;
    position: relative;
    z-index: 100;
}

.header-middle-section .header-middle-wrapper {
    overflow: visible !important;
}

.header-middle-section .logo img {
    max-height: 60px;
    width: auto;
}

/* Call Us styling */
.header-middle-section .call-us {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-middle-section .call-us p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
}

.header-middle-section .call-us a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.header-middle-section .call-us a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Search widget */
.search-widget.product_search_form {
    position: relative;
}

.search-widget.product_search_form form {
    position: relative;
}

/* Search dropdown results */
.product_search_form .panel--search-result {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    border-radius: 0 0 4px 4px;
    display: none;
    max-height: 450px;
    overflow: hidden;
}

.product_search_form .panel--search-result.active {
    display: block;
    border: 1px solid #e0e0e0;
    border-top: 0;
}

.product_search_form .panel--search-result .panel__content {
    max-height: 350px;
    overflow-y: auto;
}

.product_search_form .panel--search-result .panel__header {
    padding: 8px 12px;
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    font-weight: 600;
    font-size: 13px;
    color: #666;
}

.product_search_form .panel--search-result .panel__footer {
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding: 8px 0;
    text-align: center;
}

.product_search_form .panel--search-result .panel__footer a {
    color: var(--primary-color, #FF324D);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
}

.product_search_form .panel--search-result .panel__footer a:hover {
    text-decoration: underline;
}

/* Product search item */
.ps-product--search-result {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s;
    align-items: flex-start;
    gap: 12px;
}

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

.ps-product--search-result:last-child {
    border-bottom: 0;
}

.ps-product__thumbnail {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
    background: #fff;
}

.ps-product__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.ps-product__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ps-product__title {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ps-product__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.ps-product__title a:hover {
    color: var(--primary-color, #FF324D);
}

.ps-product__price {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #FF324D);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ps-product__del {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

.ps-product__description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ps-product__badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 3px;
    background: #28a745;
    color: #fff;
}

.ps-product__badge--sale {
    background: #dc3545;
}

/* Loading state */
.search_btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty state */
.product_search_form .panel--search-result .empty-search-result {
    padding: 20px 15px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/* Custom scrollbar for search results */
.product_search_form .panel--search-result .panel__content::-webkit-scrollbar {
    width: 6px;
}

.product_search_form .panel--search-result .panel__content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product_search_form .panel--search-result .panel__content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.product_search_form .panel--search-result .panel__content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Header Icons Styling */
.header-icons-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons-group a,
.header-icons-group .menu-cart {
    position: relative;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.header-icons-group .menu-cart {
    z-index: auto;
}

.header-icons-group .menu-cart:hover {
    z-index: 9999999;
}

.header-icons-group a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-icons-group .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--primary-color, #FF324D);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

/* Cart Dropdown */
.cart_dropdown {
    position: relative;
    z-index: 1000;
}

.cart_dropdown .cart_trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
}

.cart_dropdown .cart_box {
    position: fixed;
    width: 350px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Create invisible bridge between icon and dropdown */
.cart_dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100px;
    height: 20px;
    z-index: 999998;
}

.cart_dropdown:hover .cart_box,
.cart_box:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cart_dropdown .cart_box::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.cart_box .cart_list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    max-height: 300px;
    overflow-y: auto;
}

.cart_box .cart_list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart_box .cart_list li:last-child {
    border-bottom: 0;
}

.cart_box .cart_list li img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.cart_box .cart_list li > a:not(.item_remove) {
    flex: 1;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.4;
}

.cart_box .cart_list li > a:not(.item_remove):hover {
    color: var(--primary-color, #FF324D);
}

.cart_box .cart_list .item_remove {
    position: absolute;
    top: 8px;
    right: 0;
    color: #999;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.cart_box .cart_list .item_remove:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.cart_box .cart_quantity {
    display: block;
    color: #666;
    font-size: 13px;
    margin-top: 4px;
}

.cart_box .cart_amount {
    color: var(--primary-color, #FF324D);
    font-weight: 600;
}

.cart_box .cart_footer {
    border-top: 2px solid #eee;
    padding-top: 15px;
}

.cart_box .cart_total {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    color: #333;
    font-size: 14px;
}

.cart_box .cart_total:last-of-type {
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
}

.cart_box .cart_price {
    color: var(--primary-color, #FF324D);
    font-weight: 600;
}

.cart_box .cart_buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cart_box .cart_buttons a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cart_box .btn-fill-line {
    background: transparent;
    border: 2px solid var(--primary-color, #FF324D);
    color: var(--primary-color, #FF324D);
}

.cart_box .btn-fill-line:hover {
    background: var(--primary-color, #FF324D);
    color: #fff;
}

.cart_box .btn-fill-out {
    background: var(--primary-color, #FF324D);
    color: #fff;
    border: 2px solid var(--primary-color, #FF324D);
}

.cart_box .btn-fill-out:hover {
    background: transparent;
    color: var(--primary-color, #FF324D);
}

.cart_box .text-center {
    color: #666;
    font-size: 14px;
    padding: 20px;
}

.cart_box .stock-status-label {
    font-size: 11px;
    color: #dc3545;
}

/* Sticky Header */
#header-sticky {
    position: relative;
    display: block;
    transition: position 0.3s ease, top 0.3s ease;
}

#header-sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #031424;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 30;
}

#header-sticky .header-main {
    padding: 12px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#header-sticky .mean__menu-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

#header-sticky .main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

#header-sticky nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

#header-sticky nav ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
}

#header-sticky nav ul li {
    display: flex;
    align-items: center;
}

/* Footer Logo */
.footer-logo img {
    max-width: 180px;
    height: auto;
}

    transition: transform 0.3s ease-in-out;
    display: none;
}

#header-sticky.is-sticky {
    display: block;
    transform: translateY(0);
}

#header-sticky .header-main {
    padding: 12px 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

#header-sticky .logo {
    flex: 0 0 auto;
}

#header-sticky .logo img {
    max-height: 50px;
    width: auto;
}

#header-sticky nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

/* ===== ANATOLIAN HERO SLIDER STYLING ===== */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-section .hero-slider {
    width: 100%;
    height: 600px;
}

.hero-section .swiper-wrapper {
    height: 600px;
}

.hero-section .swiper-slide {
    width: 100%;
    height: 600px;
}

.hero-section .hero-slide {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.hero-section .hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 100%;
    padding: 20px;
}

.hero-section .hero-content h6 {
    font-size: 13px !important;
    letter-spacing: 2.5px !important;
    font-weight: 600 !important;
    color: #8cdaf6 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
}

.hero-section .hero-content h1 {
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-content p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 620px;
    margin: 0 auto 35px !important;
    font-weight: 400 !important;
}

.hero-section .theme-btn {
    display: inline-block;
    padding: 16px 40px !important;
    background: var(--primary-color, #FF324D) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color, #FF324D) !important;
    text-decoration: none;
}

.hero-section .theme-btn:hover {
    background: transparent !important;
    color: #fff !important;
    border-color: #fff !important;
}

.hero-section .swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
    position: absolute;
    width: 100%;
    text-align: center;
}

.hero-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 8px !important;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: inline-block;
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--primary-color, #FF324D);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Hero Slider */
@media (max-width: 991px) {
    .hero-section .hero-slider,
    .hero-section .swiper-wrapper {
        height: 500px;
    }
    
    .hero-section .swiper-slide {
        height: 500px;
    }
    
    .hero-section .hero-slide {
        min-height: 500px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 36px !important;
    }
    
    .hero-section .hero-content h6 {
        font-size: 12px !important;
    }
    
    .hero-section .hero-content p {
        font-size: 15px !important;
    }
}

@media (max-width: 575px) {
    .hero-section .hero-slider,
    .hero-section .swiper-wrapper {
        height: 400px;
    }
    
    .hero-section .swiper-slide {
        height: 400px;
    }
    
    .hero-section .hero-slide {
        min-height: 400px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 28px !important;
    }
    
    .hero-section .hero-content h6 {
        font-size: 11px !important;
    }
    
    .hero-section .hero-content p {
        font-size: 14px !important;
    }
    
    .hero-section .theme-btn {
        padding: 12px 30px !important;
        font-size: 12px !important;
    }
}
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .hero-section .hero-slide {
        min-height: 400px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-section .hero-content h6 {
        font-size: 11px;
    }
    
    .hero-section .hero-content p {
        font-size: 14px;
    }
    
    .hero-section .theme-btn {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* ===== OLD BANNER SECTION (KEPT FOR COMPATIBILITY) ===== */
.banner_section.slide_medium {
    margin-bottom: 60px;
    position: relative;
    width: 100%;
    padding: 0;
}

.banner_section.slide_medium .carousel {
    position: relative;
    width: 100%;
}

.banner_section.slide_medium .carousel-item {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.banner_section.slide_medium .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 20, 36, 0.7) 0%, rgba(3, 20, 36, 0.5) 100%);
    z-index: 1;
}

.banner_section.slide_medium .carousel-item .banner_slide_content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.banner_section.slide_medium .carousel-item .banner_content {
    animation: slideInUp 0.8s ease-out;
}

.banner_section.slide_medium .banner_content_subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #8cdaf6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner_section.slide_medium .banner_content h2 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner_section.slide_medium .banner_content a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color, #FF324D);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color, #FF324D);
}

.banner_section.slide_medium .banner_content a:hover {
    background: transparent;
    color: var(--primary-color, #FF324D);
}

.banner_section.slide_medium .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.banner_section.slide_medium .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 0;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner_section.slide_medium .carousel-indicators li.active {
    background: var(--primary-color, #FF324D);
    width: 30px;
    border-radius: 6px;
}

.banner_section.slide_medium .carousel-control-prev,
.banner_section.slide_medium .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.banner_section.slide_medium .carousel-control-prev:hover,
.banner_section.slide_medium .carousel-control-next:hover {
    opacity: 1;
}

.banner_section.slide_medium .carousel-control-prev {
    left: 30px;
}

.banner_section.slide_medium .carousel-control-next {
    right: 30px;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Slider */
@media (max-width: 991px) {
    .banner_section.slide_medium .carousel-item {
        min-height: 500px;
    }
    
    .banner_section.slide_medium .banner_content h2 {
        font-size: 36px;
    }
    
    .banner_section.slide_medium .banner_content_subtitle {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .banner_section.slide_medium .carousel-item {
        min-height: 400px;
    }
    
    .banner_section.slide_medium .banner_content h2 {
        font-size: 28px;
    }
    
    .banner_section.slide_medium .banner_content_subtitle {
        font-size: 12px;
    }
    
    .banner_section.slide_medium .banner_content a {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .banner_section.slide_medium .carousel-control-prev {
        left: 10px;
    }
    
    .banner_section.slide_medium .carousel-control-next {
        right: 10px;
    }
}

/* =================================================================
   Featured Categories Section - Use Default Shopwise Design
   ================================================================= */

/* Categories hover - use secondary color */
.categories_box a:hover span {
    color: var(--color-2nd) !important;
}

.categories_box a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Owl Carousel Navigation with secondary color */
.cat_slider.nav_style5 .owl-nav button.owl-prev:hover,
.cat_slider.nav_style5 .owl-nav button.owl-next:hover {
    background: var(--color-2nd) !important;
    border-color: var(--color-2nd) !important;
    color: #ffffff !important;
}

/* Product Cards - Red Border Style */
.product_wrap {
    border: 2px solid var(--color-1st) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

/* Homepage accents aligned to Anatolian brand */
.heading_tab_header .heading_s2 h2,
.heading_s4 h2,
.heading_s4 h3 {
    color: var(--color-2nd);
    letter-spacing: -0.2px;
}

/* Section rhythm */
.section {
    padding: 80px 0;
}

.heading_s2 {
    margin-bottom: 24px;
}

.heading_s2 + .leads {
    margin-top: -6px;
    margin-bottom: 48px;
    color: #5a6475;
}

/* Featured categories slider spacing */
.cat_slider.cat_style1 .item {
    padding: 0 8px;
}

.cat_style1 .categories_box {
    text-align: center;
}

.cat_style1 .categories_box span {
    color: var(--color-2nd);
    font-weight: 600;
}

.cat_slider.nav_style5 .owl-nav {
    margin-top: 12px;
}

.heading_tab_header .view_all a {
    color: var(--color-1st);
    font-weight: 600;
}

.heading_tab_header .view_all a:hover {
    text-decoration: underline;
}

.product_wrap {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.product_wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.08);
}

.product_wrap .pr_flash {
    border-radius: 6px;
}

.product_wrap .product_title a:hover {
    color: var(--color-1st);
}

.product_wrap .product_price .price {
    color: var(--color-1st);
    font-weight: 700;
}

.product_wrap .product_price del {
    color: #9aa3b8;
}

.product_slider .owl-nav button {
    border: 1px solid #e5e7eb;
    color: var(--color-2nd);
    transition: all 0.2s ease;
}

/* Exclusive Products / Product Collections Section */
.product_wrap {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 450px !important;
    height: 100% !important;
}

/* Equal height product cards */
.product_slider.carousel_slider .item {
    display: flex !important;
    height: 100% !important;
}

.product_wrap .position-relative {
    position: relative !important;
}

.product_wrap .product_img {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px !important;
    background: #f8f9fa !important;
}

.product_wrap .product_info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 15px 0 0 0 !important;
}

/* Product Action Box - Hover Icons on Left Side */
.product_action_box {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s ease !important;
}

.product_wrap:hover .product_action_box {
    opacity: 1 !important;
    visibility: visible !important;
    left: 20px !important;
}

.pr_action_btn {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.pr_action_btn li {
    margin: 0 !important;
    padding: 0 !important;
}

.pr_action_btn li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 50px !important;
    background: #ffffff !important;
    border: 2px solid #e5e9ef !important;
    border-radius: 50% !important;
    color: #031424 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    font-size: 0 !important;
    line-height: 1 !important;
}

.pr_action_btn li a:hover {
    background: #031424 !important;
    border-color: #031424 !important;
    color: #ffffff !important;
    transform: scale(1.15) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.pr_action_btn li a i {
    font-size: 20px !important;
    margin: 0 !important;
    display: block !important;
}

.pr_action_btn li.add-to-cart a i {
    font-size: 22px !important;
}

/* Tab Style for Product Collections */
.tab-style2 .nav-tabs {
    border: 0 !important;
    display: flex !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.tab-style2 .nav-tabs .nav-item {
    margin: 0 !important;
}

.tab-style2 .nav-tabs .nav-link {
    border: 0 !important;
    background: transparent !important;
    color: #5a6c7d !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 12px 5px !important;
    border-bottom: 3px solid transparent !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.tab-style2 .nav-tabs .nav-link:hover {
    color: #031424 !important;
    border-bottom-color: #d1d5db !important;
}

.tab-style2 .nav-tabs .nav-link.active {
    color: #031424 !important;
    border-bottom-color: #031424 !important;
    background: transparent !important;
}

/* Tab Content */
.tab_slider {
    position: relative !important;
}

.tab_slider .tab-pane {
    display: none !important;
}

.tab_slider .tab-pane.show {
    display: block !important;
}

.tab_slider .tab-pane.active {
    display: block !important;
}

/* Heading Tab Header */
.heading_tab_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.heading_tab_header .heading_s2 {
    margin-bottom: 0;
}

.heading_tab_header .heading_s2 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #031424;
}

/* Tab Slider */
.tab_slider .tab-pane {
    display: none;
}

.tab_slider .tab-pane.active {
    display: block;
}

/* Product Collections Carousel - Arrows on Left/Right Sides */
.product_slider.carousel_slider.nav_style1 {
    position: relative !important;
    padding: 0 60px !important;
}

.product_slider.carousel_slider.nav_style1 .owl-nav {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
    pointer-events: none !important;
    z-index: 50 !important;
    margin: 0 !important;
}

.product_slider.nav_style1 .owl-nav button {
    width: 45px !important;
    height: 45px !important;
    background: #ffffff !important;
    border: 2px solid #e5e9ef !important;
    border-radius: 50% !important;
    color: #031424 !important;
    font-size: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    pointer-events: all !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.product_slider.nav_style1 .owl-nav button.owl-prev {
    position: absolute !important;
    left: -60px !important;
}

.product_slider.nav_style1 .owl-nav button.owl-next {
    position: absolute !important;
    right: -60px !important;
}

.product_slider.nav_style1 .owl-nav button:hover {
    background: #031424 !important;
    border-color: #031424 !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
}

.product_slider.nav_style1 .owl-nav button span {
    font-size: 24px !important;
    line-height: 1 !important;
}

/* Mobile Toggle Button for Tabs */
.tab-style2 .navbar-toggler {
    display: none;
    background: transparent;
    border: 2px solid #e5e9ef;
    border-radius: 8px;
    padding: 8px 15px;
    color: #031424;
    font-size: 20px;
}

@media (max-width: 991px) {
    .product_slider.carousel_slider.nav_style1 {
        padding: 0 !important;
    }
    
    .product_slider.nav_style1 .owl-nav button.owl-prev {
        left: 10px !important;
    }
    
    .product_slider.nav_style1 .owl-nav button.owl-next {
        right: 10px !important;
    }
}

@media (max-width: 767px) {
    .tab-style2 .navbar-toggler {
        display: block;
    }
    
    .tab-style2 .nav-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .heading_tab_header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product_slider.nav_style1 .owl-nav button {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
}

.product_slider .owl-nav button:hover {
    border-color: var(--color-1st);
    background: var(--color-1st);
    color: #ffffff;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-1st);
}

.blog_post,
.testimonial_wrap,
.testimonial_item {
    background: #ffffff;
    border: 1px solid #e8ebf0;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
}

.blog_post .blog_content h6 a:hover,
.testimonial_wrap .author_name,
.testimonial_item .author_name {
    color: var(--color-1st);
}

/* Flash Sale Deal Cards - Shopwise Style */
.deal_wrap {
    background: #ffffff;
    border: 2px solid #e5e9ef !important;
    border-radius: 12px !important;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0px 2px 16px 0px rgba(3, 20, 36, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
}

.deal_wrap:hover {
    border-color: #031424 !important;
    box-shadow: 0px 4px 20px 0px rgba(3, 20, 36, 0.12);
}

.deal_wrap .product_img {
    flex: 0 0 280px;
    max-width: 280px;
}

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

.deal_wrap .deal_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.deal_wrap .product_info {
    margin-bottom: 5px;
}

.deal_wrap .product_title {
    margin-bottom: 8px;
}

.deal_wrap .product_title a {
    color: var(--color-2nd);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.deal_wrap .product_title a:hover {
    color: var(--color-2nd);
    opacity: 0.8;
}

.deal_wrap .product_price {
    margin-bottom: 8px;
}

.deal_wrap .product_price .price {
    color: var(--color-1st);
    font-size: 26px;
    font-weight: 700;
}

.deal_wrap .product_price del {
    color: #9aa3b8;
    font-size: 16px;
    margin-left: 8px;
}

.deal_wrap .on_sale {
    display: inline-block;
    margin-left: 10px;
}

.deal_wrap .on_sale span {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.deal_wrap .rating_wrap {
    margin-bottom: 12px;
}

.deal_wrap .deal_progress {
    margin: 12px 0;
}

.deal_wrap .deal_progress span {
    display: inline-block;
    margin-right: 20px;
    color: #687188;
    font-size: 14px;
}

.deal_wrap .deal_progress strong {
    color: var(--color-2nd);
    font-weight: 600;
}

.deal_wrap .progress {
    height: 6px;
    background: #f1f3f5;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.deal_wrap .progress-bar {
    background: var(--color-1st);
    border-radius: 3px;
    font-size: 0;
    line-height: 6px;
}

.deal_wrap .countdown_time {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.deal_wrap .countdown_box {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px 14px;
    text-align: center;
    min-width: 65px;
}

.deal_wrap .countdown_box .countdown {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-2nd);
    line-height: 1;
}

.deal_wrap .countdown_box .cd_text {
    display: block;
    font-size: 11px;
    color: #687188;
    text-transform: capitalize;
    margin-top: 5px;
    line-height: 1;
}

.deal_wrap .pr_flash {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 10;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Ensure equal card heights in carousel */
.product_slider.carousel_slider .item {
    display: flex;
    height: 100%;
}

.product_slider.carousel_slider .deal_wrap {
    width: 100%;
}