:root {
    --theme-primary: #3c0606;
    --theme-secondary: #f7e8e4;
}

/*--------------------------------------------------
	Mouse Scroll Indicator ____________ START
---------------------------------------------------*/
#mouse_scroll_container {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.mouse_scroll {
    display: block;
    margin: 0 auto;
    width: 24px;
}
.m_scroll_arrows {
    display: block;
    width: 5px;
    height: 5px;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);

    border-right: 2px solid var(--theme-primary);
    border-bottom: 2px solid var(--theme-primary);
    margin: 0 0 3px 4px;

    width: 16px;
    height: 16px;
}
.unu {
    margin-top: 1px;
}
.unu,
.doi,
.trei {
    -webkit-animation: mouse-scroll 1s infinite;
    -moz-animation: mouse-scroll 1s infinite;
    animation: mouse-scroll 1s infinite;
}
.unu {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    -webkit-animation-direction: alternate;

    animation-direction: alternate;
    animation-delay: alternate;
}
.doi {
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-direction: alternate;

    animation-delay: 0.2s;
    animation-direction: alternate;

    margin-top: -6px;
}
.trei {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -webkit-animation-direction: alternate;

    animation-delay: 0.3s;
    animation-direction: alternate;

    margin-top: -6px;
}
.mouse {
    height: 42px;
    width: 24px;
    border-radius: 14px;
    transform: none;
    border: 2px solid var(--theme-primary);
    top: 170px;
}
.wheel {
    height: 5px;
    width: 2px;
    display: block;
    margin: 5px auto;
    background: var(--theme-primary);
    position: relative;

    height: 4px;
    width: 4px;
    border: 2px solid var(--theme-primary);
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.wheel {
    -webkit-animation: mouse-wheel 1s linear infinite;
    -moz-animation: mouse-wheel 1s linear infinite;
    animation: mouse-wheel 1s linear infinite;
}

@-webkit-keyframes mouse-wheel {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(6px);
        -ms-transform: translateY(6px);
        transform: translateY(6px);
    }
}
@-moz-keyframes mouse-wheel {
    0% {
        top: 1px;
    }
    50% {
        top: 8px;
    }
    100% {
        top: 1px;
    }
}
@-o-keyframes mouse-wheel {
    0% {
        top: 1px;
    }
    50% {
        top: 8px;
    }
    100% {
        top: 1px;
    }
}
@keyframes mouse-wheel {
    0% {
        top: 1px;
    }
    50% {
        top: 8px;
    }
    100% {
        top: 1px;
    }
}

@-webkit-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes mouse-scroll {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
/*--------------------------------------------------
	Mouse Scroll Indicator ____________ END
---------------------------------------------------*/
/*--------------------------------------------------
	Header Style ____________ START
---------------------------------------------------*/
#header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.right-options {
    display: flex;
    align-items: center;
}
.hide-ball {
    pointer-events: initial;
}
/*--------------------------------------------------
	Header Style ____________ END
---------------------------------------------------*/
/*--------------------------------------------------
	Home Page Style ____________ START
---------------------------------------------------*/
#hero-caption.text-align-center .inner .hero-img {
    max-width: 200px !important;
}
@media screen and (max-width: 600px) {
    #hero-caption.text-align-center .inner .hero-img {
        max-width: 175px !important;
    }
    /* header{
        background: linear-gradient(180deg,rgba(247, 232, 228, 0.8) 0%, rgba(0, 0, 0, 0) 100%) !important;    
        backdrop-filter: blur(3px);
        padding-bottom: 85px;
    } */
}
/*--------------------------------------------------
	Home Page Style ____________ END
---------------------------------------------------*/
/*--------------------------------------------------
	Shopping Cart Style ____________ START
---------------------------------------------------*/
.modal-shopping-cart .header .icon-close-popup,
.tf-cart-checkbox label {
    color: #000;
}
/*--------------------------------------------------
	Shopping Cart Style ____________ END
---------------------------------------------------*/

.notify-alert .close {
    padding: 0px 5px;
    line-height: 20px;
}
.button-border {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
}
.button-border.outline {
    border: solid 1px var(--theme-primary);
    color: var(--theme-primary);
    border-radius: 0px !important;
    padding: 0 10px;
}
.button-border span {
    padding: 0px 25px;
}
.outline input[type="submit"] {
    font-size: 14px;
}
a,
p,
.fullscreen-menu.invert-header .flexnav li a,
.over-white-section .nav-icon-item {
    color: color-mix(in srgb, var(--theme-primary), transparent 20%);
    opacity: 1;
    margin-left: 5px;
}
.dark-section .box-icon {
    color: #fff;
}
.tf-btn.btn-sm{
    padding: 10px 25px;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
}
@media screen and (max-width: 600px) {
    .button-border span{
        padding: 0px;
    }
}


/* DASHBOARD ORDER PAGE  START*/
 .order-card {
    border: 1px solid #3c0606;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(60, 6, 6, 0.04);
    padding: 15px 20px;
}

.order-header {
    border-bottom: 1px dashed #3c0606;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding-bottom: 10px;
}

.order-header-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-header-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.order-header-value {
    color: #1a1a1a;
    font-weight: 700;
}

.order-header a {
    color: #3c0606;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.order-header a:hover {
    text-decoration: underline;
}

.order-body {
    padding: 15px 0px;
}

.order-card .product-img {
    width: 100%;
    max-width: 100px;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: transform 0.2s;
}
.order-card .product-img:hover {
    transform: scale(1.02);
}

.order-card .product-title {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.order-card .product-title:hover {
    color: #3c0606;
}

.order-card .action-buttons-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-card .action-buttons-right .btn-outline-theme-sm {
    width: 100%;
    text-align: center;
    border-color: #ddd;
    color: #555 !important;
}
.order-card .action-buttons-right .btn-outline-theme-sm:hover {
    border-color: #3c0606;
    color: #fff !important;
    background: #3c0606;
}
.order-card .address-box .address-label{
    font-weight: 600;
    color: #3c0606;
    font-size: 12px;
    margin-bottom: 5px;
}
.order-card .address-box .address-value{
    font-weight: 500;
    color: #000;
    font-size: 12px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
/* DASHBOARD ORDER PAGE  END*/
.border{
    border: 1px solid #3c0606 !important;
}
.border-bottom-dashed{
    border-bottom: 1px dashed #3c0606 !important;
}
.login-register-section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}
input::placeholder, textarea::placeholder{
    color: #3c0606 !important;
    opacity: 0.6 !important;
}
.modal-quick-add .modal-content{
    border-radius: 0;
}
.box-discount::before, .box-discount::after{
    background: var(--theme-secondary) !important;
}

/* Notify Alert Style ____________ START */
.alert{
    border: 1px solid var(--theme-primary) !important;
    background: var(--theme-secondary) !important;
    border-radius: 0px !important;
    box-shadow: 3px 5px 8px rgba(60, 6, 6, 0.5) !important;
    top: 0 !important;
    right: 0 !important;
    margin: 10px !important;
}
.alert span{
    color: var(--theme-primary) !important;
}
.alert span[data-notify="title"]{
    font-weight: bold !important;
}
.alert .progress-bar{
    background: var(--theme-primary) !important;
    opacity: 1 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 100% !important;
    transition: all 0.4s ease !important;
}
.alert a{
    display: none !important;
}
/* Notify Alert Style ____________ END */