section{
width: 90% !important;
margin: auto !important;
}
/* body , .s-product-card-content {
background: black;
color: white !important;
} */
 
/* *** */

#booking-fab {
position: fixed;
z-index: 50;
bottom: 6rem;
left: 2rem;
background: var(--color-primary);
color: #ffffff;
width: 56px;
height: 56px;
border-radius: 50%;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
font-size: 22px;
border: none;
cursor: pointer;
transition:
box-shadow 0.2s,
transform 0.2s;
}
#booking-fab:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
transform: scale(1.07);
}
#booking-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 9999;
align-items: center;
justify-content: center;
}
#booking-overlay.active {
display: flex;
}
#booking-modal {
background: #fff;
border-radius: 16px;
padding: 1.5rem;
width: 100%;
max-width: 400px;
margin: 1rem;
direction: rtl;
font-family: inherit;
max-height: 90vh;
overflow-y: auto;
}
.bk-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1.25rem;
}
.bk-header-title {
display: flex;
align-items: center;
gap: 10px;
font-size: 17px;
font-weight: 600;
color: var(--color-primary);
}
.bk-close-btn {
background: none;
border: none;
cursor: pointer;
color: #888;
font-size: 22px;
line-height: 1;
padding: 0;
}
.bk-close-btn:hover {
color: #333;
}
.bk-field {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 14px;
}
.bk-field label {
font-size: 13px;
color: #555;
}
.bk-field input,
.bk-field textarea {
width: 100%;
box-sizing: border-box;
border: 1px solid #ddd;
border-radius: 8px;
padding: 9px 12px;
font-size: 15px;
outline: none;
font-family: inherit;
color: #222;
transition: border-color 0.2s;
background: #fff;
}
.bk-field input:focus,
.bk-field textarea:focus {
border-color: var(--color-primary);
}
.bk-field textarea {
resize: vertical;
min-height: 80px;
}
.bk-error {
font-size: 13px;
color: #c0392b;
display: none;
margin-bottom: 10px;
}
.bk-submit {
width: 100%;
background: var(--color-primary);
color: #fff;
border: none;
border-radius: 10px;
padding: 12px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: opacity 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.bk-submit:hover {
opacity: 0.85;
}

/* **** */


/* ========================= */
::selection {
background-color: #2b2628; 
color: #CE5F66;          
}
::-moz-selection {
background-color: #2b2628;
color: #CE5F66;
}
/* ============================ */

::-webkit-scrollbar {
width: 10px;         
height: 10px;      
}
::-webkit-scrollbar-track {
background: #ffffff;    
}
::-webkit-scrollbar-thumb {
background: #2b2628;     
border-radius: 5px;    
border: 2px solid #ffffff; 
}
::-webkit-scrollbar-thumb:hover {
background: #2b2628;       
}
html {
scrollbar-color: #2b2628 #ffffff; 
scrollbar-width: thin;            
}

/* ***** */

/* ***الفواصل* */
section  > div > h2{
position: relative;
padding-bottom: 1rem ;
margin-bottom: 1rem ;
}
section  > div > h2::after{
content: "";
position: absolute;
bottom: 0.3rem;
left: 50%;
transform: translateX(-50%);
width: 4rem;
height: 0.1rem;
background-color: #ce5f66;
}
section  > div > h2::before  {
content: "";
position: absolute;
bottom: 0.15rem;
left: 50%;
transform: translateX(-50%);
width: 0.4rem;
height: 0.4rem;
border: 1px solid #ce5f66;
border-radius: 50%;
background-color: #fff;
z-index: 1;
}

/* **** */

custom-salla-product-card {
position: relative;
overflow: hidden;
border-radius: 0.9rem !important;
transition: all 0.5s ease;
padding: 1rem !important;
box-sizing: border-box; 
}
custom-salla-product-card::before,
custom-salla-product-card::after {
content: "";
position: absolute;
width: 2rem;
height: 2rem;
transition: all 0.4s ease;
pointer-events: none;
z-index: 2;
box-sizing: border-box;
}
custom-salla-product-card::before {
top: 0;
left: 0;
border-top: 2px solid #2b2628;
border-left: 2px solid #2b2628;
}
custom-salla-product-card::after {
bottom: 0;
right: 0;
border-bottom: 2px solid #ce5f66;
border-right: 2px solid #ce5f66;
}
custom-salla-product-card:hover::before,
custom-salla-product-card:hover::after {
width: 100%;
height: 100%;
}
custom-salla-product-card:hover {
transform: none; 
box-shadow: 0 8px 25px rgba(91, 80, 132, 0.25);
}
/* *** */