/* Martfury Theme Styles */
:root {
    --martfury-yellow: #fcb800;
    --martfury-dark: #000000;
    --martfury-gray: #f4f4f4;
    --martfury-text: #666666;
    --martfury-border: #e1e1e1;
    --martfury-hover: #fcb800;
}

body {
    font-family: 'Work Sans', sans-serif; /* Standard Martfury font */
}

/* Header Overrides */
#header .main-menu {
    background-color: var(--martfury-yellow) !important;
    border-bottom: none !important;
}

#header .nav-top {
    background-color: var(--martfury-yellow) !important;
}

#header .top-search-bar .form_search_main {
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
}

#header .top-search-bar .input-search {
    border: none;
    height: 44px;
    padding-left: 20px;
    box-shadow: none;
}

#header .top-search-bar .btn-search {
    background-color: var(--martfury-dark);
    color: #fff;
    border-radius: 0 5px 5px 0;
    width: 80px;
}

#header .nav-top-right .nav-item i {
    color: var(--martfury-dark);
    font-size: 24px;
}

#header .nav-top-right .label-nav-icon {
    color: var(--martfury-dark);
    font-weight: 600;
}

/* Product Card Overrides */
.col-product .product-item {
    border: 1px solid var(--martfury-border);
    border-radius: 0;
    box-shadow: none !important;
    transition: all 0.3s ease;
    padding: 15px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.col-product .product-item:hover {
    border-color: var(--martfury-yellow);
    box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
}

.product-item .image img {
    object-fit: contain;
}

.product-item .title, .product-item .product-title a {
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.product-item .title:hover, .product-item .product-title a:hover {
    color: var(--martfury-yellow);
}

.product-item .item-price, .item-meta .price {
    font-size: 18px;
    color: #d9534f;
    font-weight: 600;
}

.product-item > .row-custom:first-child {
    position: relative;
    overflow: hidden;
}

.product-item-options {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.col-product .product-item:hover .product-item-options {
    opacity: 1;
}

.product-item-options .item-option {
    background: #fff;
    border: 1px solid var(--martfury-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--martfury-dark);
    transition: all 0.2s;
}

.product-item-options .item-option:hover {
    background: var(--martfury-yellow);
    color: #fff;
    border-color: var(--martfury-yellow);
}

.badge-discount {
    background: #ff3366 !important;
    border-radius: 0;
    font-weight: 600;
    position: absolute;
    top: 10px;
    right: 10px; left: auto; background-color: #e33c04 !important;
    z-index: 9;
}

/* Section Titles */
.section-header .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--martfury-border);
    padding-bottom: 10px;
}

.section-header .title a {
    color: var(--martfury-dark);
}

.section-header .title a:hover {
    color: var(--martfury-yellow);
}

/* Categories List in Hero */
.hero-categories {
    background: #fff;
    border: 1px solid var(--martfury-border);
    border-radius: 0;
    padding: 15px 0;
}

.hero-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-categories ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--martfury-text);
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.hero-categories ul li a i {
    width: 20px;
    text-align: center;
}

.hero-categories ul li a:hover {
    color: var(--martfury-yellow);
    background-color: var(--martfury-gray);
}


/* Header Top Row */
.martfury-header .header-top-row {
    background-color: #fff;
    border-bottom: 1px solid var(--martfury-border);
}

.martfury-header .header-top-row .icon-search,
.martfury-header .header-top-row .icon-bar-chart,
.martfury-header .header-top-row .icon-heart-o,
.martfury-header .header-top-row .icon-cart,
.martfury-header .header-top-row .icon-user {
    color: var(--martfury-dark);
}

.martfury-header .header-top-row .notification {
    background-color: var(--martfury-yellow);
    color: var(--martfury-dark);
    position: absolute;
    top: -5px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.martfury-header .header-top-row .nav-item {
    position: relative;
}

.martfury-header .header-top-row .nav-item a:hover {
    color: var(--martfury-yellow) !important;
}

/* Header Bottom Row */
.martfury-header .header-bottom-row .nav-link:hover {
    color: #fff !important;
}

/* Site Features Block */
.site-features-block {
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-features-block .feature-item {
    padding: 10px 15px;
}

.site-features-block .feature-item:hover h5 {
    color: var(--martfury-yellow) !important;
}
