body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}
body{
    background-image: url('../../Background.svg')
    }
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff7e6;
}

.navbar .logo img {
    height: 50px;
}

.menu a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #ffe5b3;
    color: #000;
}

.navbar .login-button {
    background-color: #d4a017;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}


.sidebar {

    background-color: rgba(246, 246, 246, 1);

    border-radius: 8px;
}

.sidebar h2 {
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #d3d3d3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #d3d3d3;
    margin: 0;
    padding: 20px;
}

.sidebar ul li:first-child {
    border-top: none;
}

/*  */

.sidebar ul li label {
    font-size: 16px;
    color: #555;

}



.product-card {
    border: 1px solid #eaeae9;
    border-radius: 10px;
    /* background-color: rgb(211 211 211 / 30%); */
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    /* width: 100%; */
    /* height: 200px; */
    /* object-fit: cover; */
}

.product-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-direction: row-reverse;
}

.product-card-content h3 {
    font-size: 16px;
    margin: 0;
    color: rgba(0, 0, 0, 1);
    text-align: right;
    flex: 1;
}

.product-card-content .price {
    color: rgba(150, 109, 14, 1);
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    flex-shrink: 0;
    margin-left: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #d4a017;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: right;
    margin-top: 0;
}


.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 15px;
}

.card-content h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 24px;
    color: #333;
}

