/*-----------------------------------------------------------------------------------
    COLOR OVERRIDE CSS
    =========================================
    Primary Background: #314F2B (Olive Green)
    Text Color: #C9A66C (Gold/Tan)
    Accent/Hover Color: #B8935A (Darker Gold)
    
    This file overrides the default white backgrounds and text colors
-----------------------------------------------------------------------------------*//* CSS Variable for easy accent color changes */:root
{
    --accent-color: #B8935A;
    --accent-hover: #A67D45;
}

/* ===== GLOBAL OVERRIDES ===== */
body {
    background-color: #314F2B;
    color: #C9A66C;
}

/* ===== HEADER OVERRIDES ===== */

/* Keep homepage transparent header as-is, but override other pages */
/* Target non-transparent headers (pages without .header_transparent class) */
.main_header:not(.header_transparent) {
    background-color: #314F2B;
}

.main_header:not(.header_transparent) .header_top,
.main_header:not(.header_transparent) .header_middle,
.main_header:not(.header_transparent) .header_bottom {
    background-color: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

/* Navigation text colors for non-transparent headers */
.main_header:not(.header_transparent) .main_menu nav > ul > li > a,
.main_header:not(.header_transparent) .header_account-list > a,
.main_header:not(.header_transparent) .language_currency > ul > li > a {
    color: #C9A66C;
}

.main_header:not(.header_transparent) .main_menu nav > ul > li > a:hover,
.main_header:not(.header_transparent) .main_menu nav > ul > li > a.active {
    color: var(--accent-color);
}

/* Remove black underline on hover - replace with accent color */
.main_header:not(.header_transparent) .main_menu nav > ul > li > a::before {
    background: var(--accent-color) !important;
}

/* Submenu styling for non-transparent headers */
.main_header:not(.header_transparent) .main_menu nav > ul > li ul.sub_menu {
    background: #314F2B !important;
    border-color: rgba(201, 166, 108, 0.2);
}

.main_header:not(.header_transparent) .main_menu nav > ul > li ul.sub_menu li a {
    color: #C9A66C !important;
}

.main_header:not(.header_transparent) .main_menu nav > ul > li ul.sub_menu li a:hover {
    color: var(--accent-color) !important;
}

/* Sticky header on all pages */
.sticky-header.sticky {
    background: rgba(49, 79, 43, 0.95) !important;
}

.sticky-header.sticky .main_menu nav > ul > li > a,
.sticky-header.sticky .header_account-list > a {
    color: #C9A66C;
}

.sticky-header.sticky .main_menu nav > ul > li > a:hover,
.sticky-header.sticky .main_menu nav > ul > li > a.active {
    color: var(--accent-color);
}

/* Remove black underline on sticky header - replace with accent color */
.sticky-header.sticky .main_menu nav > ul > li > a::before {
    background: var(--accent-color) !important;
}

/* Submenu styling for sticky header */
.sticky-header.sticky .main_menu nav > ul > li ul.sub_menu {
    background: #314F2B !important;
    border-color: rgba(201, 166, 108, 0.2);
}

.sticky-header.sticky .main_menu nav > ul > li ul.sub_menu li a {
    color: #C9A66C !important;
}

.sticky-header.sticky .main_menu nav > ul > li ul.sub_menu li a:hover {
    color: var(--accent-color) !important;
}

/* Dropdowns for all pages */
.dropdown_currency,
.dropdown_language,
.dropdown_links,
.sub_menu,
.mega_menu,
.main_menu nav > ul > li ul.sub_menu,
.main_menu nav > ul > li .mega_menu {
    background: #314F2B !important;
    border-color: rgba(201, 166, 108, 0.2) !important;
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.3) !important;
}

.dropdown_currency li a,
.dropdown_language li a,
.dropdown_links li a,
.sub_menu li a,
.mega_menu_inner > li > a,
.mega_menu_inner > li ul li a,
.main_menu nav > ul > li ul.sub_menu li a {
    color: #C9A66C !important;
}

