body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    background: #fff;
}

.header {
    background: #1f1e25;
    box-shadow: none;
    border: 0;
    padding: 15px 70px;
    position: sticky;
    top: 0;
    z-index: 21;
}

.header .main-header-bar {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
    justify-content: space-between;
}

.header-menu-bar {
    justify-content: center;
}

.logo-header {
    display: flex;
    justify-content: center;
}

.logo-header img {
    width: 185px;
    height: auto;
}

.header .nav-link {
    color: #F0F0F0;
    font-size: 12px;
    padding: 0;
    white-space: nowrap;
}

.header .nav-link.disabled {
    color: #afafaf
}

.header .nav-link:hover {
    color: #f1c36d;
}

.header .nav>li {
    position: relative;
}

.header .nav>li>a {
    color: #F1F1F1;
    fill: #F1F1F1;
    padding: 10px;
    font-size: 17px;
    display: block;
}

.header .nav>li:not(:last-child)::after {
    content: "";
    width: 1px;
    background: #f1c36d;
    position: absolute;
    right: 0;
    top: 12px;
    bottom: 12px;
}

.header .nav>li:has(ul)>a::after {
    content: "\f0d7";
    font-family: 'FontAwesome';
    margin-left: 5px;
}

.header .nav>li:hover>a {
    color: #f1c36d;
    text-decoration: none;
}

.header .nav>li>ul {
    background: rgb(248, 248, 248);
    ;
    position: absolute;
    left: 0;
    min-width: 160px;
    top: 100%;
    display: none;
}

.header .nav>li:hover>ul {
    display: block;
}

.header .nav>li>ul>li>a {
    padding: 13px 20px;
    display: block;
    color: #000;
}

.header .nav>li>ul>li:hover>a {
    background: #E4E4E4;
    color: #000;
    text-decoration: none;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    display: none;
}

.hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #f1c36d;
    left: 0;
    transition: 0.3s ease;
}

.menu-opner:hover .hamburger span {
    background: #fff;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

.btn-primary {
    background: #f1c36d;
    color: #1f1e25;
    font-size: 15px;
    font-weight: 500;
}
.btn-primary:hover {
    background-color: #1f1e25;
}
.category-opner {
    margin: 0 auto;
    text-align: center;
    background: #f1c36d;
    line-height: 42px;
    color: #000;
    border-radius: 0 0 10px 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: 1px solid #000;
    border-top: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2.5px;
    display: none;
    border-radius: 0;
}

.category-opner:hover {
    color: #f1c36d;
    background: #1f1e25;
    border-radius: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}
.store-layout-with-sidebar {
    display: flex;
    gap: 30px;
    position: relative;
}
.store-layout-with-sidebar .store, .store-layout-with-sidebar .product-details {
    padding: 40px 25px;
    flex: 1;
}
.store-layout-with-sidebar .category-holder {
    background: #1f1e25;
    width: 300px;
    padding: 40px 0;
    position: relative;
    border-top: 2px solid #f1c36d;
    border-bottom: 2px solid #f1c36d;
}
.fixed-category-links {
    display: block;
    width: 300px;
}
.close-fixed-category-links {
    position: absolute;
    top: -9px;
    right: 10px;
    font-weight: 100;
    font-size: 40px;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    color: #f1c36d;
    visibility: hidden;
}

.close-fixed-category-links:hover {
    transform: rotate(45deg);
    color: #f7f7f7;
}
ul.category-tree li{
    position: relative;
    overflow: hidden;
}
ul.category-tree li a::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-left: 4px solid #f1c36d;
    border-bottom: 4px solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -2px 0 0 -50px;

}
ul.category-tree li a:hover::before {
    margin: -5px 0 0 20px;
    transition: margin-left 0.2s ease-in-out;

}
ul.category-tree li a {
    font-size: 1.2rem;
    padding: 10px 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    color: #d5d5d5;
}

ul.category-tree li a::after {
    display: none;
}

