:root{
    --site-primary-color-1: #263672;
    --site-primary-color-2: #e0954c;
    --site-primary-color-2-hover: #b8773b;
}
.site-primary-btn-1{
    background-color: var(--site-primary-color-1);
    color: #fff;
}
.site-primary-btn-2{
    background-color: var(--site-primary-color-2);
    color: #fff;
}
.site-primary-btn-2:hover{
    background-color: var(--site-primary-color-2-hover);
    color: #fff;
    transform: translateY(-1px);
}
.site-primary-text-1{
    color: var(--site-primary-color-1);
}
.site-primary-text-2{
    color: var(--site-primary-color-2);
}
.site-primary-bg-1{
    background-color: var(--site-primary-color-1) !important;
    color: #fff;
}
.site-primary-bg-2{
    background-color: var(--site-primary-color-2) !important;
    color: #fff;
}
input,
select,
input::placeholder{
    font-family: none, serif !important;
    font-weight: 500 !important;
}
.cart-wrapper {
    position: relative;
    cursor: pointer;
}
.cart-count {
    font-size: 10px;
    padding: 3px 5px;
    line-height: 1;
}
.mini-cart {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 370px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    z-index: 99999999999999999999999999999;
    border: 1px solid #eee;
    font-family: none, serif;
}
.mini-cart img{
    height: 50px;
    width: 50px;
}
.mini-cart::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.mini-cart-header {
    font-size: 14px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.mini-cart-items {
    max-height: 180px;
    overflow-y: auto;
}

.mini-cart-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mini-cart-footer {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.navbar .header-navigation{
    border-bottom: 4px solid var(--site-primary-color-2);
}
.validation-error{
    color: #dc3545;
    font-family: none, serif;
    list-style: none;
    padding-left: 9px;
}

/*Products Custom Options Css*/

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.option-box {
    position: relative;
    cursor: pointer;
}
.option-box input {
    display: none;
}
.option-box .box-label {
    padding: 7px 18px;
    border: 2px solid #d39850;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    color: #d39850;
    transition: 0.2s;
    display: inline-block;
}
.option-box input:checked + .box-label {
    background: #d39850;
    color: #fff;
    border-color: #d39850;
}


.image-dropdown {
    position: relative;
}

.dropdown-selected {
    padding: 12px;
    border: 1px solid #ccc;
    cursor: pointer;
    background: white;
    font-size: 15px;
}

.dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ddd;
    background: white;
    display: none;
    z-index: 999;
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.dropdown-item:hover {
    background: #f5f5f5;
}

.item-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
}

.big-preview {
    position: absolute;
    left: 360px;
    top: 0;
    width: 350px;
    height: 350px;
    border: 2px solid #ccc;
    background: white;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.big-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