.dropdown_currency li a:hover,
.dropdown_language li a:hover,
.dropdown_links li a:hover,
.sub_menu li a:hover,
.mega_menu_inner > li > a:hover,
.mega_menu_inner > li ul li a:hover,
.main_menu nav > ul > li ul.sub_menu li a:hover {
    color: var(--accent-color) !important;
    background: rgba(184, 147, 90, 0.1) !important;
}

/* Search Box */
.search_box input {
    background: rgba(49, 79, 43, 0.8);
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.search_box input::placeholder {
    color: rgba(201, 166, 108, 0.6);
}

.search_box button {
    color: #C9A66C;
}

.search_box button:hover {
    color: var(--accent-color);
}

/* Mini Cart */
.mini_cart {
    background: #314F2B;
}

.cart_item {
    border-color: rgba(201, 166, 108, 0.2);
}

.cart_info a,
.cart_info p {
    color: #C9A66C;
}

.cart_text h3 {
    color: #C9A66C;
}

.cart_total span {
    color: #C9A66C;
}

/* Categories Menu */
.categories_menu_toggle {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.categories_menu_toggle > ul > li > a {
    color: #C9A66C;
}

/* ===== MAIN CONTENT OVERRIDES ===== */

/* Product Cards */
.single_product {
    background-color: #314F2B;
}

.product_content h4 a,
.product_content .price_box span {
    color: #C9A66C;
}

.action_links {
    background: #314F2B;
}

.action_links ul li a {
    color: #C9A66C;
}

/* Sections */
.section_title h2 {
    color: #C9A66C;
}

.section_title h2::before {
    background: #C9A66C;
}

/* Banner Areas */
.banner_content h2,
.banner_content h3,
.banner_content a {
    color: #C9A66C;
}

.banner_fullwidth {
    background-color: #314F2B;
}

.banner_fullwidth_content h2,
.banner_fullwidth_content h3,
.banner_fullwidth_content p {
    color: #C9A66C;
}

/* Blog Section */
.blog_section {
    background: #314F2B;
}

.blog_content h4 a,
.blog_content p,
.articles_date p {
    color: #C9A66C;
}

/* Newsletter */
.newsletter_area_start {
    background-color: #314F2B;
}

.subscribe_form form input {
    background: rgba(49, 79, 43, 0.8);
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.subscribe_form form input::placeholder {
    color: rgba(201, 166, 108, 0.6);
}

/* Shipping Area */
.shipping_area {
    background-color: #314F2B;
}

.shipping_content h3,
.shipping_content p {
    color: #C9A66C;
}

.single_shipping {
    border-color: rgba(201, 166, 108, 0.2);
}

/* Testimonials */
.testimonial_area {
    background-color: #314F2B;
}

.testimonial_content > p,
.testimonial_author p {
    color: #C9A66C;
}

/* ===== FOOTER OVERRIDES ===== */
.footer_top {
    background-color: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.footer_bottom {
    background-color: #314F2B;
}

.widgets_container h3,
.contact_us > p,
.footer_menu ul li a,
.copyright_area p {
    color: #C9A66C;
}

.widgets_container h3::before {
    background: #C9A66C;
}

/* ===== SHOP PAGE OVERRIDES ===== */
.breadcrumbs_area {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.breadcrumb_content h3,
.breadcrumb_content ul li,
.breadcrumb_content ul li a {
    color: #C9A66C;
}

/* Sidebar Widgets */
.widget_list {
    background-color: #314F2B;
}

.widget_list h3,
.widget_list > ul > li > a {
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

/* Shop Toolbar */
.shop_toolbar,
.shop_toolbar_wrapper {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.page_amount p,
.list_button ul li a {
    color: #C9A66C;
}

/* Table Descriptions */
.table_desc {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.table_desc .cart_page table thead tr th,
.table_desc .cart_page table tbody tr td {
    background: #314F2B;
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

/* ===== PRODUCT DETAILS OVERRIDES ===== */
.product_d_right h1,
.product_d_right h1 a,
.product_d_right .product_desc p,
.product_meta span {
    color: #C9A66C !important;
}

.product_d_inner {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.product_info_content p {
    color: #E3CFAA;
}

/* Product quantity label and input */
.product_variant label,
.product_variant.quantity label {
    color: #C9A66C !important;
}

.product_variant input[type="number"],
.product_variant.quantity input[type="number"] {
    color: #C9A66C !important;
    background: rgba(49, 79, 43, 0.8) !important;
    border-color: #E3CFAA !important;
}

/* Product Details - Image borders */
.product-details-tab .zoomWrapper,
.product-details-tab .single-zoom,
.product-details-tab .single-zoom img,
.single-zoom-thumb ul li,
.single-zoom-thumb ul li a,
.single-zoom-thumb ul li img,
.s-tab-zoom li,
.s-tab-zoom li a,
.s-tab-zoom li img {
    border-color: #E3CFAA !important;
}

/* Add padding between main image and thumbnails */
.single-zoom-thumb {
    margin-top: 20px !important;
    padding-top: 20px !important;
}

/* Hide carousel arrows for product thumbnails */
.single-zoom-thumb .owl-nav,
.single-zoom-thumb .owl-nav button,
.single-zoom-thumb button.owl-prev,
.single-zoom-thumb button.owl-next,
.single-product-active .owl-nav,
.single-product-active .owl-prev,
.single-product-active .owl-next {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Center the thumbnail items */
.single-zoom-thumb .owl-stage-outer {
    display: flex;
    justify-content: center;
}

.single-zoom-thumb .owl-stage {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto;
    width: auto !important;
    transform: none !important;
}

/* Hide arrows and center related products carousel */
.product_carousel.owl-carousel .owl-nav,
.product_carousel.owl-carousel .owl-nav button,
.product_carousel.owl-carousel button.owl-prev,
.product_carousel.owl-carousel button.owl-next {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.product_carousel.owl-carousel .owl-stage-outer {
    display: flex;
    justify-content: center;
}

.product_carousel.owl-carousel .owl-stage {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto;
    width: auto !important;
    transform: none !important;
}

/* Product Details - Table borders */
.product_d_table table,
.product_d_table table tbody,
.product_d_table table tbody tr,
.product_d_table table tbody tr td {
    border-color: #E3CFAA !important;
}

.product_d_table table tbody tr td {
    color: #E3CFAA !important;
}

.product_d_table table tbody tr td.first_child {
    color: #C9A66C !important;
    font-weight: 600;
}

/* ===== FORMS OVERRIDES ===== */
.contact_message input,
.contact_message textarea,
.account_form input,
.checkout_form input,
.checkout_form textarea {
    background: rgba(49, 79, 43, 0.8);
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.contact_message input::placeholder,
.contact_message textarea::placeholder,
.account_form input::placeholder {
    color: rgba(201, 166, 108, 0.6);
}

.contact_message label,
.account_form label,
.checkout_form label {
    color: #C9A66C;
}

/* ===== BLOG OVERRIDES ===== */
.blog_wrapper .blog_content h4,
.blog_wrapper .blog_content p,
.blog_meta p {
    color: #C9A66C;
}

.blog_sidebar_widget {
    background: #314F2B;
}

.post_info h4 a,
.post_info span {
    color: #C9A66C;
}

/* ===== MODAL OVERRIDES ===== */
.modal-content {
    background: #314F2B;
}

.modal_title h2,
.modal_description p,
.modal_price span {
    color: #C9A66C;
}

/* ===== MISC OVERRIDES ===== */

/* Pagination */
.pagination ul li {
    background: rgba(49, 79, 43, 0.8);
}

.pagination ul li a {
    color: #C9A66C;
}

/* Accordion - FAQ Page (same styling as Facts About Zad) */
.card.card_dipult {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

/* FAQ accordion button - closed state */
.card-header.card_accor button.btn-link {
    background: #568E51 !important;
    color: #E3CFAA !important;
    border-color: #568E51 !important;
}

/* FAQ accordion button - open state */
.card-header.card_accor button.btn-link:not(.collapsed) {
    background: #E3CFAA !important;
    color: #314F2B !important;
    border-color: #E3CFAA !important;
}

/* FAQ accordion button - hover (keep same as current state) */
.card-header.card_accor button.btn-link:hover {
    background: #568E51 !important;
    color: #E3CFAA !important;
    border-color: #568E51 !important;
}

.card-header.card_accor button.btn-link:not(.collapsed):hover {
    background: #E3CFAA !important;
    color: #314F2B !important;
    border-color: #E3CFAA !important;
}

/* FAQ accordion body */
.card-body {
    background: #314F2B !important;
    color: #E3CFAA !important;
    border-color: rgba(201, 166, 108, 0.2) !important;
}

.card-body p {
    color: #E3CFAA !important;
}

/* FAQ content area title */
.faq_content_wrapper h4 {
    color: #C9A66C !important;
}

/* FAQ Accordion - About Page */
.faq-client-say-area {
    background: #314F2B;
}

.faq-client_title h2 {
    color: #C9A66C !important;
}

.panel.panel-default {
    background: #314F2B;
}

.panel-heading {
    background: #314F2B !important;
}

/* When accordion is OPEN (expanded) */
.panel-heading .panel-title a {
    background: #E3CFAA !important;
    color: #314F2B !important;
    border-color: #E3CFAA !important;
}

/* When accordion is CLOSED (collapsed) */
.panel-heading .panel-title a.collapsed {
    background: #568E51 !important;
    color: #E3CFAA !important;
    border-color: #568E51 !important;
}

/* Remove hover effects - keep same as closed state */
.panel-heading .panel-title a:hover {
    background: #E3CFAA !important;
    color: #314F2B !important;
    border-color: #E3CFAA !important;
}

.panel-heading .panel-title a.collapsed:hover {
    background: #568E51 !important;
    color: #E3CFAA !important;
    border-color: #568E51 !important;
}

.panel-body {
    background: #314F2B !important;
    color: #E3CFAA !important;
    border-color: rgba(201, 166, 108, 0.2) !important;
}

.panel-body p {
    color: #E3CFAA !important;
}

/* FAQ Panel Title Icon Color */
.panel-heading .panel-title a[aria-expanded="true"]::before {
    background: transparent !important;
    color: #314F2B !important;
}

.panel-heading .panel-title a.collapsed::before {
    background: transparent !important;
    color: #E3CFAA !important;
}

/* Error Page */
.error_form h2,
.error_form p {
    color: #C9A66C;
}

/* Welcome/About Sections */
.welcome_lukani_container,
.about_section {
    background: #314F2B;
}

.welcome_lukani_header h2,
.welcome_lukani_header h3,
.welcome_lukani_desc p,
.about_content h1,
.about_content p {
    color: #C9A66C;
}

/* About Gallery Cards - Vision/Mission/Heritage */
.single_gallery_section {
    background: #314F2B !important;
}

.about_gallery_content h3 {
    color: #C9A66C !important;
}

.about_gallery_content p {
    color: #E3CFAA !important;
}

.about_gallery_section {
    background: #314F2B;
}

.about_gallery_container {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

/* Services */
.our_services {
    background: #314F2B;
}

.services_title h2,
.services_title p,
.services_desc h3,
.services_desc p {
    color: #C9A66C;
}

/* Team Members */
.team_content h3,
.team_content h5,
.team_content p {
    color: #C9A66C;
}

/* Privacy Policy */
.privacy_policy_header h1,
.privacy_content h2,
.privacy_content h3,
.privacy_content p {
    color: #C9A66C;
}

/* ===== OFFCANVAS MENU ===== */
.offcanvas_menu_wrapper {
    background: #314F2B;
}

.offcanvas_main_menu li a {
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.offcanvas_main_menu li a:hover {
    color: var(--accent-color);
}

.offcanvas_footer span a {
    color: #C9A66C;
}

.canvas_close a {
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.canvas_close a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.canvas_open a {
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.canvas_open a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* ===== NICE SELECT OVERRIDES ===== */
.nice-select {
    background: #314F2B;
    color: #C9A66C;
    border-color: rgba(201, 166, 108, 0.2);
}

.nice-select .list {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.nice-select .option {
    color: #C9A66C;
}

.nice-select .option:hover,
.nice-select .option.selected {
    background: rgba(121, 162, 6, 0.2);
}

/* ===== ADDITIONAL ELEMENTS ===== */

/* Borders */
.border,
[class*="border-"] {
    border-color: rgba(201, 166, 108, 0.2) !important;
}

/* Background Utilities */
.bg-white {
    background-color: #314F2B !important;
}

.bg-light-grey,
.bg-grey {
    background-color: rgba(49, 79, 43, 0.8) !important;
}

/* Text Color Utilities */
.text-dark,
.text-body {
    color: #C9A66C !important;
}

/* Links */
a {
    color: #C9A66C;
}

a:hover {
    color: var(--accent-color);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #C9A66C !important;
}

/* Paragraphs */
p {
    color: #E3CFAA !important;
}

/* Lists */
ul li,
ol li {
    color: #C9A66C;
}

/* ===== SLIDER OVERRIDES ===== */
.slider_content h1,
.slider_content p,
.slider_content span {
    color: #C9A66C;
}

/* ===== INSTAGRAM GALLERY ===== */
.instagram_gallery a.instagram-image::before {
    background: rgba(49, 79, 43, 0.9);
}

/* ===== CHOOSE US SECTION ===== */
.choseus_area {
    background-color: rgba(49, 79, 43, 0.95);
}

.chose_content h3,
.chose_content p {
    color: #C9A66C;
}

/* ===== COMMENTS ===== */
.comment_list .comment_content {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.comment_list .comment_content h5,
.comment_list .comment_content span,
.comment_list .comment_content p {
    color: #C9A66C;
}

/* ===== COUPON CODE ===== */
.coupon_code {
    background: #314F2B;
    border-color: rgba(201, 166, 108, 0.2);
}

.coupon_inner p,
.coupon_inner input {
    color: #C9A66C;
    background: rgba(49, 79, 43, 0.8);
    border-color: rgba(201, 166, 108, 0.2);
}

/* ===== ORDER TABLE ===== */
.order_table table thead tr th,
.order_table table tbody tr td,
.order_table table tfoot tr th,
.order_table table tfoot tr td {
    background: #314F2B;
    color: #E3CFAA;
    border-color: #E3CFAA;
}

.order_table table tfoot tr th,
.order_table table tfoot tr.order_total th {
    color: #C9A66C !important;
}

/* Checkout form headings - light green background */
.checkout_form h3,
.Checkout_section h3 {
    background: #568E51 !important;
    color: #E3CFAA !important;
    padding: 15px 20px !important;
    margin-bottom: 25px !important;
    border-radius: 4px !important;
}

/* Checkout form select dropdown */
.checkout_form select,
.checkout_form .select_option {
    background: #314F2B !important;
    color: #C9A66C !important;
    border-color: rgba(201, 166, 108, 0.2) !important;
}

.checkout_form select option {
    background: #314F2B !important;
    color: #C9A66C !important;
}

/* Nice-select dropdown for checkout - force solid background */
.checkout_form .nice-select,
.Checkout_section .nice-select,
select.select_option {
    background: #314F2B !important;
    background-color: #314F2B !important;
    color: #C9A66C !important;
    border-color: rgba(201, 166, 108, 0.2) !important;
    opacity: 1 !important;
}

.checkout_form .nice-select .list,
.Checkout_section .nice-select .list {
    background: #314F2B !important;
    background-color: #314F2B !important;
    border-color: rgba(201, 166, 108, 0.2) !important;
    opacity: 1 !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
}

.checkout_form .nice-select .option,
.Checkout_section .nice-select .option {
    background: #314F2B !important;
    background-color: #314F2B !important;
    color: #C9A66C !important;
    opacity: 1 !important;
}

.checkout_form .nice-select .option:hover,
.checkout_form .nice-select .option.selected,
.Checkout_section .nice-select .option:hover,
.Checkout_section .nice-select .option.selected {
    background: #568E51 !important;
    background-color: #568E51 !important;
    color: #E3CFAA !important;
    opacity: 1 !important;
}

/* Hide the list when nice-select is closed */
.checkout_form .nice-select:not(.open) .list,
.Checkout_section .nice-select:not(.open) .list {
    display: none !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media only screen and(max-width: 767px) {
    body {
        background-color: #314F2B;
    }

    .mobile-menu,
    .mobile-header {
        background-color: #314F2B;
    }
}


/* ===== BUTTONS AND CTA OVERRIDES ===== */

/* Primary Buttons */
.button,
.btn,
button[type="submit"],
input[type="submit"],
.slider_content a,
.banner_content a,
.cart_button a.active,
.checkout_btn a,
.readmore_button a,
.error_form a {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.button:hover,
.btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.slider_content a:hover,
.banner_content a:hover,
.cart_button a:hover,
.checkout_btn a:hover,
.readmore_button a:hover,
.error_form a:hover {
    background: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
}

/* Contact Form Send Button */
.contact_message button {
    background: #E3CFAA !important;
    color: #314F2B !important;
    border-color: #E3CFAA !important;
}

.contact_message button:hover {
    background: #C9A66C !important;
    color: #314F2B !important;
    border-color: #C9A66C !important;
}

/* Checkout Order Button */
.order_button button {
    background: #E3CFAA !important;
    color: #314F2B !important;
    border-color: #E3CFAA !important;
}

.order_button button:hover {
    background: #C9A66C !important;
    color: #314F2B !important;
    border-color: #C9A66C !important;
}

/* Secondary Buttons */
.cart_button a,
.modal_add_to_cart form button,
.subscribe_form form button,
.widget_search button,
.coupon_inner button,
.cart_submit button,
.comments_form form button {
    background: #222222 !important;
}

.cart_button a:hover,
.modal_add_to_cart form button:hover,
.subscribe_form form button:hover,
.widget_search button:hover,
.coupon_inner button:hover,
.cart_submit button:hover,
.comments_form form button:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
}

/* Links and Hover States */
a:hover,
.product_content h4 a:hover,
.blog_content h4 a:hover,
.footer_menu ul li a:hover,
.widget_list > ul > li > a:hover,
.post_info h4 a:hover,
.breadcrumb_content ul li a:hover {
    color: var(--accent-color) !important;
}

/* Active States */
.main_menu nav > ul > li > a.active,
.product_tab_btn ul li a.active,
.list_button ul li a.active,
.pagination ul li.current {
    color: var(--accent-color) !important;
    background: var(--accent-color) !important;
}

/* Price and Special Text */
.price_box span.current_price,
.modal_price span,
.label_product span.label_sale {
    color: var(--accent-color) !important;
}

/* Icons and Badges */
.mini_cart_wrapper span.item_count,
.scroll_up,
#scrollUp {
    background: var(--accent-color) !important;
}

/* Back to top button - keep arrow visible on hover */
.scroll_up:hover,
#scrollUp:hover {
    background: var(--accent-hover) !important;
}

.scroll_up i,
#scrollUp i,
.scroll_up:hover i,
#scrollUp:hover i {
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Product Rating Stars */
.product_rating ul li a,
.product_ratting ul li a {
    color: var(--accent-color) !important;
}

/* Social Media Hover */
.footer_social ul li a:hover,
.offcanvas_footer ul li a:hover,
.priduct_social ul li a:hover {
    background: var(--accent-color) !important;
}

/* Footer Social Icons - ensure icon color is visible */
.footer_social ul li a {
    color: var(--accent-color) !important;
}

.footer_social ul li a:hover {
    color: #fff !important;
}

.footer_social ul li a i {
    color: inherit !important;
}

/* Borders and Underlines */
.product_tab_btn ul li a.active,
.banner_content a {
    border-color: var(--accent-color) !important;
}

/* Special Sections */
.label_product span.label_new,
.single_countdown {
    border-color: var(--accent-color) !important;
}

/* Form Focus States */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent-color) !important;
    outline-color: var(--accent-color) !important;
}

/* Slider Dots */
.slider_area .owl-dots .owl-dot.active,
.slider_area .owl-dots .owl-dot:hover {
    background: var(--accent-color) !important;
}

/* Progress Bars and Loaders */
.ui-slider-horizontal .ui-slider-range {
    background: var(--accent-color) !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border-color: var(--accent-color) !important;
}

/* Tag Clouds */
.tag_cloud a:hover,
.tag_widget ul li a:hover {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

/* Comment Reply */
.comment_reply a:hover {
    background: var(--accent-color) !important;
}

/* Shipping Icons Hover */
.single_shipping:hover .shipping_icone i {
    color: var(--accent-color) !important;
}

/* Newsletter Popup */
#frm_subscribe form a.theme-btn-outlined:hover {
    background: var(--accent-color) !important;
}

/* Play Button Hover */
.play_button:hover {
    border-color: var(--accent-color) !important;
}

/* Action Links Hover */
.action_links ul li a:hover {
    color: var(--accent-color) !important;
}

/* Welcome Text Accent */
.welcome_lukani_header h3,
.section_title h2 span {
    color: var(--accent-color) !important;
}


/* ===== CUSTOM CURSOR COLOR OVERRIDES ===== */
/* Override cursor colors to use gold/tan instead of green */

.custom-cursor {
    background: #C9A66C !important;
    box-shadow: 0 0 10px rgba(201, 166, 108, 0.30) !important;
}

.custom-cursor-ring {
    border-color: rgba(201, 166, 108, 0.50) !important;
}

/* Hover state */
.custom-cursor-ring.hover {
    border-color: rgba(201, 166, 108, 0.70) !important;
}

.custom-cursor.hover {
    background: #B8935A !important;
    box-shadow: 0 0 20px rgba(201, 166, 108, 0.50) !important;
}

/* Click state */
.custom-cursor.click {
    background: #A67D45 !important;
}

.custom-cursor-ring.click {
    border-color: rgba(201, 166, 108, 0.80) !important;
}

/* Text selection state */
.custom-cursor.text {
    background: rgba(201, 166, 108, 0.60) !important;
}

/* Click ripple effect */
.cursor-ripple {
    border-color: rgba(201, 166, 108, 0.60) !important;
}

/* Glow pulse animation override */
@keyframes glowPulse {
    0,
    100% {
        box-shadow: 0 0 10px rgba(201, 166, 108, 0.30);
    }
    50% {
        box-shadow: 0 0 20px rgba(201, 166, 108, 0.60);
    }
}


/* ===== TIKTOK SVG ICON STYLING ===== */
/* Style TikTok SVG to match Font Awesome icons */

.footer_social ul li a img[src*="tiktok"],
.offcanvas_footer ul li a img[src*="tiktok"] {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    /* Keep the original SVG color - no filter needed */
}

/* TikTok icon inherits the link color on hover through the parent */
.footer_social ul li a:hover img[src*="tiktok"],
.offcanvas_footer ul li a:hover img[src*="tiktok"] {
    opacity: 0.8;
    transform: scale(1.1);
    transition: all 0.3s ease;
}


/* ===== MOBILE MENU ICON COLOR ===== */
/* Style mobile menu burger icon to use accent color */

.canvas_open.mobile-trigger a,
.canvas_open.mobile-trigger a i {
    color: var(--accent-color) !important;
}

.canvas_open.mobile-trigger a:hover,
.canvas_open.mobile-trigger a:hover i {
    color: var(--accent-hover) !important;
}