ul.category-tree li a:hover {
    padding-left: 40px;
    text-decoration: none;
    color: #f1c36d;
    background-color: #1c1b23;
    transition: padding-left 0.2s ease-in-out;
}

ul.category-tree {
    margin: 0 auto;
    display: flex;
    width: 100%;
}

ul.category-tree>li {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-direction: column;
    width: 100%;
}

ul.child {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    padding-left: 0;
    justify-content: space-evenly;
    width: 100%;
    margin: 0;
}

.page-content,
.inner-page-contents {
    border: 0;
}

.product-card {
    padding: 18px;
    border: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
}

.product-card:hover .product-image-plp {
    animation: pulseProduct 2.5s infinite;   
}
.product-card:hover {
    border: 1px solid #f1c36d;
    background: #fff;
    transition: background 0.2s ease-in-out;
}
.plp-product-name {
    font-size: 16px;
    margin: 10px 0;
    line-height: 20px;
}
.price-bottle-group {
    margin: 0 0 15px;
}
.page-link {
    color: #383633;
}
.product-out-of-stock-msg {
    font-size: 14px;
}
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Animated bottom bar */
/* .product-card:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: #f1c36d;;
    animation: slideBar 2s linear infinite alternate;
} */

@keyframes slideBar {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}
@keyframes pulseProduct {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

@media only screen and (max-width: 1280px) {
    .header {
        padding: 15px 20px;
    }

    .logo-header img {
        width: 120px;
    }

    .header .nav-link {
        white-space: nowrap;
    }

    .header .nav>li>a {
        padding: 7px;
        font-size: 14px;
    }
}

h2.category-heading {
    font-size: 42px;
}

#footer .footer-nav .nav-pills {
    display: inline-block;
    background: transparent;
    margin: 0;
}

.footer-nav .nav-pills li {
    padding: 0 0 0 3px;
    display: inline-block !important;
    font-size: 12px;
}

.footer-nav .nav-pills li a {
    padding: 0;
}

.footer-nav .nav-pills li::after {
    content: "|";
    display: inline-block;
    margin-left: 8px;
}

.footer-nav .nav-pills li:last-child::after {
    content: "";
    display: none;
}

#footer {
    padding: 50px 0 20px;
    background: #1F1E25;
}

#footer .credits,
#footer .copyrights {
    font-size: 12px;
}

.footer-bottom {
    padding: 20px 0 0;
    border-top: 2px solid #2b2b2b;
    margin-top: 50px;
    font-size: 12px;
}

.modal-open .modal {
    max-width: 100%;
}

.footer-logo-block {
    padding: 20px;
    background: #fff;
    max-width: 330px;
}

.footer-logo-block-holder {
    padding: 50px 20px 20px;
    border: 1px dashed #000;
}

.footer-logo-block-holder p {
    margin: 40px 0;
    color: #000;
}

.footer-content-row {
    text-align: left;
}

.footer-title {
    font-weight: 400;
    font-size: 24px;
    display: block;
    margin: 0 0 20px;
}

.footer-content-row li {
    font-size: 16px;
    margin-bottom: 5px;
}

.footer-content-row li i.fa {
    color: #f1c36d;
    margin-right: 10px;
}

.footer-content-row li a:hover {
    text-decoration: none;
    color: #f1c36d !important;
}

#footer .footer-top-container {
    max-width: 1280px;
}

.user-links,
.user-contents-wrapper {
    line-height: 24px;
}

.user-links ul li {
    margin-bottom: 10px;
    list-style-type: none;
}

.product-detail-wrapper .product-image {
    flex: 0 0 30%;
    text-align: center;
}

.product-detail-wrapper .product-detail {
    padding: 0 10px;
    flex: 0 0 65%;
    line-height: 24px;
}
.product-detail-wrapper .product-detail h2 {
    margin: 0;
}
.product-detail-wrapper .product-detail .shareThis {
    display: none;
}
.product_variation_wrapper+hr {
    display: none;
}
ul.technical-information {
    margin: 0 0 20px;
}