p.price {
    color: rgba(150, 109, 14, 1);
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.product-card {
    margin-bottom: 30px;
}

.main-wrapper {
    margin-top: 75px;
}



.sidebar ul li input {
    margin-left: 5px;
}

nav.navbar.bg-light {
    background: #f6efe0 !important;
}

.footer {
    background: rgba(94, 94, 94, 1);
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer-container {
    padding: 70px 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #c4962d;
}



span.add-to-cart {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    margin-top: -50px;
    z-index: 9999;
    left: 50%;
    margin-left: -50px;
    background: #00000099;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0;
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
}

span.add-to-cart span {
    font-size: 11px;
    margin-top: 12px;
}

.product-img-wrapper:hover .add-to-cart {
    opacity: 1;
}



/*cart modal*/
.product-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    font-size: 24px;
    color: #d4a017;
    margin-bottom: 20px;
}

.quantity {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.quantity input {
    border: navajowhite;
    width: 40px;
    height: 54px;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
}

.quantity button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border-radius: 0;
    border: navajowhite;
}

.dropdown i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.button-primary {
    background-color: #d4a017;
    color: white;
    border: none;
}

.button-secondary {
    background-color: white;
    color: #d4a017;
    border: 1px solid #d4a017;
}

.cart-modal-head {
    display: flex;
    justify-content: space-between;
}

.quantity {
    border: 1px solid #ddd;
}

.btns-plus {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
}

button.mins {
    border-bottom: 1px solid #ddd;
}

.modal-content {
    padding: 20px 20px 10px;
    border-radius: 15px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}



.step-indicator div {
    text-align: center;
    flex: 1;
    z-index: 1;

}

.step-indicator div i {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-indicator div.active i {
    color: #d4af37;
}

.step-indicator div.active span {
    color: #d4af37;
}

.step-indicator div span {
    display: block;
    color: #999;
}

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.address-section {
    margin-bottom: 20px;
}

.address-section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address-section h5 {
    color: #d4af37;
}

.address-section p {
    margin: 0;
}

.address-section i {
    color: #d4af37;
}

.delivery-options {
    margin-bottom: 20px;
}

.delivery-options h5 {
    color: #d4af37;
}

.delivery-options label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.delivery-options input {
    margin-left: 10px;
}

.btn-next {
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.address-head {
    display: flex;
    justify-content: space-between;
}

.adress-item {
    display: flex;
    justify-content: space-between;
}

.step-indicator {
    position: relative;
}

.step-indicator:after {
    content: no-close-quote;
    height: 1px;
    left: 0;
    right: 0;
    background: #ddd;
    position: absolute;

}

.step-card {
    display: inline-flex !important;
    width: 100px;
    height: 100px;
    background: rgba(211, 211, 211, 1) !important;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card * {
    color: rgba(255, 255, 255, 1) !important;
}

span.radio-s {
    display: block;
    margin-right: 30px;
    font-size: 12px;
    margin-bottom: 20px;
}
span.shipping-price {
    color: #d4af37;
    font-weight: bold;
}

.step-indicator.content {
    margin: 100px auto;
}
.step-card.active {
    background: #d4a017 !important;
}
.step-indicator div.active span {
    font-size: 12px;
    color: #d4af37;
}
.address-section {
    margin-bottom: 75px;
}
.address-head a {
    color: #333;
    text-decoration: underline !important;
}

.address-head {
    margin-bottom: 10px;
}

.adress-item {
    padding: 0 15px;
}

.delivery-options {
    margin: 100px 0;
}
button.btn-next {
    padding: 10px 84px;
    margin-bottom: 100px;
}

.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-table {
    flex: 1 1 65%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none !important;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    font-weight: bold;
    color: #333;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-product img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.quantity-control button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-control input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.remove {
    color: #d9534f;
    font-size: 18px;
    cursor: pointer;
}

.cart-summary {
    flex: 1 1 30%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.cart-summary .total {
    font-weight: bold;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-summary small {
    display: block;
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}

.cart-summary button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-summary .pay {
    background-color: #d3a14a;
    color: #fff;
}

.cart-summary .pay:hover {
    background-color: #b3873d;
}

.cart-summary .continue {
    background-color: #fff;
    color: #d3a14a;
    border: 1px solid #d3a14a;
}

.cart-summary .continue:hover {
    background-color: #f9f5f0;
}

@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-table,
    .cart-summary {
        width: 100%;
    }

    .product-list.mys:after{
        display: none !important;
    }

    
    img.layer1.slide-layer {
        width: 62px !important;
    }
    
    img.layer2.slide-layer {
        width: 115px !important;
    }
    
    img.layer3.slide-layer {
        width: 80px !important;
    }
    
    
    
    .slider-content img {
        width: 50px !important;
    }
    
    .home-slider .slider-item > img:first-child {
        height: 419px !important;
    }
}
thead {
    border-bottom: 2px solid;
}
.cart-container {
    margin-bottom: 100px;
}

.product {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 50px;
}

.product-details {
    flex: 1;
    padding: 20px;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-details .price {
    font-size: 20px;
    color: #d4a017;
    margin-bottom: 20px;
}

.product-details p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-details > select,
.product-details > input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.product-details .add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-details .add-to-cart-div  button.add-to-cart-btn {
    background-color: #d4a017;
    color: #fff;
    border: none;
    padding: 19px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.product-details .add-to-cart input {
    width: 50px;
    text-align: center;
}

.product-images {
  
}

.product-images img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-images .thumbnails {
    display: flex;
    justify-content: center;
}

.product-images .thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tabs button {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.tabs button.active {
    background-color: #d4a017;
    color: #fff;
}

.tab-content {
    font-size: 14px;
    line-height: 1.6;
}

.shop-now {
    text-align: center;
    font-size: 24px;
    color: #d4a017;
    margin-top: 50px;
}
.product-details .price {
    font-size: 28px;
    font-weight: bold;
}
.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    background: #fff;
    border-radius: 0;
    border-bottom: 3px solid #dddddd;
    color: #333;
    min-width: 194px;
    margin-bottom: 50px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: #ddd;
    border: navajowhite;
    border-bottom: 3px solid #c4962d;
}
.shop-now {
    margin-bottom: 37px;
}

.pub {
    padding: 0 7px;
}



.about-image,
.location-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.text-content {
    text-align: right;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.location-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1000px;
    direction: rtl; 
}

.location-image {
width: 800%;  
max-width: 500px; 
height: 300px; 
border-radius: 10px;
display: block;
margin: 10%; 
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: right;
}

.stars {
    color: #B8860B;
    margin-bottom: 10px;
    font-size: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #666;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }
}

.about-h2 {
    color: #B8860B;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.about-h2.right{
    text-align: right;
}


.branches {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}
.branches h2 {
    text-align: right;
    color: #d4a24c;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}
.branch-card {
    display: flex;
    flex-direction: row-reverse; 
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.branch-card img {
    width: 500px;
    height: 200px;
    object-fit: cover;
}
.branch-details {
    flex: 1;
    padding: 20px;
}
.branch-details h3 {
    color: #d4a24c;
    margin: 0 0 10px;
    font-size: 18px;
}
.branch-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
.branch-details p i {
    color: #d4a24c;
    margin-left: 5px;
}














/************************* home *******************************/
/**********************slider**********************/
.slider-item img {
    height: auto;
    width: 100%;
}
.slider-item {
    position: relative;
}

.slider-content {
    position: ABSOLUTE;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

img.slider-logo {
    width: 150px;
}

.slider-content h1 {
    font-weight: bold;
    color: #333333c7;
    margin-bottom: 20px;
    margin-top: 30px;
}

.slider-content p {
    padding: 10px;
    width: 35%;
    text-align: center;
}

a.slider-btn {
    display: inline-block;
    text-decoration: none;
    background: #c4962d;
    padding: 15px 150px;
    border-radius: 15px;
    color: #fff;
}
.slide-layer {
    position: absolute;
}

img.layer1.slide-layer {
    width: 300px;
    bottom: 50px;
    left: 130px;
}

img.layer2.slide-layer {
    width: 158px;
    top: 100px;
    right: 237px;
}

img.layer3.slide-layer {
    width: 500px;
    left: 150px;
    top: -206px;
}
.slick-arrow:before{
    display: none;
}
button.slick-next.slick-arrow {
    left: 50px;
    background: url('imgs/slides/right.png');
    background-size: cover;
}

button.slick-prev.slick-arrow {
    right: 50px;
    opacity: 1;
    background: url('imgs/slides/left.png');
    background-size: cover;
    z-index: 9999;
}
.product-card a {
    text-decoration: none;
}
 

section.intro {
    display: block;
    min-height: 107px;
    background: url('../imgs/bgintro.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -7px;
}

section.intro {
    display: flex;
    align-items: center;
    justify-content: CENTER;
    font-size: 21px;
    color: #c4962d;
}

section.about {
    padding: 200px 0;
}

span.hh {
    width: 55px;
    height: 70px;
    background: url('../imgs/h.png');
    display: inline-block;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}

h3.outheadein {
    display: flex;
    align-items: center;
}

/* section.about:before,section.about:after {
    content: no-close-quote;
    width: 400px;
    height: 400px;
    position: ABSOLUTE;
    background: url('../imgs/u.png');
    right: 0;
    top: -200px;
    background-repeat: no-repeat;
    background-size: cover;
} */

section.about {
    position: relative;
    overflow: hidden;
}

section.about:after {
    left: -100px;
    top: auto;
    bottom: -100px;
    right: auto;
}

.col-6.c-align {
    text-align: left;
    padding-top: 100px;
}

.row.ccenter {
    align-items: center;
}

section.cats {
    text-align: center;
}

section.cats h3.outheadein {
    text-align: center;
    justify-content: center;
}

section.cats #myTab {
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}

a.maincatitem {
    float: right;
    /* clear: none; */
    /* margin-top: -50%; */
    width: 50%;
    margin-bottom: 12px;
}

.maincat:after {
    content: no-close-quote;
    display: table;
    clear: both;
}

a.maincatitem:nth-child(3){
    margin-top: -292px;
}

a.maincatitem:nth-child(2){
    clear: right;
}
.halfcat {
    width: 50%;
    float: right;
}
body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff7e6;
}

.navbar .logo img {
    height: 50px;
}

.menu a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #ffe5b3;
    color: #000;
}

.navbar .login-button {
    background-color: #d4a017;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}


.sidebar {

    background-color: rgba(246, 246, 246, 1);

    border-radius: 8px;
}

.sidebar h2 {
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #d3d3d3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #d3d3d3;
    margin: 0;
    padding: 20px;
}

.sidebar ul li:first-child {
    border-top: none;
}

/*  */

.sidebar ul li label {
    font-size: 16px;
    color: #555;

}



.product-card {
    border: 1px solid #eaeae9;
    border-radius: 10px;
    /* background-color: rgb(211 211 211 / 30%); */
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    /* width: 100%; */
    /* height: 200px; */
    /* object-fit: cover; */
}

.product-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-direction: row-reverse;
}

.product-card-content h3 {
    font-size: 16px;
    margin: 0;
    color: rgba(0, 0, 0, 1);
    text-align: right;
    flex: 1;
}

.product-card-content .price {
    color: rgba(150, 109, 14, 1);
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    flex-shrink: 0;
    margin-left: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #d4a017;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: right;
    margin-top: 0;
}

.search-icon svg {
    height: 25px;
    width: 35px;
    fill: #d4a017;
    margin-left: 12px;
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 999;
}

.search-icon form {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    /* width: 0; */
}

.search-icon {
    position: relative;
    height: 35px;
    width: 250px;
}

.search-icon form * {
    height: 35px;
    margin: 0;
    width: 100%;
    font-size: 11px;
    padding-right: 41px;
    margin-left: 15px;
    border-radius: 15px;
    border-color: #c4962d;
    transition: all 0.5s;
}

input.form-control.search-input.open {
    width: 250px;
    font-size: 12px;
}


.form-select {
background-position: 20px;
}


.cat-item {
position: relative;
}

.cat-title {
position: absolute;
top: 0px;
bottom: 5px;
left: 25px;
right: 25px;
background: #00000059;
border: 2px solid #c4962d;
color: #ffffff;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
transition: all 0.3s;
opacity: 0;
}

.cat-item:hover .cat-title {
opacity: 1;
}

img{
border-radius: 5px
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 15px;
}

.card-content h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 24px;
    color: #333;
}

p.price {
    color: rgba(150, 109, 14, 1);
    font-weight: bold;
    font-size: 20px;
    margin: 0;
    padding: 0;
}

.product-card {
    margin-bottom: 30px;
}

.main-wrapper {
    margin-top: 75px;
}



.sidebar ul li input {
    margin-left: 5px;
}

nav.navbar.bg-light {
    background: #f6efe0 !important;
}

.footer {
    background: rgba(94, 94, 94, 1);
    color: #fff;
}

.footer a {
    color: #fff;
}

.footer-container {
    padding: 70px 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #c4962d;
}



span.add-to-cart {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    margin-top: -50px;
    z-index: 9999;
    left: 50%;
    margin-left: -50px;
    background: #00000099;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0;
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
}

span.add-to-cart span {
    font-size: 11px;
    margin-top: 12px;
}

.product-img-wrapper:hover .add-to-cart {
    opacity: 1;
}



/*cart modal*/
.product-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    font-size: 24px;
    color: #d4a017;
    margin-bottom: 20px;
}

.quantity {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.quantity input {
    border: navajowhite;
    width: 40px;
    height: 54px;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
}

.quantity button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border-radius: 0;
    border: navajowhite;
}

.dropdown i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.button-primary {
    background-color: #d4a017;
    color: white;
    border: none;
}

.button-secondary {
    background-color: white;
    color: #d4a017;
    border: 1px solid #d4a017;
}

.cart-modal-head {
    display: flex;
    justify-content: space-between;
}

.quantity {
    border: 1px solid #ddd;
}

.btns-plus {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
}

button.mins {
    border-bottom: 1px solid #ddd;
}

.modal-content {
    padding: 20px 20px 10px;
    border-radius: 15px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}



.step-indicator div {
    text-align: center;
    flex: 1;
    z-index: 1;

}

.step-indicator div i {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-indicator div.active i {
    color: #d4af37;
}

.step-indicator div.active span {
    color: #d4af37;
}

.step-indicator div span {
    display: block;
    color: #999;
}

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.address-section {
    margin-bottom: 20px;
}

.address-section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address-section h5 {
    color: #d4af37;
}

.address-section p {
    margin: 0;
}

.address-section i {
    color: #d4af37;
}

.delivery-options {
    margin-bottom: 20px;
}

.delivery-options h5 {
    color: #d4af37;
}

.delivery-options label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.delivery-options input {
    margin-left: 10px;
}

.btn-next {
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.address-head {
    display: flex;
    justify-content: space-between;
}

.adress-item {
    display: flex;
    justify-content: space-between;
}

.step-indicator {
    position: relative;
}

.step-indicator:after {
    content: no-close-quote;
    height: 1px;
    left: 0;
    right: 0;
    background: #ddd;
    position: absolute;

}

.step-card {
    display: inline-flex !important;
    width: 100px;
    height: 100px;
    background: rgba(211, 211, 211, 1) !important;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card * {
    color: rgba(255, 255, 255, 1) !important;
}

span.radio-s {
    display: block;
    margin-right: 30px;
    font-size: 12px;
    margin-bottom: 20px;
}
span.shipping-price {
    color: #d4af37;
    font-weight: bold;
}

.step-indicator.content {
    margin: 100px auto;
}
.step-card.active {
    background: #d4a017 !important;
}
.step-indicator div.active span {
    font-size: 12px;
    color: #d4af37;
}
.address-section {
    margin-bottom: 75px;
}
.address-head a {
    color: #333;
    text-decoration: underline !important;
}

.address-head {
    margin-bottom: 10px;
}

.adress-item {
    padding: 0 15px;
}

.delivery-options {
    margin: 100px 0;
}
button.btn-next {
    padding: 10px 84px;
    margin-bottom: 100px;
}

.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-table {
    flex: 1 1 65%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none !important;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    font-weight: bold;
    color: #333;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-product img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.quantity-control button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-control input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.remove {
    color: #d9534f;
    font-size: 18px;
    cursor: pointer;
}

.cart-summary {
    flex: 1 1 30%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.cart-summary .total {
    font-weight: bold;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-summary small {
    display: block;
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}

.cart-summary button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-summary .pay {
    background-color: #d3a14a;
    color: #fff;
}

.cart-summary .pay:hover {
    background-color: #b3873d;
}

.cart-summary .continue {
    background-color: #fff;
    color: #d3a14a;
    border: 1px solid #d3a14a;
}

.cart-summary .continue:hover {
    background-color: #f9f5f0;
}

@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-table,
    .cart-summary {
        width: 100%;
    }
}
thead {
    border-bottom: 2px solid;
}
.cart-container {
    margin-bottom: 100px;
}

.product {
    display: flex;
    max-width: 1200px;
    width: 100%;
    margin-bottom: 50px;
}

.product-details {
    flex: 1;
    padding: 20px;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-details .price {
    font-size: 20px;
    color: #d4a017;
    margin-bottom: 20px;
}

.product-details p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-details > select,
.product-details > input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.product-details .add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-details .add-to-cart-div  button.add-to-cart-btn {
    background-color: #d4a017;
    color: #fff;
    border: none;
    padding: 19px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.product-details .add-to-cart input {
    width: 50px;
    text-align: center;
}

.product-images {

}

.product-images img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-images .thumbnails {
    display: flex;
    justify-content: center;
}

.product-images .thumbnails img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tabs button {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.tabs button.active {
    background-color: #d4a017;
    color: #fff;
}

.tab-content {
    font-size: 14px;
    line-height: 1.6;
}

.shop-now {
    text-align: center;
    font-size: 24px;
    color: #d4a017;
    margin-top: 50px;
}
.product-details .price {
    font-size: 28px;
    font-weight: bold;
}
.nav-tabs {
    border: none;
}

.nav-tabs .nav-link {
    background: #fff;
    border-radius: 0;
    border-bottom: 3px solid #dddddd;
    color: #333;
    min-width: 194px;
    margin-bottom: 50px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background: #ddd;
    border: navajowhite;
    border-bottom: 3px solid #c4962d;
}
.shop-now {
    margin-bottom: 37px;
}

.pub {
    padding: 0 7px;
}



.about-image,
.location-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.text-content {
    text-align: right;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.location-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1000px;
    direction: rtl; 
}

.location-image {
width: 800%;  
max-width: 500px; 
height: 300px; 
border-radius: 10px;
display: block;
margin: 10%; 
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: right;
}

.stars {
    color: #B8860B;
    margin-bottom: 10px;
    font-size: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #666;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }
}

.about-h2 {
    color: #B8860B;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}
.about-h2.right{
    text-align: right;
}


.branches {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}
.branches h2 {
    text-align: right;
    color: #d4a24c;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}
.branch-card {
    display: flex;
    flex-direction: row-reverse; 
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.branch-card img {
    width: 500px;
    height: 200px;
    object-fit: cover;
}
.branch-details {
    flex: 1;
    padding: 20px;
}
.branch-details h3 {
    color: #d4a24c;
    margin: 0 0 10px;
    font-size: 18px;
}
.branch-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}
.branch-details p i {
    color: #d4a24c;
    margin-left: 5px;
}














/************************* home *******************************/
/**********************slider**********************/
.slider-item img {
    height: auto;
    width: 100%;
}
.slider-item {
    position: relative;
}

.slider-content {
    position: ABSOLUTE;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

img.slider-logo {
    width: 200px;
}

.slider-content h1 {
    font-weight: bold;
    color: #333333c7;
    margin-bottom: 20px;
    margin-top: 30px;
}

.slider-content p {
    padding: 10px;
    width: 35%;
    text-align: center;
}

a.slider-btn {
    display: inline-block;
    text-decoration: none;
    background: #c4962d;
    padding: 15px 150px;
    border-radius: 15px;
    color: #fff;
}
.slide-layer {
    position: absolute;
}

img.layer1.slide-layer {
    width: 300px;
    bottom: 50px;
    left: 130px;
}

img.layer2.slide-layer {
    width: 158px;
    top: 100px;
    right: 237px;
}

img.layer3.slide-layer {
    width: 500px;
    left: 150px;
    top: -206px;
}
.slick-arrow:before{
    display: none;
}
button.slick-next.slick-arrow {
    left: 50px;
    background: url('imgs/slides/right.png');
    background-size: cover;
}

button.slick-prev.slick-arrow {
    right: 50px;
    opacity: 1;
    background: url('imgs/slides/left.png');
    background-size: cover;
    z-index: 9999;
}
.product-card a {
    text-decoration: none;
}
 

section.intro {
    display: block;
    min-height: 107px;
    background: url('../imgs/bgintro.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -7px;
}

section.intro {
    display: flex;
    align-items: center;
    justify-content: CENTER;
    font-size: 21px;
    color: #c4962d;
}

section.about {
    padding: 200px 0;
}

span.hh {
    width: 55px;
    height: 70px;
    background: url('../imgs/h.png');
    display: inline-block;
    margin-left: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}

h3.outheadein {
    display: flex;
    align-items: center;
}

/* section.about:before,section.about:after {
    content: no-close-quote;
    width: 400px;
    height: 400px;
    position: ABSOLUTE;
    background: url('../imgs/u.png');
    right: 0;
    top: -200px;
    background-repeat: no-repeat;
    background-size: cover;
} */

section.about {
    position: relative;
    overflow: hidden;
}

section.about:after {
    left: -100px;
    top: auto;
    bottom: -100px;
    right: auto;
}

.col-6.c-align {
    text-align: left;
    padding-top: 100px;
}

.row.ccenter {
    align-items: center;
}

section.cats {
    text-align: center;
}

section.cats h3.outheadein {
    text-align: center;
    justify-content: center;
}

section.cats #myTab {
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}

a.maincatitem {
    float: right;
    /* clear: none; */
    /* margin-top: -50%; */
    width: 50%;
    margin-bottom: 12px;
}

.maincat:after {
    content: no-close-quote;
    display: table;
    clear: both;
}

a.maincatitem:nth-child(3){
    margin-top: -292px;
}

a.maincatitem:nth-child(2){
    clear: right;
}
.halfcat {
    width: 50%;
    float: right;
}
.nav-tabs .nav-link{
    margin: 10px 10px 20px;
    border-radius:5px ;
}

.homecars {
    border: 2px solid #c4962d;
    margin: 150px 0 50px;
    padding: 20px;
}

.homecars .row {
    align-items: center;
}

a.d-flex.align-items-center.justify-content-between.img-wrap {
    max-height: 170px;
    overflow: hidden;
}

.product-new-card * {
    margin: 0 !important;
    padding: 0 !important;;
}

.product-new-card {
    background: #ddd;
    border-radius: 13px;
    overflow: hidden;
}

.prod-det {
    padding: 18px !important;;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-new-card h3 {
    font-size: 16px;
}

.product-new-card a {
    text-decoration: none;
    color: #333;
}

.product-new-card .d-flex > h3 {
    color: #c4962d;
}

.product-new-card a h3 {
    color: #333 !important;;
}

.product-list.mys > h3 {
    text-align: center;
    margin: 100px;
    font-weight: bold;
    color: #bb9131;
}

.product-list.mys {
    margin-bottom: 100px;
    position: relative;
}

.product-list.mys:after {
    content: no-close-quote;
    width: 400px;
    height: 400px;
    position: ABSOLUTE;
    background: url('../imgs/u.png');
    right: 50%;
    top: -5%;
    z-index: -9;
    background-repeat: no-repeat;
    background-size: cover;
}


section.download {
    text-align: center;
    background: #c4962d1f;
    padding: 50px;
}

section.download h3 {
    color: #c4962d;
    margin-bottom: 36px;
    font-weight: bold;
}

.cart-totals.card {
    border-radius: 3px;
    margin: 50px 0;
    padding: 15px;
}

button.dropdown-item.checkout-button.p-2 {
    background: #d4a017;
    text-align: center;
    border-radius: 5px;
}

.cart-totals-inner table {
    width: 100%;
}

.total-cll {
    margin: 18px 0;
    display: flex;
    justify-content: space-between;
}

button.dropdown-item.checkout-button.p-2 {
    color: #fff;
}

.ourcart {
    width: 100%;
    margin: 50px 0;
}

.ourcart * {
    text-align: right;
}

tr.no-bor-top {
    padding: 10px 0 !important;
    height: 50px;
    border: none;
}

.ourcart thead {
    border-bottom: 1px  solid #ddd;
    margin-bottom: 12px;
}

img.full-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin: 10px 0;
}
.steps {
    display: flex;
    justify-content: space-around;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

span.step-icon {
    width: 70px;
    height: 70px;
    background: #cbcbcb;
    display: flex;
    align-items: CENTER;
    justify-content: CENTER;
    border-radius: 90px;
}


span.step-icon.active {
    background: #bf9541;
}

.steps {
    padding: 100px;
    position: relative;
}

.steps:after {
    content: no-close-quote;
    position: absolute;
    height: 1px;
    background: #ddd;
    left: 250px;
    right: 250px;
    top: 46%;
    z-index: -1;
}

.addressh {
    display: flex;
    justify-content: space-between;
}

.addressh h3 {
    font-weight: bold;
    color: #bf9541;
}


.addressitem {
    display: flex;
    justify-content: space-between;
}


section.address {
    margin-bottom: 100px;
}

.btn.btn-primary.cs {
    background: #bf9541;
    border: none;
    padding: 15px 100px;
    margin-bottom: 100px;;
}

table {}

.checkout-box {
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 35px;
}

table {
    width: 100%;
}

thead {
    border-bottom: 1px solid #ddd;
}

.checkout-box tr {
    display: flex;
    justify-content: space-between;
}

.checkout-box * {
    color: #464646;
}


.checkout-box h4,div#billing-form h4 {
    color: #bf9541;
}

thead {
    /* margin-bottom: 10px; */
}

.checkout-box tr {
    padding: 7px 0px;
}

.checkout-box tr * {
    border: none !important;;
}

button.btn.btn-dark.btn-primary-hover.rounded-0.mt-6 {
    background: #bf9541;
    color: #fff;
    border: none;
    display: block;
    width: 100%;
    margin: 39px 0 0;
    padding: 15px;
    border-radius: 8px !important;;
}

div#billing-form {
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 35px;
}

div#billing-form label {
    /* display: none; */
}

.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: #941a1d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 90px;
}

.float-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: #c4962d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    font-size: 18px;
    color: #fff;
}

span.cart-add {
    position: absolute;
    top: 0;
    width: 0;
    left: 41px;
    background: #c4962d;
    height: 80px;
    line-height: 80px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    z-index: -1;
    border-radius: 0 90px 90px 0;
    transition: all .5s;
    overflow: hidden;
}

span.cart-add.opened {
    width: 300px;
    padding: 0 26px;
}

.o-d {
    border-radius: 15px;
    margin-bottom: 30px;
}

.o-d h3 {
    text-align: center;
    font-weight: bold;
    color: #c4962d;
}

.invoice .row {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding: 0 15px 20px;
}

.invoice .row:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.odd-d {
    width: 100%;
    direction: rtl;
    text-align: right;
    border-collapse: collapse; 
    margin: 15px auto 100px; 
    border: 1px solid #ddd; 
}

.odd-d th, 
.odd-d td {
    padding: 10px; 
    border: 1px solid #eaeaea; 
    font-size: 14px; 
}

.odd-d th {
    background-color: #f7f7f7; 
    font-weight: bold;
    color: #333;
}

.odd-d tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.odd-d tbody tr:nth-child(odd) {
    background-color: #ffffff; 
}

.odd-d tfoot td {
    font-weight: bold;
    background-color: #f9f9f9;
}
.form-control {
    padding: 15px;
    margin-top: 6px;
    margin-bottom: 25px;
}

.sidebar ul li {
    width: 100%;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
}

.d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
    background: #f6efe0;
    flex-direction: row-reverse !important;
    justify-content: space-between;
    align-items: center !important;;
}

.d-flex.flex-row.w-50.align-items-center.p-5.card-counter h3 {
    color: #a3957b;
}

h3.mx-4 {}

.counter {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a54443;
    color: #fff;
    border-radius: 5px;
}

.single-input-item {}

.form-field {
    border: 1px solid #ddd;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
}

.single-input-item {
    display: flex;
    flex-direction: column;
}

.single-input-item label {
    /* margin-bottom: 10px; */
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.login-container img {
    width: 100px;
    margin-bottom: 20px;
}
.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}
.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.login-container .password-container {
    position: relative;
}
.login-container .password-container i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}
.login-container a {
    display: block;
    margin-bottom: 20px;
    color: #007bff;
    text-decoration: none;
    text-align: right;
}
.login-container a:hover {
    text-decoration: underline;
}
.login-container .btn-container {
    display: flex;
    justify-content: space-between;
}
.login-container button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.login-container .btn-login {
    background-color: #d4a017;
    color: #fff;
}
.login-container .btn-create {
    display: block;
    margin-bottom: 0;
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    background-color: #fff;
    color: #d4a017;
    border: 1px solid #d4a017;
}
 */
body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #fff7e6;
}

.navbar .logo img {
    height: 50px;
}

.menu a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu a:hover {
    background-color: #ffe5b3;
    color: #000;
}

.navbar .login-button {
    background-color: #d4a017;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.sidebar {
    background-color: rgba(246, 246, 246, 1);
    border-radius: 8px;
}

.sidebar h2 {
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #d3d3d3;
    padding-bottom: 10px;
    margin-bottom: 20px;
    padding: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 15px;
    padding: 10px 0;
    border-top: 1px solid #d3d3d3;
    padding: 20px;
}

.sidebar ul li:first-child {
    border-top: none;
}

.sidebar ul li label {
    font-size: 16px;
    color: #555;
}

.product-card {
    border: 1px solid #eaeae9;
    border-radius: 10px;
    /* background-color: rgb(211 211 211 / 30%); */
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    /* height: 200px; */
    /* object-fit: cover; */
}

.product-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-direction: row-reverse;
}

.product-card-content h3 {
    font-size: 16px;
    margin: 0;
    color: rgba(0, 0, 0, 1);
    text-align: right;
    flex: 1;
}

.product-card-content .price {
    color: rgba(150, 109, 14, 1);
    font-weight: bold;
    font-size: 16px;
    text-align: left;
    flex-shrink: 0;
    margin-left: 10px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #d4a017;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: right;
    margin-top: 0;
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 15px;
}

.card-content h3 {
    font-size: 13px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 24px;
    color: #952422;
}

p.price {
    color: rgb(212 160 23);
    font-weight: bold;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.product-card {
    margin-bottom: 30px;
}

.main-wrapper {
    margin-top: 75px;
}

.sidebar ul li input {
    margin-left: 5px;
}

nav.navbar.bg-light {
    background: #f6efe0 !important;
}

.footer {
    background: rgba(94, 94, 94, 1);
    color: #fff;
}

.footer a {
    color: #b27b00;
}

.footer-container {
    padding: 70px 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #c4962d;
}

span.add-to-cart {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    margin-top: -50px;
    z-index: 9999;
    left: 50%;
    margin-left: -50px;
    background: #00000099;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s;
    opacity: 0;
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
}

span.add-to-cart span {
    font-size: 11px;
    margin-top: 12px;
}

.product-img-wrapper:hover .add-to-cart {
    opacity: 1;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    font-size: 24px;
    color: #d4a017;
    margin-bottom: 20px;
}

.quantity {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.quantity input {
    border: navajowhite;
    width: 40px;
    height: 54px;
    text-align: center;
    border-radius: 5px;
    margin: 0 5px;
}

.quantity button {
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border-radius: 0;
    border: navajowhite;
}

.dropdown i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.button {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.button-primary {
    background-color: #d4a017;
    color: white;
    border: none;
}

.button-secondary {
    background-color: white;
    color: #d4a017;
    border: 1px solid #d4a017;
}

.cart-modal-head {
    display: flex;
    justify-content: space-between;
}

.quantity {
    border: 1px solid #ddd;
}

.btns-plus {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #ddd;
}

button.mins {
    border-bottom: 1px solid #ddd;
}

.modal-content {
    padding: 20px 20px 10px;
    border-radius: 15px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-indicator div {
    text-align: center;
    flex: 1;
    z-index: 1;
}

.step-indicator div i {
    font-size: 24px;
    margin-bottom: 10px;
}

.step-indicator div.active i {
    color: #d4af37;
}

.step-indicator div.active span {
    color: #d4af37;
}

.step-indicator div span {
    display: block;
    color: #999;
}

.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.address-section {
    margin-bottom: 20px;
}

.address-section .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.address-section h5 {
    color: #d4af37;
}

.address-section p {
    margin: 0;
}

.address-section i {
    color: #d4af37;
}

.delivery-options {
    margin-bottom: 20px;
}

.delivery-options h5 {
    color: #d4af37;
}

.delivery-options label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.delivery-options input {
    margin-left: 10px;
}

.btn-next {
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.address-head {
    display: flex;
    justify-content: space-between;
}

.adress-item {
    display: flex;
    justify-content: space-between;
}

.step-indicator {
    position: relative;
}

.step-indicator:after {
    content: no-close-quote;
    height: 1px;
    left: 0;
    right: 0;
    background: #ddd;
    position: absolute;
}

.step-card {
    display: inline-flex !important;
    width: 100px;
    height: 100px;
    background: rgba(211, 211, 211, 1) !important;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card * {
    color: rgba(255, 255, 255, 1) !important;
}

span.radio-s {
    display: block;
    margin-right: 30px;
    font-size: 12px;
    margin-bottom: 20px;
}

span.shipping-price {
    color: #d4af37;
    font-weight: bold;
}

.step-indicator.content {
    margin: 100px auto;
}

.step-card.active {
    background: #d4a017 !important;
}

.step-indicator div.active span {
    font-size: 12px;
    color: #d4af37;
}

.address-section {
    margin-bottom: 75px;
}

.address-head a {
    color: #333;
    text-decoration: underline !important;
}

.address-head {
    margin-bottom: 10px;
}

.adress-item {
    padding: 0 15px;
}

/* استعلامات الوسائط لجعل الصفحة متجاوبة */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-card-content {
        flex-direction: column;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 18px;
    }

    .sidebar ul li {
        padding: 15px;
    }

    .footer-container {
        padding: 40px 20px;
    }

    .footer-bottom {
        padding: 15px;
    }
}
.delivery-options {
    margin: 100px 0;
}

button.btn-next {
    padding: 10px 84px;
    margin-bottom: 100px;
}

.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-table {
    flex: 1 1 65%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none !important;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    font-weight: bold;
    color: #333;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-product img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.quantity-control button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-control input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.remove {
    color: #d9534f;
    font-size: 18px;
    cursor: pointer;
}

.cart-summary {
    flex: 1 1 30%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.cart-summary .total {
    font-weight: bold;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-summary small {
    display: block;
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}

.cart-summary button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-summary .pay {
    background-color: #d3a14a;
    color: #fff;
}

.cart-summary .pay:hover {
    background-color: #b3873d;
}

.cart-summary .continue {
    background-color: #fff;
    color: #d3a14a;
    border: 1px solid #d3a14a;
}

.cart-summary .continue:hover {
    background-color: #f9f5f0;
}

@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-table,
    .cart-summary {
        width: 100%;
    }

    .product {
        flex-direction: column;
        align-items: center;
    }

    .product-details {
        padding: 15px;
    }

    .product-details h1 {
        font-size: 22px;
    }

    .product-details .price {
        font-size: 22px;
    }

    .product-images img {
        width: 80%;
    }

    .product-images .thumbnails img {
        width: 80px;
        height: 80px;
    }

    .tabs button {
        padding: 8px 15px;
    }

    .review-card {
        padding: 15px;
    }

    .branches h2 {
        font-size: 20px;
    }

    .branch-card img {
        width: 100%;
        height: auto;
    }

    .location-container {
        flex-direction: column;
    }

    .location-image {
        width: 100%;
        height: auto;
    }

    .shop-now {
        font-size: 20px;
        margin-top: 30px;
    }

    .slider-item img {
        height: auto;
        width: 100%;
    }

    .slider-content {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999999;
    }
}

/* Additional Styles */
.slider-item {
    position: relative;
}

.slider-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.about-image,
.location-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.text-content {
    text-align: right;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.location-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1000px;
    direction: rtl; 
}

.location-image {
    width: 80%;  
    max-width: 500px; 
    height: 300px; 
    border-radius: 10px;
    display: block;
    margin: 10%; 
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: right;
}

.stars {
    color: #B8860B;
    margin-bottom: 10px;
    font-size: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #666;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

@media screen and (max-width: 767px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .navbar .logo img {
        height: 40px;
    }

    .menu a {
        display: block;
        margin: 5px 0;
    }

    .sidebar h2 {
        font-size: 18px;
    }

    .sidebar ul li {
        padding: 15px;
    }

    .product-card {
        width: 100%;
        margin: 10px 0;
    }

    .section-title {
        font-size: 20px;
        text-align: center;
    }

    section.intro {
        font-size: 18px;
        text-align: center;
    }

    img.slider-logo {
        width: 100px;
    }

    .step-indicator div {
        flex: 1;
        margin: 5px 0;
    }

    .address-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-img-wrapper {
        width: 100%;
    }

    span.add-to-cart {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .product-card {
        width: 48%;
        margin: 10px;
    }

    .slider-content p {
        width: 50%;
        margin: 0 auto;
    }

    .navbar {
        padding: 10px 30px;
    }

    .navbar .logo img {
        height: 45px;
    }

    .menu a {
        font-size: 14px;
    }
}

@media screen and (min-width: 1025px) {
    .navbar {
        justify-content: space-between;
    }

    .product-card {
        width: 22%;
        margin: 20px;
    }

    .slider-content p {
        width: 35%;
    }
    .footer-container {
        padding: 50px 0;
    }

    .footer-bottom {
        padding: 15px;
    }

       .maincat {
        display: flex;
        justify-content: space-between;
    }

    .halfcat {
        width: 48%;
    }
}
/* General Styling */
.delivery-options input {
    margin-left: 10px;
}

.btn-next {
    background-color: #d4af37;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.address-head {
    display: flex;
    justify-content: space-between;
}

.address-item {
    display: flex;
    justify-content: space-between;
}

.step-indicator {
    position: relative;
}

.step-indicator:after {
    content: no-close-quote;
    height: 1px;
    left: 0;
    right: 0;
    background: #ddd;
    position: absolute;
}

.step-card {
    display: inline-flex !important;
    width: 100px;
    height: 100px;
    background: rgba(211, 211, 211, 1) !important;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-card * {
    color: rgba(255, 255, 255, 1) !important;
}

span.radio-s {
    display: block;
    margin-right: 30px;
    font-size: 12px;
    margin-bottom: 20px;
}

span.shipping-price {
    color: #d4af37;
    font-weight: bold;
}

.step-indicator.content {
    margin: 100px auto;
}

.step-card.active {
    background: #d4a017 !important;
}

.step-indicator div.active span {
    font-size: 12px;
    color: #d4af37;
}

.address-section {
    margin-bottom: 75px;
}

.address-head a {
    color: #333;
    text-decoration: underline !important;
}

.address-head {
    margin-bottom: 10px;
}

.address-item {
    padding: 0 15px;
}

.delivery-options {
    margin: 100px 0;
}

button.btn-next {
    padding: 10px 84px;
    margin-bottom: 100px;
}

.cart-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-table {
    flex: 1 1 65%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: none !important;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 12px;
    text-align: right;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    font-weight: bold;
    color: #333;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-product img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.quantity-control button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
}

.quantity-control input {
    width: 40px;
    height: 25px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.remove {
    color: #d9534f;
    font-size: 18px;
    cursor: pointer;
}

.cart-summary {
    flex: 1 1 30%;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}

.cart-summary .total {
    font-weight: bold;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-summary small {
    display: block;
    margin-top: 15px;
    color: #777;
    font-size: 14px;
}

.cart-summary button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cart-summary .pay {
    background-color: #d3a14a;
    color: #fff;
}

.cart-summary .pay:hover {
    background-color: #b3873d;
}

.cart-summary .continue {
    background-color: #fff;
    color: #d3a14a;
    border: 1px solid #d3a14a;
}

.cart-summary .continue:hover {
    background-color: #f9f5f0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-table,
    .cart-summary {
        width: 100%;
    }

    .product {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-details {
        width: 100%;
        padding: 20px;
    }



    .product-images img {
        width: 100%;
        margin-bottom: 10px;
    }

    .product-images .thumbnails img {
        width: 80px;
        height: 80px;
    }

    .product-details h1 {
        font-size: 22px;
    }

    .product-details .price {
        font-size: 24px;
    }

    .tabs {
        flex-direction: column;
    }

    .tabs button {
        width: 100%;
        padding: 15px;
    }

    .tab-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .shop-now {
        font-size: 20px;
        margin-top: 30px;
    }

    .btn-next {
        width: 100%;
        padding: 12px;
    }

    .address-head {
        flex-direction: column;
        align-items: center;
    }

    .delivery-options {
        margin: 50px 0;
    }
}

/* Smaller devices and mobile-specific adjustments */
@media (max-width: 480px) {
    .product-details h1 {
        font-size: 20px;
    }

    .product-details .price {
        font-size: 22px;
    }

    .cart-summary .total {
        font-size: 18px;
    }

    .remove {
        font-size: 16px;
    }

    .quantity-control button {
        font-size: 14px;
    }

    .quantity-control input {
        width: 35px;
        font-size: 14px;
    }
}

/* General styles for larger screens */
.text-content {
    text-align: right;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.location-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1000px;
    direction: rtl; 
}

.location-image {
    width: 800%;  
    max-width: 500px; 
    height: 300px; 
    border-radius: 10px;
    display: block;
    margin: 10%; 
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: right;
}

.stars {
    color: #B8860B;
    margin-bottom: 10px;
    font-size: 20px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.reviewer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: bold;
    color: #666;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.about-h2 {
    color: #B8860B;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-h2.right {
    text-align: right;
}

.branches {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.branches h2 {
    text-align: right;
    color: #d4a24c;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.branch-card {
    display: flex;
    flex-direction: row-reverse; 
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.branch-card img {
    width: 500px;
    height: 200px;
    object-fit: cover;
}

.branch-details {
    flex: 1;
    padding: 20px;
}

.branch-details h3 {
    color: #d4a24c;
    margin: 0 0 10px;
    font-size: 18px;
}

.branch-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.branch-details p i {
    color: #d4a24c;
    margin-left: 5px;
}

/* Slider Styles */
.slider-item img {
    height: auto;
    width: 100%;
}

.slider-item {
    position: relative;
}

.slider-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

img.slider-logo {
    width: 200px;
}

.slider-content h1 {
    font-weight: bold;
    color: #333333c7;
    margin-bottom: 20px;
    margin-top: 30px;
}

.slider-content p {
    padding: 10px;
    width: 35%;
    text-align: center;
}

a.slider-btn {
    display: inline-block;
    text-decoration: none;
    background: #c4962d;
    padding: 15px 150px;
    border-radius: 15px;
    color: #fff;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .location-container {
        gap: 20px;
    }

    .location-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .branch-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .branch-card img {
        width: 100%;
        height: auto;
    }
}

/* Smaller Screens (Tablets and below) */
@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .reviews-container {
        grid-template-columns: 1fr;
    }

    .slider-content h1 {
        font-size: 1.5rem;
    }

    .slider-content p {
        width: 80%;
    }

    .slider-btn {
        padding: 10px 50px;
    }

    .branches h2 {
        font-size: 22px;
    }

    .branch-details h3 {
        font-size: 16px;
    }

    .branch-details p {
        font-size: 13px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .text-content {
        padding: 10px;
        max-width: 100%;
    }

    .slider-content p {
        width: 100%;
    }

    .branch-details p {
        font-size: 12px;
    }

    .branch-card {
        padding: 10px;
    }

    .slider-btn {
        padding: 10px 30px;
    }

    .steps {
        padding: 50px;
    }

    .addressh {
        flex-direction: column;
        align-items: center;
    }
}
.checkout-box h4, div#billing-form h4 {
    color: #bf9541;
}

.checkout-box tr {
    padding: 7px 0px;
}

.checkout-box tr * {
    border: none !important;
}

button.btn.btn-dark.btn-primary-hover.rounded-0.mt-6 {
    background: #bf9541;
    color: #fff;
    border: none;
    display: block;
    width: 100%;
    margin: 39px 0 0;
    padding: 15px;
    border-radius: 8px !important;
}

div#billing-form {
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 35px;
}

div#billing-form label {
    /* display: none; */
}

.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: #941a1d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 90px;
}

.float-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: #c4962d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    font-size: 18px;
    color: #fff;
}

span.cart-add {
    position: absolute;
    top: 0;
    width: 0;
    left: 41px;
    background: #c4962d;
    height: 80px;
    line-height: 80px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    z-index: -1;
    border-radius: 0 90px 90px 0;
    transition: all .5s;
    overflow: hidden;
}

span.cart-add.opened {
    width: 300px;
    padding: 0 26px;
}

.o-d {
    border-radius: 15px;
    margin-bottom: 30px;
}

.o-d h3 {
    text-align: center;
    font-weight: bold;
    color: #c4962d;
}

.invoice .row {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding: 0 15px 20px;
}

.invoice .row:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.odd-d {
    width: 100%;
    direction: rtl;
    text-align: right;
    border-collapse: collapse;
    margin: 15px auto 100px;
    border: 1px solid #ddd;
}

.odd-d th, .odd-d td {
    padding: 10px;
    border: 1px solid #eaeaea;
    font-size: 14px;
}

.odd-d th {
    background-color: #f7f7f7;
    font-weight: bold;
    color: #333;
}

.odd-d tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.odd-d tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.odd-d tfoot td {
    font-weight: bold;
    background-color: #f9f9f9;
}

.form-control {
    padding: 15px;
    margin-top: 6px;
    margin-bottom: 25px;
}

.sidebar ul li {
    width: 100%;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
}

.d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
    background: #f6efe0;
    flex-direction: row-reverse !important;
    justify-content: space-between;
    align-items: center !important;
}

.d-flex.flex-row.w-50.align-items-center.p-5.card-counter h3 {
    color: #a3957b;
}

.counter {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a54443;
    color: #fff;
    border-radius: 5px;
}



.form-field {
    border: 1px solid #ddd;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
}

.single-input-item {
    display: flex;
    flex-direction: column;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.login-container img {
    width: 100px;
    margin-bottom: 20px;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.login-container .password-container {
    position: relative;
}

.login-container .password-container i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.login-container a {
    display: block;
    margin-bottom: 20px;
    color: #007bff;
    text-decoration: none;
    text-align: right;
}

.login-container a:hover {
    text-decoration: underline;
}

.login-container .btn-container {
    display: flex;
    justify-content: space-between;
}

.login-container button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-container .btn-login {
    background-color: #d4a017;
    color: #fff;
}

.login-container .btn-create {
    display: block;
    margin-bottom: 0;
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    background-color: #fff;
    color: #d4a017;
    border: 1px solid #d4a017;
}

@media (max-width: 768px) {
    .checkout-box h4, div#billing-form h4 {
        font-size: 18px;
    }

    .checkout-box tr {
        padding: 10px 0;
    }

    .float-cart {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .o-d h3 {
        font-size: 20px;
    }

    .odd-d th, .odd-d td {
        font-size: 12px;
    }

    .login-container {
        max-width: 100%;
        padding: 15px;
    }

    .login-container h2 {
        font-size: 22px;
    }

    .login-container button {
        width: 100%;
        margin-bottom: 10px;
    }

    .sidebar ul li {
        /* text-align: center; */
    }

    .form-control {
        padding: 12px;
    }

    .d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .counter {
        width: 40px;
        height: 40px;
    }

    .login-container .btn-create {
        width: 100%;
    }

    .cart-icon .cart-count {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .checkout-box h4, div#billing-form h4 {
        font-size: 16px;
    }

    .checkout-box tr {
        padding: 8px 0;
    }

    .float-cart {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    .o-d h3 {
        font-size: 18px;
    }

    .odd-d th, .odd-d td {
        font-size: 11px;
    }

    .login-container {
        max-width: 100%;
        padding: 10px;
    }

    .login-container h2 {
        font-size: 20px;
    }

    .login-container input[type="email"],
    .login-container input[type="password"] {
        font-size: 14px;
    }

    .login-container button {
        width: 100%;
        padding: 12px;
    }

    .d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
        padding: 15px;
        flex-direction: column !important;
    }

    .counter {
        width: 40px;
        height: 40px;
    }
}
/* section.about:before,
section.about:after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    background: url('../imgs/u.png');
    right: 0;
    top: -200px;
    background-repeat: no-repeat;
    background-size: cover;
} */

section.about {
    position: relative;
    overflow: hidden;
}

section.about:after {
    left: -100px;
    top: auto;
    bottom: -100px;
    right: auto;
    z-index: -2;
}

.col-6.c-align {
    text-align: left;
    padding-top: 100px;
}

.row.ccenter {
    align-items: center;
}

section.cats {
    text-align: center;
}

section.cats h3.outheadein {
    text-align: center;
    justify-content: center;
}

section.cats #myTab {
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}

a.maincatitem {
    float: right;
    width: 50%;
    margin-bottom: 12px;
}

.maincat:after {
    content: "";
    display: table;
    clear: both;
}

a.maincatitem:nth-child(3) {
    margin-top: -292px;
}

a.maincatitem:nth-child(2) {
    clear: right;
}

.halfcat {
    width: 50%;
    float: right;
}

.nav-tabs .nav-link {
    margin: 10px 10px 20px;
    border-radius: 5px;
}

.homecars {
    border: 2px solid #c4962d;
    margin: 150px 0 50px;
    padding: 20px;
}

.homecars .row {
    align-items: center;
}

a.d-flex.align-items-center.justify-content-between.img-wrap {
    max-height: 170px;
    overflow: hidden;
}

.product-new-card * {
    margin: 0 !important;
    padding: 0 !important;
}

.product-new-card {
    background: #ddd;
    border-radius: 13px;
    overflow: hidden;
}

.prod-det {
    padding: 18px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-new-card h3 {
    font-size: 16px;
}

.product-new-card a {
    text-decoration: none;
    color: #333;
}

.product-new-card .d-flex > h3 {
    color: #c4962d;
}

.product-new-card a h3 {
    color: #333 !important;
}

.product-list.mys > h3 {
    text-align: center;
    margin: 100px;
    font-weight: bold;
    color: #bb9131;
}

.product-list.mys {
    margin-bottom: 100px;
    position: relative;
}

.product-list.mys:after {
    content: "";
    width: 400px;
    height: 400px;
    position: absolute;
    background: url('../imgs/u.png');
    right: 50%;
    top: -5%;
    z-index: -9;
    background-repeat: no-repeat;
    background-size: cover;
}

section.download {
    text-align: center;
    background: #c4962d1f;
    padding: 50px;
}

section.download h3 {
    color: #c4962d;
    margin-bottom: 36px;
    font-weight: bold;
}

.cart-totals.card {
    border-radius: 3px;
    margin: 50px 0;
    padding: 15px;
}

button.dropdown-item.checkout-button.p-2 {
    background: #d4a017;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
}

button.dropdown-item.checkout-button.p-2:hover {
    background: #bf9541;
}

.cart-totals-inner table {
    width: 100%;
}

.total-cll {
    margin: 18px 0;
    display: flex;
    justify-content: space-between;
}

.ourcart {
    width: 100%;
    margin: 50px 0;
}

.ourcart * {
    text-align: right;
}

tr.no-bor-top {
    padding: 10px 0 !important;
    height: 50px;
    border: none;
}

.ourcart thead {
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
}

img.full-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    margin: 10px 0;
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 100px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

span.step-icon {
    width: 70px;
    height: 70px;
    background: #cbcbcb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 90px;
}

span.step-icon.active {
    background: #bf9541;
}

.steps:after {
    content: "";
    position: absolute;
    height: 1px;
    background: #ddd;
    left: 50px;
    right: 50px;
    top: 46%;
    z-index: -1;
}

.addressh {
    display: flex;
    justify-content: space-between;
}

.addressh h3 {
    font-weight: bold;
    color: #bf9541;
}

.addressitem {
    display: flex;
    justify-content: space-between;
}

section.address {
    margin-bottom: 100px;
}

.btn.btn-primary.cs {
    background: #bf9541;
    border: none;
    padding: 15px 100px;
    margin-bottom: 100px;
    transition: all 0.3s ease-in-out;
}

.btn.btn-primary.cs:hover {
    background: #d4a017;
    color: #fff;
}

.checkout-box {
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 35px;
}

table {
    width: 100%;
}
@media (max-width: 1200px) {
    .home-slider .main-slider {
    }

    .cats .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    /* تخصيص التخطيط للأجهزة اللوحية */
    .cats .nav-tabs {
        display: block;
        text-align: center;
    }

    .cats .nav-tabs .nav-item {
        margin-bottom: 10px;
    }

    .cats .nav-tabs .nav-link {
        display: block;
        margin: 0 auto;
    }
.home-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
    .home-slider .slider-item img {
        width: 100%;
        height: auto;
    }

    .homecars .row {
        flex-direction: column;
        align-items: center;
    }

    .homecars .col-10 {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .intro span {
        font-size: 14px;
        text-align: center;
    }

    .about .container {
        text-align: center;
    }

    .about .col-12.col-md-6 {
        margin-bottom: 20px;
    }

    .about img {
        width: 100%;
        margin-bottom: 10px;
    }

    .cats .maincat a {
        margin-bottom: 20px;
    }

    .maincat .halfcat {
        width: 100%;
        margin-bottom: 20px;
    }

    .download .dlinks {
        text-align: center;
    }

    .download .dlinks img {
        width: 100px;
        margin: 10px;
    }
}

@media (max-width: 576px) {
    .intro span {
        font-size: 12px;
    }

    .homecars {
        margin-bottom: 20px;
    }

    .homecars .row {
        text-align: center;
    }

    .homecars .col-2 {
        width: 100%;
        text-align: center;
    }

    .homecars .col-10 {
        margin-top: 15px;
        font-size: 12px;
    }
}








/* General Styles */
.checkout-box h4, div#billing-form h4 {
    color: #bf9541;
}

.checkout-box tr {
    padding: 7px 0px;
}

.checkout-box tr * {
    border: none !important;
}

button.btn.btn-dark.btn-primary-hover.rounded-0.mt-6 {
    background: #bf9541;
    color: #fff;
    border: none;
    display: block;
    width: 100%;
    margin: 39px 0 0;
    padding: 15px;
    border-radius: 8px !important;
}

div#billing-form {
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 35px;
}

div#billing-form label {
    /* display: none; */
}

.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: #941a1d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 90px;
}

.float-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: #c4962d;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 90px;
    font-size: 18px;
    color: #fff;
}

span.cart-add {
    position: absolute;
    top: 0;
    width: 0;
    left: 41px;
    background: #c4962d;
    height: 80px;
    line-height: 80px;
    padding: 0;
    font-size: 16px;
    font-weight: bold;
    z-index: -1;
    border-radius: 0 90px 90px 0;
    transition: all .5s;
    overflow: hidden;
}

span.cart-add.opened {
    width: 300px;
    padding: 0 26px;
}

.o-d {
    border-radius: 15px;
    margin-bottom: 30px;
}

.o-d h3 {
    text-align: center;
    font-weight: bold;
    color: #c4962d;
}

.invoice .row {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 20px;
    margin-bottom: 20px;
    padding: 0 15px 20px;
}

.invoice .row:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.odd-d {
    width: 100%;
    direction: rtl;
    text-align: right;
    border-collapse: collapse;
    margin: 15px auto 100px;
    border: 1px solid #ddd;
}

.odd-d th, .odd-d td {
    padding: 10px;
    border: 1px solid #eaeaea;
    font-size: 14px;
}

.odd-d th {
    background-color: #f7f7f7;
    font-weight: bold;
    color: #333;
}

.odd-d tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.odd-d tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.odd-d tfoot td {
    font-weight: bold;
    background-color: #f9f9f9;
}

.form-control {
    padding: 15px;
    margin-top: 6px;
    margin-bottom: 25px;
}

.sidebar ul li {
    width: 100%;
}

.sidebar ul li a {
    color: #333;
    text-decoration: none;
}

.d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
    background: #f6efe0;
    flex-direction: row-reverse !important;
    justify-content: space-between;
    align-items: center !important;
}

.d-flex.flex-row.w-50.align-items-center.p-5.card-counter h3 {
    color: #a3957b;
}

.counter {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #a54443;
    color: #fff;
    border-radius: 5px;
}

.single-input-item {}

.form-field {
    border: 1px solid #ddd;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
}

.single-input-item {
    display: flex;
    flex-direction: column;
}

.login-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.login-container img {
    width: 100px;
    margin-bottom: 20px;
}

.login-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.login-container input[type="email"],
.login-container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.login-container .password-container {
    position: relative;
}

.login-container .password-container i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.login-container a {
    display: block;
    margin-bottom: 20px;
    color: #007bff;
    text-decoration: none;
    text-align: right;
}

.login-container a:hover {
    text-decoration: underline;
}

.login-container .btn-container {
    display: flex;
    justify-content: space-between;
}

.login-container button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-container .btn-login {
    background-color: #d4a017;
    color: #fff;
}

.login-container .btn-create {
    display: block;
    margin-bottom: 0;
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    background-color: #fff;
    color: #d4a017;
    border: 1px solid #d4a017;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .checkout-box h4, div#billing-form h4 {
        font-size: 18px;
    }

    .checkout-box tr {
        padding: 10px 0;
    }

    .float-cart {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .o-d h3 {
        font-size: 20px;
    }

    .odd-d th, .odd-d td {
        font-size: 12px;
    }

    .login-container {
        max-width: 100%;
        padding: 15px;
    }

    .login-container h2 {
        font-size: 22px;
    }

    .login-container button {
        width: 100%;
        margin-bottom: 10px;
    }

    .sidebar ul li {
        /* text-align: center; */
    }

    .form-control {
        padding: 12px;
    }

    .d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .counter {
        width: 40px;
        height: 40px;
    }

    .login-container .btn-create {
        width: 100%;
    }

    .cart-icon .cart-count {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .checkout-box h4, div#billing-form h4 {
        font-size: 16px;
    }

    .checkout-box tr {
        padding: 8px 0;
    }

    .float-cart {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    .o-d h3 {
        font-size: 18px;
    }

    .odd-d th, .odd-d td {
        font-size: 11px;
    }

    .login-container {
        max-width: 100%;
        padding: 10px;
    }

    .login-container h2 {
        font-size: 20px;
    }

    .login-container input[type="email"],
    .login-container input[type="password"] {
        font-size: 14px;
    }

    .login-container button {
        width: 100%;
        padding: 12px;
    }

    .d-flex.flex-row.w-50.align-items-center.p-5.card-counter {
        padding: 15px;
        flex-direction: column !important;
    }

    .counter {
        width: 40px;
        height: 40px;
    }
}


h1.section-name.text-center.mt-3.mb-3.mainshopteam {
    font-weight: bold;
    color: #952022;
    padding: 50px 0;
}

a.col-md-4.col-12.cat-item.aos-init.aos-animate {
    padding: 20px;
    text-align: center;
    text-decoration: none;
}

a.col-md-4.col-12.cat-item.aos-init.aos-animate h3 {
    text-decoration: none;
    color: #caa761;
}

.product-card {
    min-width: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    background: white;
    padding: 40px; 
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form  .form-title {
    color: #C4962D;
    margin-bottom: 30px; 
    font-weight: 500;
}

.contact-form  .form-group {
    margin-bottom: 20px; 
}

.contact-form  input,.contact-form  textarea {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
    text-align: right;
}

.contact-form  input[type="tel"] {
    direction: rtl;
    text-align: right;
}

.contact-form  input::placeholder,
.contact-form textarea::placeholder {
    text-align: right;
}

.contact-form textarea {
    min-height: 150px; 
    resize: vertical;
}

.contact-form input:focus,.contact-form  textarea:focus {
    border-color: #C4962D;
}

.contact-form .buttons {
    display: flex;
    gap: 15px; 
    margin-top: 30px;
}

.contact-form button {
    padding: 12px 25px; 
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px; 
    font-weight: 500;
    flex: 1;
}

.contact-form .btn-cancel {
    background-color: white;
    border: 1px solid #ddd;
    color: #333;
}

.contact-form .btn-submit {
    background-color: #C4962D;
    color: white;
}

.contact-form .btn-submit:hover {
    background-color: #b3861f;
}

.contact-form .btn-cancel:hover {
    background-color: #f5f5f5;
}

.navbar .login-button {

    display: block;
}





.breadcrumb_content {
    position: relative;
    z-index: 2;
    text-align: right;
    margin: 10px 0;
}

.breadcrumb_title {
    font-size: 48px;
    font-family: Montaga, serif;
    color: #fff;
    margin-bottom: 15px
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb_title {
        font-size: 40px
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb_title {
        font-size: 36px
    }
}

.breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 2px
}

.breadcrumb_list li {
    display: flex;
    color: #c4962d;
    gap: 2px;
    position: relative;
    font-size: 15px;
    font-weight: 600;
}

.breadcrumb_list li:not(:last-child):after {
    display: block;
    align-self: center;
    width: 12px;
    height: 1px;
    content: "|";
    transform: rotate(115deg);
    background-color: #333;
    color: transparent;
}

.breadcrumb_text {
    font-size: 14px;
    color: #fff;
    max-width: 560px;
    width: 100%;
    margin: 0 auto
}

.breadcrumb-about {
    padding: 340px 0 250px
}

.breadcrumb-about:after {
    background-color: #21212180
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .breadcrumb-about {
        padding: 190px 0 100px
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .breadcrumb-about {
        padding: 140px 0 80px
    }
}

@media only screen and (max-width: 767px) {
    .breadcrumb-about {
        padding: 120px 0 60px
    }
    
a.navbar-brand {
    display: none;
}

.aishi ul {
    flex-direction: row;
    width: auto !important;
    margin-top: 14px;
}

.search-icon {
    width: 100%;
    display: block;
}

.aishi {
    position: absolute;
    left: 35px;
    top: 0;
}
}
a {
    color: #952022;
}


.breadcrumb_content * {
    padding: 0;
}


.info-content:after {
    content: no-close-quote;
    position: absolute;
    background: url('../../b.png') ;
    width: 100%;
    height: 300px;
}
.welcome-container .main-title {
    font-family: revert;
    font-size: 70px;
    /* margin-top: -180px; */
}

section.about {
    overflow: hidden;
    padding-bottom: 0;
}

.info-section {
    background: #ffff;
}


.customtitlenew {
    background: url('../../l.png');
    background-size: contain;
    margin: 100px 0;
    text-align: center;
}

h2.customtitlenew2 {
    background: #bc9139;
    display: inline-block;
    padding: 15px;
    margin: 0;
    color: #fff;
    border-radius: 21px;
}

.content.bgbtm {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding: 0;
}

.content.bgbtm {
    width: auto;
    max-width: 100%;
    padding: 0;
    border-top: 1px solid #b27b00;
    margin: 100px;
}

.arabesque-decoration {
    background: url(../../ll.png);
    background-size: 100% !important;
    background-repeat: no-repeat;
    width: 39% !important;
}

footer.footer {
    padding-bottom: 130px;
    background: url('../../asset-files/imgs/Frame 36811.png');
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.footer-content {
    margin: 0 110px 259px !important;
}

.story-section {
    margin-bottom: 54px;
    padding-right: 27px;
}

footer.footer {
    padding-top: 100px;
    background-size: contain;
}

nav.navbar.bg-light {
    background: #fff !important;
}
.floor-tow{
    display: none;
}
.floor-tow {
    width: 100%;
    margin-top: 20px;
    gap: 20px;
}

@media (max-width: 1024px) {
    /* Styles for tablets and phones */
    .floor-tow{
        display: flex;
    }
    .hoho-in-mobile{
        display: none !important;
    }
  }


  button.navbar-toggler {
    padding: 0;
    border: none;
    margin-top: 8px;
}

nav.navbar.bg-light {
    border-bottom: 1px solid #d4a017;
}

.floor-tow {
    margin-bottom: 5px;
}

.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl {
    padding: 0;
}

nav.navbar.navbar-expand-lg.navbar-light.bg-light.navbar-text {
    background: url(../../u.png) !important;
}
.search-icon.fac-icon svg {
    height: 35px;
    top: 0;
}

/* div#billing-form {
    background: url(../../u.png) !important;
    background-repeat: no-repeat !important;
} */

.aishi {
    z-index: 99999;
}


.card-content {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: start;
    font-size: 14px;
}

.product-card.visible a:hover .card-label {
    background: #941a1d !important;
}
.card-content {
    flex-direction: column-reverse;
    justify-content: start;
    align-items: start;
}

.card-content h3 {
    color: #941a1d;
    font-size: 13px;
}
.product-new-card a h3{
    color: #941a1d !important;

}

p.price {
    color: #d4a017;
    font-size: 14px;
}

.pro-imags-nav .slick-slide {
    padding: 0 5px;
}

@media (min-width: 768px) {
    footer.footer{
        background-size: cover;
    }
}

.product-new-card {
    background: #fff !important;
    border: 1px solid #ddd;
}