.header {
      z-index: 999;
}

body {
    overflow-x: hidden;
} 
#settingsBox, #accountBox { 
    z-index: 999;
}
@media (max-width: 700px){
    .footer-logo {
        width: 115px;
        margin-bottom: 14px;
    }
    .tiny-slider {
        height: auto; 
    }
}
#ingredients {
    display: block;
    line-height: 12px;
    padding: 1px 1px 1px 60px;
}
#ingredients ul {
    list-style: circle;
}

.grid-products .item .product-image img {
    object-fit: contain !important;
}
@media only screen and (max-width: 1199px) {
.header-7 .header-main {
    padding-top: 0px;
    padding-bottom: 0px;
}
}
 
@media only screen and (max-width: 767px) {
    .slideshow.slideshow-wrapper.tiny-slider .slick-arrow-dots .slick-dots {
        display: none !important;
    }
}

.top-header {
    position: relative;
    z-index: 99999;
}
.header-7 .main-menu-outer {
    background: #fff;
}

.header-7 #siteNav>li:hover>a, 
.header-7 #siteNav>li>a:hover:hover, 
.header-7 #siteNav>li>a:hover, 
.header-7 .menu-outer .store-link:hover, 
.header-7 .menu-outer .store-link:focus {
    color: #000;
    text-decoration: underline;
}
#siteNav > li.lvl1.parent.megamenu > .megamenu.style1 {
    border-top: 0px solid #d7cabc;
    box-shadow: unset;
}

/* Section Title with Lines */
.section-header.style2.d-flex.flex-center {
    flex-direction: column;
    align-items: center;
}

.section-header.section-header-centered {
    width: 100%;
}

.section-title-with-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}

.section-title-with-lines::before,
.section-title-with-lines::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #d7cabc;
    max-width: 400px;
}

.section-title-with-lines::before {
    margin-right: 30px;
}

.section-title-with-lines::after {
    margin-left: 30px;
}

.section-title-with-lines h1,
.section-title-with-lines h2 {
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.section-header-centered {
    text-align: center;
}

.section-header-centered p {
    text-align: center;
    margin-top: 5px;
    color: #888;
    font-style: italic;
}

.section-header-right.arrow-end {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-header.style2 {
    position: relative;
}

/* Explore More Button */
.explore-more-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #d7cabc;
    color: #333;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.explore-more-btn:hover {
    background-color: #d7cabc;
    color: #fff;
}

@media (max-width: 768px) {
    .section-title-with-lines::before,
    .section-title-with-lines::after {
        max-width: 50px;
    }

    .section-title-with-lines::before {
        margin-right: 15px;
    }

    .section-title-with-lines::after {
        margin-left: 15px;
    }
}

/* ============================================
   STICKY COMPARE BAR - Bottom of Page
   ============================================ */
.sticky-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 2px solid #f0f0f0;
}

.sticky-compare-bar.active {
    transform: translateY(0);
}

.sticky-compare-bar .compare-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}

.sticky-compare-bar .compare-items-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.sticky-compare-bar .compare-item {
    position: relative;
    width: 70px;
    height: 70px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    transition: all 0.2s ease;
}

.sticky-compare-bar .compare-item.empty {
    border-style: dashed;
    border-color: #d0d0d0;
}

.sticky-compare-bar .compare-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.sticky-compare-bar .compare-item .remove-compare-btn {
    padding: unset;
    position: absolute;
    top: 0px;
    right: -1px;
    width: 18px;
    height: 18px;
    background: #ff4757;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(255, 71, 87, 0.4);
}

.sticky-compare-bar .compare-item .remove-compare-btn:hover {
    background: #e63946;
    transform: scale(1.1);
}

.sticky-compare-bar .compare-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.sticky-compare-bar .compare-count-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.sticky-compare-bar .compare-subtitle {
    font-size: 11px;
    color: #888;
}

.sticky-compare-bar .compare-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-compare-bar .btn-compare {
    background: #d7cabc;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px #d7cabc;
}

.sticky-compare-bar .btn-compare:hover {
    background: #d7cabc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #d7cabc;
    color: #fff;
}

.sticky-compare-bar .btn-clear-all {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sticky-compare-bar .btn-clear-all:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #ccc;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sticky-compare-bar .compare-bar-inner {
        flex-wrap: wrap;
        gap: 15px;
    }

    .sticky-compare-bar .compare-items-wrapper {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .sticky-compare-bar .compare-info {
        order: 2;
    }

    .sticky-compare-bar .compare-actions {
        order: 3;
    }
}

@media (max-width: 768px) {
    .sticky-compare-bar {
        padding: 12px 15px;
    }

    .sticky-compare-bar .compare-item {
        width: 55px;
        height: 55px;
    }

    .sticky-compare-bar .compare-item .remove-compare-btn {
        width: 18px;
        height: 18px;
        font-size: 10px;
        top: 0px;
        right: -1px;
    }

    .sticky-compare-bar .btn-compare {
        padding: 10px 20px;
        font-size: 13px;
    }

    .sticky-compare-bar .btn-clear-all {
        padding: 10px 15px;
        font-size: 13px;
    }

    .sticky-compare-bar .compare-count-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .sticky-compare-bar .compare-bar-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .sticky-compare-bar .compare-items-wrapper {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .sticky-compare-bar .compare-item {
        flex-shrink: 0;
    }

    .sticky-compare-bar .compare-info {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .sticky-compare-bar .compare-actions {
        justify-content: center;
    }
}

.rating-disabled .rating-stars {
    cursor: pointer;
}