ul.technical-information li {
    margin: 0 0 8px;
}
.bottle-size {
    color: #353535;
}
.notifications {
    position: fixed;
    bottom: 0;
    z-index: 9999;
    left: 0;
    width: 100%;
    border-radius: 0;
    margin: 0;
}
.notifications.alert.alert-notification {
    background: #c6ffc4;
}
.category-box {
    text-align: left;
    padding-bottom: 20px;
    margin: 0 0 20px;
}
@media only screen and (min-width:992px) {
    .header-menu-bar {
        display: flex !important;
    }
}

@media only screen and (max-width:991.5px) {
    .close-fixed-category-links{
        visibility: visible;
    }
    .category-opner {
        display: block;
    }
    .store-layout-with-sidebar .category-holder {
        background: #1f1e25;
        width: 392px;
        padding: 40px 0;
        position: relative;
        position: absolute;
        left: 0;
        right: 0;
        width: auto;
        z-index: 1;
        top: 0;
        bottom: 0;
        transform: translateX(-102%);
        opacity: 0;
        transition: transform 0.4s ease-in-out;
    }
    .store-layout-with-sidebar .category-holder.active {
        transform: translateX(0);
        opacity: 1;
        transition: transform 0.4s ease-in-out;
    }
    .container {
        max-width: 100%;
    }
    .footer-title {
        margin: 20px 0;
    }

    .footer-logo-block {
        margin-bottom: 20px;
        max-width: 100%;
    }

    .logo-header img {
        width: 185px;
    }

    .header .nav>li>ul {
        position: static;
        width: 100%;
    }

    .logo-header {
        display: flex;
        flex: 0 0 100%;
        justify-content: center;
        margin: 0 0 30px;
    }

    .hamburger {
        display: inline-flex;
        flex: 0 0 30px;
    }

    .header-menu-bar {
        display: none;
        position: absolute;
        left: -30px;
        right: -30px;
        background: #ffffff;
        top: 110px;
        padding: 15px 30px;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    }

    .header-menu-bar .nav {
        flex-direction: column;
    }

    .header .nav>li {
        position: relative;
        display: block;
        width: 100%;
        margin: 0 0 5px;
    }

    ul#login-link {
        flex: 0 0 80%;
        justify-content: flex-end;
        flex-direction: row;
        gap: 8px;
    }

    .header .nav>li:not(:last-child)::after {
        display: none;
    }

    .header .nav>li>a {
        color: #000;
        display: inline-block;
    }

    .header .nav>li:hover>ul {
        display: none;
    }
}

@media only screen and (max-width:580px) {

    .checkout-detail #shopping-cart-content .table th,
    .checkout-detail #shopping-cart-content .table td {
        word-break: normal;
        display: flex;
        overflow: hidden;
        font-size: 12px;
        line-height: 18px;
        padding: 8px 10px;
        align-items: center;
        justify-content: flex-start;
    }

    .checkout-detail #shopping-cart-content #promotion_code {
        display: flex;
    }

    .checkout-detail #shopping-cart-content #promotion_code input#Discount_Coupan {
        height: 34px;
        width: auto;
        font-size: 12px;
        margin: 0;
    }

    .checkout-detail h2 {
        margin-top: 20px;
    }

    .checkout-detail .form-control {
        margin-bottom: 12px;
    }

    .checkout-detail #shopping-cart-content .ui-spinner {
        margin: 0;
        width: 60px;
        text-align: center;
    }

    .checkout-detail #shopping-cart-content .table td img.pr-4 {
        padding: 0 !important;
        margin-right: 12px;
        max-width: 60px;
    }
    .pagination {
        font-size: 12px;
    }
    .pagination .page {
        display: none;
    }
    #banner-heading h1 {
        padding: 25px 15px 0;
    }
    .modal-footer {
        justify-content: space-between;
    }
    #shoppingCartModal th {
        font-size: 10px;
        padding: 8px 6px;
    }

    .modal-footer .btn {
        width: 48%;
        margin: 0 0 15px;
        font-size: 12px !important;
        font-weight: 600;
    }

    .modal-footer .btn.checkout-btn {
        width: 100%;
    }
}