html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: 'Heebo', sans-serif;
}

    /* ======================================
   GLOBAL DIRECTION
====================================== */

@font-face {
    font-family: 'Didot LT Pro';
    src: url('../fonts/DidotLTPro-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Didot LT Pro';
    src: url('../fonts/DidotLTPro-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Didot LT Pro';
    src: url('../fonts/DidotLTPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Lateef Regular */
@font-face {
    font-family: 'Lateef';
    src: url('../fonts/Lateef-Regular.woff2') format('woff2'), url('../fonts/Lateef-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Lateef Bold */
@font-face {
    font-family: 'Lateef';
    src: url('../fonts/Lateef-Bold.woff2') format('woff2'), url('../fonts/Lateef-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Lateef Italic */
@font-face {
    font-family: 'Lateef';
    src: url('../fonts/Lateef-Italic.woff2') format('woff2'), url('../fonts/Lateef-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}


body {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    overflow: inherit !important;
    -webkit-text-size-adjust: 100%;
}
.menu{
  overflow: visible !important;
}
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* أو أي لون تحبه */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    #page-loader img {
        width: 100px; /* حجم الصورة */
        height: 100px;
        object-fit: contain;
        animation: spin 1s linear infinite; /* لو عايز حركة */
    }


html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
    font-family: "Readex Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing:0px;

}
html[dir="rtl"] .block-center .paragraph {
    margin-top:20px;
}



html[dir="rtl"] p, html[dir="rtl"] a, html[dir="rtl"] .text-subtitle, html[dir="rtl"] .nav-link, html[dir="rtl"] .text-menu {
    font-family: "Readex Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


html[dir="rtl"] .image-absolute {
    inset: auto -10% -6% auto;
}

html[dir="rtl"] .image-block-modular {
    padding-right: 0px;
}

html[dir="rtl"] .block-about {
    padding-left: 12%;
    padding-right: 0%;
}

html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4, html[dir="rtl"] h6 {
    font-family: "Scheherazade New", serif;
    line-height: 1.45 !important;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] p {
    direction: ltr;
    text-align: justify;
}

html[dir="ltr"] .block-center p {
    text-align: center;
}

/* ======================================
   HERO / GRID
====================================== */

html[dir="rtl"] .grid-hero,
html[dir="rtl"] .grid1 {
    direction: rtl;
}

html[dir="rtl"] .block-hero,
html[dir="rtl"] .contact-form {
    text-align: right;
}

/* ======================================
   HEADINGS & PARAGRAPHS
====================================== */


html[dir="rtl"] h2,
html[dir="rtl"] h3 {
    text-align: right;
}

html[dir="rtl"] p {
    text-align: justify;
}

html[dir="rtl"] .block-center p {
    text-align: center;
}

/* ======================================
   FORMS
====================================== */

html[dir="rtl"] input:not(#submit),
html[dir="rtl"] textarea {
    text-align: right;
    font-family: "Readex Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
}

    html[dir="rtl"] input::placeholder,
    html[dir="rtl"] textarea::placeholder {
        text-align: right;
        font-family: "Readex Pro", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        letter-spacing: 0px;
    }

html[dir="ltr"] input:not(#submit),
html[dir="ltr"] textarea {
    text-align: left;
}

/* spacing fix */
html[dir="rtl"] .text-field,
html[dir="rtl"] .w-input {
    padding-right: 14px;
    padding-left: 10px;
}

html[dir="ltr"] .text-field,
html[dir="ltr"] .w-input {
    padding-left: 14px;
}

/* ======================================
   BUTTONS
====================================== */

html[dir="rtl"] .submit-btn {
    align-self: flex-start;
}

html[dir="ltr"] .submit-btn {
    align-self: flex-end;
}



/* ======================================
   TOAST / NOTIFICATION
====================================== */

html[dir="rtl"] .custom-toast,
html[dir="rtl"] .toast {
    right: auto;
    left: 25px;
}

html[dir="ltr"] .custom-toast,
html[dir="ltr"] .toast {
    right: 25px;
}

/* ======================================
   SUCCESS / ERROR MESSAGES
====================================== */

.success-message,
.error-message {
    text-align: center;
}

/* ======================================
   OPTIONAL – GRID COLUMN FLIP
====================================== */

html[dir="rtl"] .w-layout-grid {
    direction: rtl;
}




@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.para-about{
    text-align:justify
}
.about-head {
    font-size:32px !important;
    line-height:1.2
}

.paragraph-hero.fst-italic {
    font-style: italic;
    font-family: 'Didot LT Pro';
    max-width: 700px;
    margin-bottom: 40px;
    margin-top: 25px;
    font-size: 0.9rem;
}

.paragraph.fst-italic {
    font-style: italic;
    font-family: 'Didot LT Pro';
    max-width: 700px;
    margin-bottom: 40px;
    margin-top: 25px;
    font-size: 1.1rem;
}

.paragraph-hero.margin {

    max-width: 700px;
    margin-bottom: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
}
.head-of-cat {
    font-family: 'Didot LT Pro';
    text-align: left;
    padding: 2rem 0rem 2rem 0rem;
    font-size: 2rem;
    color: black;
}

.grid-hero:has(>.fst-italic) {
    grid-row-gap: 0px !important;
}

.animate-on-scroll, .line,
 .dish-card,.heading-menu,.block-footer,
.grid-navbar, .dish-text,
h1, h2, h3, h4:not(.dish-name), h5, h6:not(.heading-footer), p:not(.dish-desc), .paragraph-hero,
.image-menu, .w-button, .feature, .dish-price {
    opacity: 0;
    transform: translateY(60px);
    transition: none !important;
}
.image,.image-modular
{
    opacity: 0;
    transform: translateY(60px);
    transition: none !important;
}
.animate-on-scroll, .line, .dish-card, .heading-menu,
.block-footer, .grid-navbar, .dish-text, h1, h2, h3, h4:not(.dish-name), h5,
h6:not(.heading-footer), p:not(.dish-desc), .paragraph-hero, .image-menu,
.w-button, .feature, .dish-price, .image, .image-modular,
.image-block img, .image-absolute img, .image-hero {
    will-change: transform, opacity;
    backface-visibility: hidden; /* hack إضافي ضد الفليكر في Chrome/Safari */
 
}



/* اللي مش عايزين نأثر عليه (زي الـ navbar والـ logo) نستثنيه */
.navbar, .logo, .nav-button, .menu-button, .w-nav-brand {
    opacity: 1 !important;
    transform: none !important;
}





h1, h2, h3, .title {
    font-family: 'Didot LT Pro', serif;
    font-weight: normal;     /* Didot البولد بتاعه خفيف أصلًا */
    letter-spacing: 2px;     /* عشان يطلع فخم */
    text-transform: uppercase;
}





/* منع أي سكرول أفقي للصفحة */
body {
    overflow-x: hidden;
}


.filters-scroll {
    overflow-x: auto; /* يسمح بالتمرير أفقياً */
    -webkit-overflow-scrolling: touch; /* smooth scroll للموبايل */
    scrollbar-width: none; /* Firefox */
}

.filters-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Sticky Header */
.menu-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    padding: 30px 120px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#menu-header-placeholder {
    height: 0; /* سيتم ضبطه بالـ JS */
}




/* بعد sticky */
.menu-header.is-stuck {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

    .menu-header.is-stuck {
        background-color: white;
        box-shadow: 0 1px 6px rgba(0,0,0,0.08);
        padding: 30px 10px 10px;
       
    }
/* Title */
.menu-title {
    font-size: 22px;
    font-weight: 700;
}

/* Row containing filters + search */
.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
  
}

/* SCROLLABLE BUTTONS AREA */
.filters-scroll {
    flex: 1;
    overflow: hidden;
}

/* Actual scroll container */
.filters-content {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 5px;
    flex-wrap: wrap;
    justify-content: center;
    pointer-events: none;
  
}

.section-hero1 .content {
    padding:50px;
}

.section-hero1 {
    background-color: #f2f2f2;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}
.menu-header.is-stuck .menu-row .filters-scroll .filters-content {
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: fit-content;
    width: max-content;
    white-space: nowrap;
  
}

.menu-header.is-stuck .menu-row .filters-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    transition: all 0.6s ease;
}



.filters-content {
    scrollbar-width: none; /* Firefox */
}

/* Buttons */
.filter-btn {
    padding: 8px 16px;
    border: 1px solid #0a0a0a;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto;
 
}

.menu-row .search-box {
    display: none;
}
.menu-header.is-stuck .menu-row .search-box {
    display:block;
}
.menu-header.is-stuck .menu-row .filters-scroll .filters-content .filter-btn {
    padding: 2px 10px;
    border: 1px solid black;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    color: black;
  
}
/* Search box */
.search-box {
    flex-shrink: 0;
}

.search-box input {
    height: 40px;
    width: 160px;
    padding: 0 40px 0 15px;
    border: 1px solid #aaa;
    border-radius: 24px;
}
.search-box {
    position: relative;
    
}

.search-box input {
       
    
    font-size: 14px;
        
}

.search-box input::placeholder {
    color: #999;
}

    /* إضافة أيقونة البحث */
.search-box input {
    background: url('https://cdn-icons-png.flaticon.com/512/622/622669.png') no-repeat;
    background-position: right 8px center;
    background-size: 16px 16px;
}

.menu-header.is-stuck .menu-row .filters-scroll .filters-content .filter-btn:hover {
    background: #f8f8f8;
}

.menu-header.is-stuck .menu-row .filters-scroll .filters-content .filter-btn.active {
    background: #000;
    color: #fff;
}

[data-animation="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
}

/* Hover Scale */
[data-animation="hover-scale"] {
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: scale(1);
}

.menu h3 {
    font-size: 45px;
    font-family: 'Didot LT Pro', serif;
    text-transform:capitalize;
    
}



.nav-menu.w-nav-menu {
  display: none;              
  transform: translateY(-100px);   
}


.overflow-link {
  overflow: hidden;
  transition: height 0.5s ease;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  vertical-align: baseline;
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

[hidden], template {
  display: none;
}

a {
  background-color: #0000;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type="button"], input[type="reset"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}



[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: webflow-icons !important;
}

.w-icon-slider-right:before {
  content: "î˜€";
}

.w-icon-slider-left:before {
  content: "î˜";
}

.w-icon-nav-menu:before {
  content: "î˜‚";
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "î˜ƒ";
}

.w-icon-file-upload-remove:before {
  content: "î¤€";
}

.w-icon-file-upload-icon:before {
  content: "î¤ƒ";
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  color: #333;
  background-color: #fff;
  min-height: 100%;
  margin: 0;

  font-size: 14px;
  line-height: 20px;
}

img {
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
}

/* html.w-mod-touch * {
  background-attachment: scroll !important;
} */

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before, .w-clearfix:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  color: #fff;
  line-height: inherit;
  cursor: pointer;
  background-color: #3898ec;
  border: 0;
  border-radius: 0;
  padding: 9px 15px;
  text-decoration: none;
  display: inline-block;

}

input.w-button {
  -webkit-appearance: button;
}



.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

.w-webflow-badge, .w-webflow-badge > img {
  box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  box-shadow: unset;
  transform: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  -webkit-text-decoration: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
  transition: unset;
}

.w-webflow-badge {
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 0 0 1px #0000001a, 0 1px 3px #0000001a;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  color: #aaadb0 !important;
  overflow: unset !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: fixed !important;
  inset: auto 12px 12px auto !important;
  transform: none !important;
}

.w-webflow-badge > img {
  position: unset;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
  display: inline-block !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  font-size: 32px;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin: 0 0 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0 0 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before, .w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  padding: 0;
  position: relative;
}

.w-video iframe, .w-video object, .w-video embed {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

button, [type="button"], [type="reset"] {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  text-align: center;
  background-color: #ddd;
  padding: 20px;
  display: none;
}

.w-form-fail {
  background-color: #ffdede;
  margin-top: 10px;
  padding: 10px;
  display: none;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.w-input, .w-select {
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.w-input::placeholder, .w-select::placeholder ,.fake-placeholder{
  color: #999;
}

.w-input:focus, .w-select:focus {
  border-color: #0000;
  outline: 0;
}

.w-input[disabled], .w-select[disabled], .w-input[readonly], .w-select[readonly], fieldset[disabled] .w-input, fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled), .w-select[disabled]:not(.w-input-disabled), .w-input[readonly], .w-select[readonly], fieldset[disabled]:not(.w-input-disabled) .w-input, fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eee;
}

textarea.w-input, textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  cursor: pointer;
  margin-bottom: 0;
  font-weight: normal;
  display: inline-block;
}

.w-radio {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-radio:before, .w-radio:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  float: left;
  margin: 3px 0 0 -20px;
  line-height: normal;
}

.w-file-upload {
  margin-bottom: 10px;
  display: block;
}

.w-file-upload-input {
  opacity: 0;
  z-index: -100;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.w-file-upload-default, .w-file-upload-uploading, .w-file-upload-success {
  color: #333;
  display: inline-block;
}

.w-file-upload-error {
  margin-top: 10px;
  display: block;
}

.w-file-upload-default.w-hidden, .w-file-upload-uploading.w-hidden, .w-file-upload-error.w-hidden, .w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

.w-file-upload-file {
  background-color: #fafafa;
  border: 1px solid #ccc;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  display: flex;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  cursor: pointer;
  width: auto;
  height: auto;
  margin-top: 3px;
  margin-left: 10px;
  padding: 3px;
  display: block;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  color: #ea384c;
  padding: 2px 0;
  display: inline-block;
}

.w-file-upload-info {
  padding: 0 12px;
  line-height: 38px;
  display: inline-block;
}

.w-file-upload-label {
  cursor: pointer;
  background-color: #fafafa;
  border: 1px solid #ccc;
  margin: 0;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
}

.w-icon-file-upload-icon, .w-icon-file-upload-uploading {
  width: 20px;
  margin-right: 8px;
  display: inline-block;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.w-container:before, .w-container:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before, .w-row:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333%;
}

.w-col-2 {
  width: 16.6667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.3333%;
}

.w-col-5 {
  width: 41.6667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.3333%;
}

.w-col-8 {
  width: 66.6667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.3333%;
}

.w-col-11 {
  width: 91.6667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333%;
  }

  .w-col-medium-2 {
    width: 16.6667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.3333%;
  }

  .w-col-medium-5 {
    width: 41.6667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.3333%;
  }

  .w-col-medium-8 {
    width: 66.6667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.3333%;
  }

  .w-col-medium-11 {
    width: 91.6667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

.block-hero.about-header h1 {
    line-height: 1.2;
    font-size: 55px
}

@media screen and (max-width: 767px) {
  .w-hidden-main, .w-hidden-medium {
    display: inherit !important;
  }
    .image-block-modular {
        margin-top: 0px !important;
    }
    .block-hero.about-header h1 {
        line-height:1.2;
        font-size:37px
    }

    #sofleurabout {
        grid-area: 2 / 1 / 5 / 4 !important;
        margin-top: 11rem;
    }

    .paragraph {
        max-width: 600px;
        margin-bottom: 38px;
        font-size: 0.8rem !important;
        color: black;
        line-height: 1.6;
        text-align: justify;
    }
    .heading{
        font-size:22px !important;
    }

    .menu-header.is-stuck .menu-row .filters-scroll .filters-content {
        justify-content: flex-start;
    }
    .menu-header.is-stuck .menu-row .filters-scroll {
      
        position: relative;
        top: 40px;
    }
    .menu-header.is-stuck .menu-row {
        display: block;
    }

    .menu-header {
        position: sticky;
        top: 0;
        z-index: 50;
        width: 100%;
        padding: 30px 40px 10px;
    }
        .search-box {
        position: relative;
        top: -50px;
    }
     .search-box input {
         width:100%
     }

        .w-hidden-small {
            display: none !important;
        }

  .w-row, .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333%;
  }

  .w-col-small-2 {
    width: 16.6667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.3333%;
  }

  .w-col-small-5 {
    width: 41.6667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.3333%;
  }

  .w-col-small-8 {
    width: 66.6667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.3333%;
  }

  .w-col-small-11 {
    width: 91.6667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
    .heading{
        font-size:27px;
    }
    .paragraph {
        max-width: 600px;
        margin-bottom: 38px;
        font-size: 1.1rem;
        color: black;
        line-height: 1.6;
        text-align: justify;
    }
    #sofleuraboutpic1 {
        order: -9999;
        grid-area: span 1 / span 1 / span 1 / span 1 !important;
    }

    #sofleuraboutpic2 {
        grid-area: span 1 / span 1 / span 1 / span 1 !important;
    }

    #sofleurabout {
        order: -100;
        margin-top:0rem;
        grid-area: span 1 / span 1 / span 1 / span 1 !important;
    }

  .w-hidden-main, .w-hidden-medium, .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333%;
  }

  .w-col-tiny-2 {
    width: 16.6667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.3333%;
  }

  .w-col-tiny-5 {
    width: 41.6667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.3333%;
  }

  .w-col-tiny-8 {
    width: 66.6667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.3333%;
  }

  .w-col-tiny-11 {
    width: 91.6667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  vertical-align: top;
  text-align: center;
  background: #fff;
  border: 1px solid #758696;
  border-radius: 3px;
  width: 28px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  text-align: center;
  color: #999;
  font-family: serif;
  font-size: 15px;
  line-height: 12px;
  position: relative;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  display: block;
  position: relative;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before, .w-widget-twitter-count-shim:not(.w--vertical):after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-width: 4px;
  border-color: #75869600 #5d6c7b #75869600 #75869600;
  margin-top: -4px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -10px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-width: 4px;
  border-color: #fff0 #fff #fff0 #fff0;
  margin-top: -4px;
  margin-left: -8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-top: -5px;
  margin-left: -9px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before, .w-widget-twitter-count-shim.w--vertical:after {
  content: " ";
  pointer-events: none;
  border: solid #0000;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: 50%;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-width: 5px;
  border-color: #5d6c7b #75869600 #75869600;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-width: 4px;
  border-color: #fff #fff0 #fff0;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  color: #fff;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.w-background-video > video {
  object-fit: cover;
  z-index: -100;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
  inset: -100%;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  -webkit-appearance: none;
  display: none !important;
}

.w-background-video--control {
  background-color: #0000;
  padding: 0;
  position: absolute;
  bottom: 1em;
  right: 1em;
}

.w-background-video--control > [hidden] {
  display: none !important;
}

.w-slider {
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  background: #ddd;
  height: 300px;
  position: relative;
}

.w-slider-mask {
  z-index: 1;
  white-space: nowrap;
  height: 100%;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-slide {
  vertical-align: top;
  white-space: normal;
  text-align: left;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.w-slider-nav {
  z-index: 2;
  text-align: center;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  height: 40px;
  margin: auto;
  padding-top: 10px;
  position: absolute;
  inset: auto 0 0;
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  font-size: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
  padding: .2em .5em;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px #3336;
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: #2226;
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  cursor: pointer;
  background-color: #fff6;
  width: 1em;
  height: 1em;
  margin: 0 3px .5em;
  transition: background-color .1s, color .1s;
  display: inline-block;
  position: relative;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0 0 0 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left, .w-slider-arrow-right {
  cursor: pointer;
  color: #fff;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  width: 80px;
  margin: auto;
  font-size: 40px;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.w-slider-arrow-left [class^="w-icon-"], .w-slider-arrow-right [class^="w-icon-"], .w-slider-arrow-left [class*=" w-icon-"], .w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus, .w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left, .w-icon-slider-right {
  width: 1em;
  height: 1em;
  margin: auto;
  inset: 0;
}

.w-slider-aria-label {
  clip: rect(0 0 0 0);
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  text-align: left;
  z-index: 900;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: relative;
}

.w-dropdown-btn, .w-dropdown-toggle, .w-dropdown-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  white-space: nowrap;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  position: relative;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding-right: 40px;
  display: inline-block;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  width: 1em;
  height: 1em;
  margin: auto 20px auto auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.w-dropdown-list {
  background: #ddd;
  min-width: 100%;
  display: none;
  position: absolute;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  color: #222;
  padding: 10px 20px;
  display: block;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

.w-lightbox-backdrop {
  cursor: auto;
  letter-spacing: normal;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  color: #fff;
  text-align: center;
  z-index: 2000;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: #000000e6;
  outline: 0;
  font-family: Helvetica Neue, Helvetica, Ubuntu, Segoe UI, Verdana, sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.2;
  list-style: disc;
  position: fixed;
  inset: 0;
  -webkit-transform: translate(0);
}

.w-lightbox-backdrop, .w-lightbox-container {
  -webkit-overflow-scrolling: touch;
  height: 100%;
  overflow: auto;
}

.w-lightbox-content {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.w-lightbox-view {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: absolute;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

.w-lightbox-group, .w-lightbox-group .w-lightbox-view, .w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame, .w-lightbox-view:before {
  vertical-align: middle;
  display: inline-block;
}

.w-lightbox-figure {
  margin: 0;
  position: relative;
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

.w-lightbox-img {
  width: auto;
  max-width: none;
  height: auto;
}

.w-lightbox-image {
  float: none;
  max-width: 100vw;
  max-height: 100vh;
  display: block;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #0006;
  padding: .5em 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-lightbox-embed {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}



.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #c8c8c8;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}




.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}

.w-tabs {
  position: relative;
}

.w-tabs:before, .w-tabs:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  vertical-align: top;
  text-align: left;
  cursor: pointer;
  color: #222;
  background-color: #ddd;
  padding: 9px 30px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-tab-link.w--current {
  background-color: #c8c8c8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  display: block;
  position: relative;
  overflow: hidden;
}

.w-tab-pane {
  display: none;
  position: relative;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}

.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  background-color: #ddd;
  padding: 10px;
}

.w-dyn-hide, .w-dyn-bind-empty, .w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

.w-code-component > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

:root {
    --background-b: #e9dfcf;
    --background-b1: #f2f2f2;
    --paragraphs: #3e2e1cb8;
    --heading: black;
    --accent-a: #a79183;
    --background-a: #f3e8d8;
    --border: #707070;
    --light: #f3e8d8;
    --shadow: #b0a59680;
    --dark: #777850;
    --accent-b: #308d87;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--background-b1);
  color: var(--paragraphs);
  flex-direction: column;
 
  font-size: 18px;
  line-height: 170%;
  display: flex;
}

h1 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Forum, sans-serif;
  font-size: 85px;
  font-weight: 400;
  line-height: 88%;
}

h2 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;

  font-family: Forum, sans-serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 90%;
}

h3 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 22px;
  font-family: Forum, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 93%;
}
.heading {
    font-size: 37px;
    font-family: 'Didot LT Pro', serif;
    text-transform:capitalize;
    line-height:1.1;
}

h4 {
    color: var(--heading);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 22px;
    font-family: Forum, sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 96%;
}

h5 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 18px;
  font-family: Forum, sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 100%;
}

h6 {
  color: var(--heading);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 14px;
  font-family: Forum, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 104%;
}

p {
  margin-bottom: 30px;
}

a {
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 36px;
}

li {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 7px;
}

strong {
  color: var(--heading);
  font-weight: 600;
}

em {
  font-style: italic;
}

blockquote {
  border-left: 2px solid var(--accent-a);
  color: var(--heading);
  margin-bottom: 30px;
  margin-left: 18px;
  padding: 0 24px;
  font-size: 20px;
  font-style: italic;
  line-height: 170%;
}

figure {
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
  overflow: hidden;
}

figcaption {
  background-color: var(--background-a);
  text-align: center;
  margin-top: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
  line-height: 160%;
}

.link {
  border-bottom: 2px solid var(--accent-a);
  color: var(--heading);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.link:hover {
  color: var(--accent-a);
}

.rich-text-block {
  text-align: left;
  width: 100%;
  max-width: 720px;
}

.rich-text-block a {
  border-bottom: 2px solid var(--accent-a);
  color: var(--heading);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.rich-text-block a:hover {
  color: var(--accent-a);
}

.mb-3
{
  margin-bottom: 2rem;
  width:60px;
  height:60px;
}

.mb-31 {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    width: 60px;
    height: 60px;
}

.buttons-res {
    display: flex;
    gap: 1rem;
    width: -webkit-fill-available;
    justify-content: center;
}
.section-hero {
    background-color: #f2f2f2;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}
.section-hero h1{
  font-family: 'Didot LT Pro', serif;
      text-transform: capitalize;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-sec h2 {
  font-family: 'Didot LT Pro', serif;
      text-transform: capitalize;
}

.about-sec p, .section-hero p ,kitchen p{
  font-family: 'Heebo', sans-serif ;
     
}

.kitchen h2{
  font-family: 'Didot LT Pro', serif;
      text-transform: capitalize;
     
}
.block-center h2 {
    font-family: 'Didot LT Pro', serif;
}
.section-footer {
    background-color: #ffffff;
}

.mt-5 {
    margin-top: 3rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 1rem;
}

.about-button{
  background-color: #f2f2f2 !important;
   font-family: 'Didot LT Pro', serif;
   color: black;
    text-align: center;
    letter-spacing: 2.4px;
   
    border-radius: 20px !important;
    padding: 20px 19px  !important;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 130%;

}

.shape {
   
    background-color: var(--background-b);
    border-top-left-radius: 50vw;
    border-top-right-radius: 50vw;
    width: 50%;
    height: 180vh;
    position: relative;
    overflow: hidden;
}

.image-shape {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    inset: 0%;
    border-top-left-radius: 50vw;
    border-top-right-radius: 50vw;
    background-position: 50%;
    background-image: url("../images/home/wdja75x8asj7dj1hmmec.avif");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* fixed على الديسكتوب */
    background-attachment: fixed;
}


@media (max-width: 768px) { 
    .image-shape {
        background-attachment: scroll; 
        background-position: center center; 
    }
}

/* WebP fallback */
@supports not (background-image: url("../images/home/wdja75x8asj7dj1hmmec.avif")) {
    .image-shape {
        background-image: url("../images/home/wdja75x8asj7dj1hmmec.webp");
    }
}

/* PNG fallback */
@supports not (background-image: url("../images/home/wdja75x8asj7dj1hmmec.webp")) {
    .image-shape {
        background-image: url("../images/home/IMG_9516.jpg");
    }
}



.navbar {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.grid-navbar {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 20px 28px;
}

.block-navbar {
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  padding: 10px 22px;
  display: flex;
}

.logo {
  height: 50px;
}

.menu-button {
  border: 1px solid #0000;
  border-radius: 80px;
  padding: 14px 22px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.menu-button:hover {
  border-color: var(--border);
}

.menu-button.w--open {
  background-color: #0000;
}

.text-menu {
  color: var(--heading);
  text-align: center;

  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.line-horizontal {
  background-color: var(--border);
  flex: 1;
  min-width: 24px;
  height: 1px;
}

.line-horizontal.light {
  background-color: #f3e8d84d;
}

.circle {
  border: 1px solid var(--border);
  border-radius: 100%;
  flex: none;
  width: 7px;
  height: 7px;
}

.circle.light {
  border-color: #f3e8d84d;
}

.nav-line {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 28px;
  margin-right: 28px;
  display: flex;
}

.grid-hero {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  flex: 1;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  min-height: 80vh;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

.grid-hero.min-h-45vh {
  min-height: 45vh;
}

.block-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 920px;
  display: flex;
}

.line {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.line-vertical {
  background-color: var(--border);
  flex: 1;
  width: 1px;
  min-height: 40px;
}

.circle-large {
  border: 1px solid var(--border);
  border-radius: 100%;
  flex: none;
  width: 13px;
  height: 13px;
  margin-bottom: 5px;
}

.circle-large.top-margin {
  margin-top: 5px;
  margin-bottom: 0;
}

.circle-large.center {
  margin-bottom: 0;
  margin-left: 5px;
  margin-right: 5px;
}

.heading-hero.margin {
  margin-bottom: 0;
}

.paragraph-hero {
  max-width: 570px;
  margin-bottom: 40px;
  margin-top:25px;
  font-size:1.1rem;
  color:black;
  text-align:center !important;
}

.paragraph-hero.margin {
  margin-bottom: 0;
}

.nav-button {
  color: var(--heading);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 80px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-button:hover {
  border-color: var(--border);
}

.button {
    border: 2px solid var(--heading);
    color: var(--heading);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    background-color: #0000;
    border-radius: 20px;
    padding: 16px 26px;
    font-size: 12px;
    font-weight: 600;
    line-height: 130%;
    width: 22%;
    transition: color .4s cubic-bezier(.25, .46, .45, .94), background-color .4s cubic-bezier(.25, .46, .45, .94), border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.button:hover {
  border-color: var(--accent-a);
  background-color: var(--accent-a);
  color: var(--light);
}

.button.small {
  padding: 13px 21px;
}

.nav-menu {
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: #f2f2f2;
  position: fixed;
  inset: 0%;
}

.grid-menu {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
}

.menu-links {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
    color: var(--heading);
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    font-family: "Forum", serif;
    font-size: 3.5vw;
    line-height: 100%;
    transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.nav-link:hover {
  color: var(--accent-a);
}

.nav-link.w--current {
  color: var(--heading);
}

.nav-link.w--current:hover {
  color: var(--accent-a);
}

.menu-button-close {
  border: 1px solid #0000;
  border-radius: 80px;
  padding: 14px 22px;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
  position: absolute;
  inset: 32px 28px auto auto;
}

.menu-button-close:hover {
  border-color: var(--border);
}

.menu-button-close.w--open {
  background-color: #0000;
}

.overflow-link {
  overflow: hidden;
}

.section {
  flex-direction: column;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 130px;
  display: flex;
}

.section.background {
  background-color: var(--background-a);
}

.content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
 
}

.content.slim {
  text-align: left;
  max-width: 820px;
  display: block;
}

.grid {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
}

.block {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
}

.jelly-float {
    transform: translateY(var(--y, 0px)) !important;
    transition: none !important;
    will-change: transform;
}

#sofleuraboutpic1 {
    grid-area: 1 / 1 / 3 / 5;
}
#sofleuraboutpic2 {
    grid-area: 2 / 4 / 4 / 7;
}
#sofleurabout {
    grid-area: 3 / 1 / 5 / 4;
}

.paragraph {
    max-width: 600px;
    margin-bottom: 38px;
    font-size: 1.1rem;
    color: black;
}

.paragraph.max-w-430 {
  max-width: 430px;
}

.paragraph.margin {
  margin-bottom: 0;
}

.subtitle {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.line-subtitle {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-subtitle {
  color: var(--heading);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-left: 14px;
  margin-right: 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
}

.text-subtitle.light {
  color: var(--light);
}

.button-accent {
  background-color:white;
  color:black;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 22px 42px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  cursor:pointer;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

    .button-accent:hover ,.button:hover{
        background-color: #000 !important;
        color:white;
        border-color:#000;
    }

.button-accent.margin {
  margin-top: 16px;
}

.button-accent.small {
  padding: 15px 23px;
}

.grid-features {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  width: 100%;
}

.feature {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}


    .feature h4 {
        font-family: 'Didot LT Pro', serif;
        font-size: 40px;
        font-weight: 350;
      
        line-height: 1.4;
    }
.paragraph-feature {
    max-width: 320px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 170%;
}

.number {
  height:200px;
  margin-bottom: -50px;
}
.feature:first-child img {
    height: 170px;
    margin-bottom: -20px;
}

.submit-btn:hover{
    background-color:black;
    color:white;
}

.image-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.image-grid img {
  width: 100%;
  height: 350px; 
  object-fit: cover; 
  border-radius: 20px;
}

/* موبايل */
@media (max-width: 767px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

    .button {
        border: 2px solid var(--heading);
        color: var(--heading);
        text-align: center;
        letter-spacing: 1.4px;
        text-transform: uppercase;
        background-color: #0000;
        border-radius: 20px;
        padding: 11px 14px;
        font-size: 9px;
    }
}

/* تابلت */
@media (min-width: 768px) and (max-width: 1023px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }

        .image-grid img {
            height:auto;
        }
}

.line-space {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 130px;
  margin-bottom: 130px;
  display: flex;
}

.line-space.margin {
  margin-bottom: 0;
}

.line-space.footer {
  margin-top: 0;
  margin-bottom: 0;
}

.line-space.short {
  margin-top: 80px;
  margin-bottom: 80px;
}

.grid-modular {
  grid-column-gap: 10px;
  grid-row-gap: 22px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.block-modular {
  z-index: 50;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.block-center {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 780px;
  display: flex;
}

.image-block {
  width: 100%;
  position: relative;
  overflow: visible !important;
}

.image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
 
}

.image.shadow {
  box-shadow: 0 80px 120px 0 var(--shadow);
}

.image-block-modular {
  justify-content: flex-end;
  align-items: flex-start;

  display: flex;
  position: relative;
}

.image-modular {
  object-fit: cover;
  border-radius: 10px;
  width: 60%;
  height: 100%;
}

.slider {
  background-color: #0000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  margin-top: 75px;
  display: flex;
  overflow: hidden;
}

.mask {
  width: 100%;
  max-width: 1200px;
  padding-left: 70px;
  padding-right: 70px;
  overflow: visible;
}

.slide {
  margin-right: -54px;
}

.image-slide {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.slide-nav {
  display: none;
}

.right-arrow, .left-arrow {
  width: 40%;
}

.collection-list-wrapper {
  width: 100%;
  margin-top: 25px;
}

.collection-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.collection-item {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.link-image-blog {
  border-radius: 10px;
  width: 100%;
  transition: box-shadow .5s cubic-bezier(.25, .46, .45, .94);
  overflow: hidden;
}

.link-image-blog:hover {
  box-shadow: 0 60px 80px -10px var(--shadow);
}

.image-blog {
  object-fit: cover;
  width: 100%;
  height: 230px;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.image-blog:hover {
  transform: scale(1.07);
}

.block-blog {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.date-blog {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  line-height: 130%;
}

.link-heading-blog {
  margin-top: 12px;
  text-decoration: none;
}

.heading-blog {
  margin-bottom: 0;
}

.paragraph-summary {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 170%;
}

.arrow {
  width: 24px;
  height: 24px;
  display: block;
}

.link-arrow {
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 0 var(--accent-a);
  border-radius: 50%;
  margin-top: 34px;
  padding: 10px;
  transition: box-shadow .4s cubic-bezier(.25, .46, .45, .94), border-color .4s cubic-bezier(.25, .46, .45, .94);
}

.link-arrow:hover {
  border-color: var(--accent-a);
  box-shadow: inset 0 0 0 3px var(--accent-a);
}

.empty-state {
  text-align: center;
  background-color: #bf344e26;
  border-radius: 10px;
  padding: 14px;
}

.text-empty {
  color: var(--accent-a);
}

.section-footer {
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.text-sub-footer {
  color: var(--paragraphs);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  max-width: 1200px;
  font-size: 12px;
  font-weight: 500;
  line-height: 130%;
}

.link-sub-footer {
  color: var(--heading);
  text-decoration: none;
  transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.link-sub-footer:hover {
  color: var(--accent-a);
}

.newsletter {
  background-color: var(--dark);
  border-radius: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 85px 10%;
  display: flex;
}

.grid-footer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
  width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.block-footer {
  flex-direction: column;
 
  align-items: center;

  display: flex;
}

.heading-footer {
  margin-bottom: 16px;
}

.link-footer {
    color: #7a7a7a !important;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 130%;
    text-decoration: none;
    transition: color .3s cubic-bezier(.25, .46, .45, .94);
}

.link-footer:hover {
  color: var(--heading) !important;
}

.heading-newsletter {
  max-width: 780px;
}

.heading-newsletter.light {
  color: var(--light);
}

.form-block-newsletter {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  margin-bottom: 0;
}

.form-newsletter {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1.7fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading-hero {
    font-family: 'Didot LT Pro';
    font-size:60px;
    margin-bottom:10px;
    text-align:center;
}
.text-field {
    color: var(--heading);
    letter-spacing: normal;
    text-transform: uppercase;
    border: 1px solid #0000;
    border-radius: 20px;
    height: 60px;
    margin-bottom: 0;
    padding: 14px 28px;
    font-size: 14px;
    line-height: 130%;
    transition: border-color .3s cubic-bezier(.25, .46, .45, .94);
}

.text-field:focus {
  border-color: var(--border);
}

.text-field::placeholder {
  color: var(--paragraphs);
}

.error-message {
  background-color: #bf344e26;
  border-radius: 10px;
  margin-top: 20px;
  padding: 15px 25px;
}

.error-message.dark {
  background-color: #af1431;
}

.text-error {
  color: var(--accent-a);
  font-size: 16px;
  line-height: 170%;
}

.text-error.dark {
  color: var(--light);
}

.success-message {
  background-color: #29938d26;
  border-radius: 10px;
  padding: 15px 25px;
}

.success-message.dark {
  background-color: #f3e8d81a;
}

.text-success {
  color: var(--accent-b);
  font-size: 16px;
  line-height: 170%;
}

.text-success.dark {
  color: var(--light);
}

.nav-block-button {
  grid-column-gap: 6px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-absolute {
  z-index: 10;
  width: 60%;
  height: 60%;
  position: absolute;
  inset: auto auto -6% -10%;
}

.image-modular-absolute {
  z-index: 10;
  width: 60%;
  position: absolute;
  inset: auto auto -15% -6%;
}

.section-top {
  background-image: url("https://cdn.prod.website-files.com/67bcaa3190819435d319a786/67bcaa3190819435d319a7bf_5b622e7a968506b7207619f1529e5af4_glow_top_red.svg"), url("https://cdn.prod.website-files.com/67bcaa3190819435d319a786/67bcaa3190819435d319a7c0_8ca3b9e65c702912d83451ff38f7188a_glow_top_green.svg");
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.section-first {
    flex-direction: column;
    align-items: center;
    padding-bottom: 90px;
    padding-top: 90px;
    display: flex;
}

.section-second {
    background-color:white;
    flex-direction: column;
    align-items: center;
    padding-bottom: 90px;
    padding-top:90px;
   display: flex;
}
    .section-second .dish-card {
        background-color:var(--background-b1);
    }
    .section-second .heading-menu {
        background-color: white;
        border-radius: 50%;
        margin-bottom: 0;
        padding: 50px 60px;
        position: absolute;
        bottom: -90px;
    }

    .menu {
        text-align: center;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        margin-bottom: 115px;
        display: flex;
        position: relative;
    }

.image-menu {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;

}

.section-first.Most-Liked  .heading-menu {
    background-color: var(--background-b1);
    border-radius: 50%;
    margin-bottom: 0;
    padding: 50px 60px;
    position: absolute;
    bottom: -60px;
}

.heading-menu {
    background-color: var(--background-b1);
    border-radius: 50%;
    margin-bottom: 0;
    padding: 50px 60px;
    position: absolute;
    bottom: -85px;
}

.sub-head {
    margin-bottom: 0px;
    transform: translate(0px, 40px) !important;
    font-size:13px;
}

.dish-card {
    display: flex;
    align-items: center;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
}



.dish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-content {
       display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 40px 0px 80px;
    flex: 1;
    gap: 100px;

}

.dish-text {
    flex: 1;
    text-align: left;
}

.dish-name {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: #111;
    margin: 0 0 5px 0;
    font-family: 'Didot LT Pro';
    text-transform:none;
}

.dish-desc {
    font-size: 11px;
    line-height: 1.35;
    color: #333;
    opacity: 0.85;
    margin: 0;
    max-width: min(100%, 22vw);
}

/* السعر جنب العمود كله */
.dish-price {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.tl-icon {
    width: 12px;
    height: auto;
}

.price-number {
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

/* موبايل */
@media (max-width: 768px) {
    .dish-card, .dish-card.alternate {
        
        margin-bottom:50px
    }
    .picture_dish {
        width: 230px !important;
    }
    .fake-placeholder {
        display: block;
    }
    .dish-content {
        padding: 10px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .dish-price {
        align-self: flex-end;
    }
    .dish-name {
        font-size: 30px;
    }
    .tl-icon { width: 15px; }
    .price-number {
        font-size: 15px;
        
    }
    .dish-desc {
        max-width:100%
    }
    
    .dish-content {
        width: 100%
    }
}

.grid-menu-item {
  z-index: 10;
  background-color: var(--background-a);
  text-align: left;
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr .5fr;
  place-items: start;
  width: 100%;
  padding: 24px 30px;
  position: relative;
}

.grid-menu-item.transparent {
  background-color: #0000;
}

.menu-paragraph {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 170%;
}

.menu-item {
  color: var(--heading);
  font-weight: 500;
}

.menu-price {
  color: var(--heading);
  text-align: right;
  margin-left: auto;
  font-weight: 500;
}

.sub-footer {
  background-color: var(--background-b1);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 30px;
  display: flex;
  overflow: hidden;
  font-size:0.8rem;
}

.form-block {
  width: 100%;
  max-width: 790px;
  margin-bottom: 0;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section-full {
  background-image: url("https://cdn.prod.website-files.com/67bcaa3190819435d319a786/67bcaa3190819435d319a7bf_5b622e7a968506b7207619f1529e5af4_glow_top_red.svg"), url("https://cdn.prod.website-files.com/67bcaa3190819435d319a786/67bcaa3190819435d319a7c0_8ca3b9e65c702912d83451ff38f7188a_glow_top_green.svg");
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.text-subtitle-contact {
  color: var(--heading);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  line-height: 130%;
}

.contact {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 390px;
  display: flex;
}

.heading-contact {
  margin-bottom: 0;
}

.grid-contact {
  grid-column-gap: 0px;
  grid-row-gap: 38px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center;
}

.image-block-careers {
  width: 100%;
  margin-top: 75px;
  margin-bottom: 130px;
  position: relative;
}

.image-careers-absolute {
  z-index: 10;
  width: 35%;
  height: 80%;
  position: absolute;
  inset: auto auto -6% -5%;
}

.grid-about {
  grid-column-gap: 0px;
  grid-row-gap: 90px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.block-about {
  z-index: 50;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 12%;
  display: flex;
  position: relative;
}

.collection-list-wrapper-blog {
  width: 100%;
}

.collection-list-blog {
  grid-column-gap: 0px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-item-blog {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--background-a);
  border-radius: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-blog-page {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 360px;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.image-blog-page:hover {
  transform: scale(1.07);
}

.block-blog-page {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 45px 12%;
  display: flex;
}

.date-blog-large {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
}

.image-blog-main {
  box-shadow: 0 80px 120px 0 var(--shadow);
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 65px;
}

.template-info {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  background-color: var(--background-a);
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
  padding: 24px 30px;
  display: flex;
}

.button-light {
  background-color: var(--heading);
  color: var(--light);
  text-align: center;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  border-radius: 80px;
  padding: 22px 42px;
  font-size: 12px;
  font-weight: 600;
  line-height: 130%;
  transition: background-color .4s cubic-bezier(.25, .46, .45, .94), color .4s cubic-bezier(.25, .46, .45, .94);
}

.button-light:hover {
  background-color: var(--dark);
}

.button-light.small {
  padding: 15px 23px;
}

.grid-licensing {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
}

.licensing {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 250px;
}

.forum {
  margin-bottom: 0;
}

.poppins {
  text-transform: none;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.utility-page-wrap {
  background-image: url("https://cdn.prod.website-files.com/67bcaa3190819435d319a786/67bcaa3190819435d319a7bf_5b622e7a968506b7207619f1529e5af4_glow_top_red.svg"), url("https://cdn.prod.website-files.com/67bcaa3190819435d319a786/67bcaa3190819435d319a7c0_8ca3b9e65c702912d83451ff38f7188a_glow_top_green.svg");
  background-position: 0 0, 100% 0;
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 0px;
  grid-row-gap: 40px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  grid-template-rows: 1fr auto 1fr;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  justify-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 40px;
  padding-left: 10%;
  padding-right: 10%;
  display: grid;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 500px;
  display: flex;
}

.field-label {
  color: var(--paragraphs);
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 600;
  line-height: 130%;
}

.block-404 {
  width: 100%;
  max-width: 460px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 98px;
  }
    .dish-name {
        font-size: 22px;

    }
        .dish-name>span {
            font-size: 17px;
        }
       

        h2 {
            font-size: 65px;
        }

  h3 {
    font-size: 50px;
  }

  h4 {
    font-size: 38px;
  }

  h5 {
    font-size: 30px;
  }

  h6 {
    font-size: 24px;
  }

  .shape {
    height: 140vh;
  }

  .grid-navbar {
    padding: 15px 18px;
  }

  .nav-line {
    margin-left: 18px;
    margin-right: 18px;
  }

  .grid-hero {
    padding-left: 35px;
    padding-right: 35px;
  }

  .grid-menu {
    grid-row-gap: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .nav-link {
    font-size: 7vw;
  }

  .menu-button-close {
    top: 27px;
    right: 18px;
  }

  .section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .grid {
    grid-column-gap: 50px;
  }

  .line-space {
    margin-top: 110px;
    margin-bottom: 110px;
  }

  .grid-modular {
    grid-row-gap: 12px;
  }

  .image-block-modular {
    padding-right: 30px;
  }

  .slider {
    height: 55vw;
    margin-top: 60px;
  }

  .slide {
    margin-right: -4vw;
  }

  .image-blog {
    height: 170px;
  }

  .block-blog {
    padding-left: 2%;
    padding-right: 2%;
  }

  .section-first {
    padding-bottom: 110px;
  }

    .section-second {
        padding-bottom: 110px;
    }

  .heading-menu {
    bottom: -80px;
  }

  .image-block-careers {
    margin-top: 50px;
    margin-bottom: 110px;
  }

  .grid-about {
    grid-row-gap: 70px;
  }

  .collection-list-blog {
    grid-row-gap: 50px;
  }

  .image-blog-page {
    min-height: 320px;
  }

  .image-blog-main {
    margin-bottom: 55px;
  }

  .utility-page-form {
    max-width: 460px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 70px;
  }

    .grid-footer {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-rows: auto;
        grid-template-columns: 1.5fr 0.3fr 1.5fr 0.3fr 1.5fr;
        width: 100%;
        margin-top: 100px;
        margin-bottom: 100px;
    }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 32px;
  }

  h5 {
    font-size: 26px;
  }

  h6 {
    font-size: 22px;
  }

  .grid-navbar {
    padding: 13px 10px;
  }

  .brand {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo {
    height: 40px;
  }

  .menu-button {
    padding-left: 18px;
    padding-right: 18px;
  }

  .text-menu {
    font-size: 10px;
  }

  .nav-line {
    margin-left: 10px;
    margin-right: 10px;
  }

  .grid-hero {
    grid-row-gap: 30px;
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-button {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 10px;
  }

  .nav-link {
    font-size: 9vw;
  }

  .menu-button-close {
    padding-left: 18px;
    padding-right: 18px;
    top: 22px;
    right: 10px;
  }

  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .content {
    padding-left: 38px;
    padding-right: 38px;
  }

  .grid {
    grid-column-gap: 0px;
    grid-row-gap: 90px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .block {
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid-features {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .line-space {
    margin-top: 90px;
    margin-bottom: 90px;
  }

  .grid-modular {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .image-block-modular {
    margin-top: 90px;
    padding-right: 0;
  }

  .image-modular {
    width: 100%;
  }

  .mask {
    padding-left: 38px;
    padding-right: 38px;
  }

  .collection-list {
    grid-row-gap: 50px;
    grid-template-columns: 1fr;
  }

  .image-blog {
    height: 50vw;
  }

  .block-blog {
    margin-top: 34px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .link-arrow {
    margin-top: 24px;
  }

  .newsletter {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .grid-footer {
    margin-top: 90px;
    margin-bottom: 90px;
  }

  .form-newsletter {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .image-absolute {
    left: -5%;
  }
    html[dir="rtl"] .image-absolute {
        right: -5%;
    }

  .image-modular-absolute {
    width: 50%;
    bottom: -6%;
    left: -5%;
  }

  .section-first {
    padding-bottom: 90px;
  }

    .section-second {
        padding-bottom: 90px;
    }

  .menu {
    margin-bottom: 90px;
  }

  .image-menu {
    height: 35vw;
  }

  .heading-menu {
    padding: 24px 60px;
    bottom: -65px;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .grid-contact {
    grid-row-gap: 28px;
  }

  .image-block-careers {
    margin-bottom: 90px;
  }

  .collection-list-blog {
    grid-row-gap: 30px;
  }

  .image-blog-main {
    margin-bottom: 45px;
  }

  .utility-page-content {
    grid-row-gap: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 479px) {
    h1 {
        font-size: 45px;
    }
    .button{
        width:35%
    }
   
    #Time, #Date {
        color: black;
    }

    .filter-btn {
        padding: 3px 6px;
        border: 1px solid #0a0a0a;
        border-radius: 8px;
        background: white;
        font-size: 9px;
        white-space: nowrap;
        cursor: pointer;
        pointer-events: auto;
        color: #000;
    }

    .menu h3 {
        letter-spacing: normal;
    }

    .grid-footer {
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        grid-template-rows: auto;
        grid-template-columns: 1.5fr 0.3fr 1.5fr 0.3fr 1.5fr;
        width: 100%;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .link-footer {
        color: var(--paragraphs);
        text-transform: uppercase;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 11px;
        line-height: 130%;
        text-decoration: none;
        transition: color .3s cubic-bezier(.25, .46, .45, .94);
        letter-spacing:normal;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 26px;
    }

    h5 {
        font-size: 22px;
    }

    h6 {
        font-size: 14px;
    }

    .grid-navbar {
        padding-left: 4px;
        padding-right: 4px;
    }

    .nav-line {
        display: none;
    }

    .grid-hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .content {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .grid {
        grid-row-gap: 80px;
    }

    .line-space {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .image-block-modular {
        margin-top: 80px;
    }

    .slider {
        margin-top: 50px;
    }

    .grid-footer {
        grid-column-gap: 5px;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .section-first {
        padding-bottom: 80px;
    }

    .section-second {
        padding-bottom: 80px;
    }

    .menu {
        margin-bottom: 80px;
    }

    .grid-menu-item {
        grid-template-columns: 1fr;
        padding: 15px 20px;
    }

    .form {
        grid-row-gap: 16px;
    }

    .image-block-careers {
        margin-bottom: 80px;
    }

    .grid-about {
        grid-row-gap: 80px;
        grid-template-rows: auto;
        grid-template-columns: 1fr;
    }

    .block-about {
        margin-bottom: -38px;
        padding-right: 0%;
    }

    .collection-item-blog {
        grid-template-columns: 1fr;
    }

    .image-blog-page {
        height: auto;
        min-height: 50vw;
    }

    .block-blog-page {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .template-info {
        flex-direction: column;
    }

    .grid-licensing {
        grid-template-columns: 1fr;
    }

    .licensing {
        height: 180px;
    }

    .utility-page-content {
        padding-left: 7%;
        padding-right: 7%;
    }


    .dish-card, .dish-card.alternate {
        flex-direction: row;
        margin-bottom: 25px;
    }
    .tl-icon {
        width: 16px;
    }
    .price-number {
        font-size: 15px;
    }
    .dish-name {
        font-size: 15px;
        font-weight:600;
    }
        .dish-name > span {
            font-size: 15px;
        }
    .dish-desc {
        font-size: 9px;
        line-height: 1.35;
        color: #333;
        opacity: 0.85;
        margin: 0;
       
    }

    .dish-content {
        padding: 5px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 1px;
    }

    .picture_dish {
        width: 135px !important;
        /* height: auto; */
        object-fit: cover;
        height: 120px;
    }
    .menu h3 {
        font-size:20px;
    }

    .section-second .heading-menu {
        background-color: white;
        border-radius: 50%;
        margin-bottom: 0;
        padding: 20px 15px;
        position: absolute;
        bottom: -40px;
    }

    .section-first .heading-menu {
      
        border-radius: 50%;
        margin-bottom: 0;
        padding: 20px 15px;
        position: absolute;
        bottom: -40px;
    }
    .sub-head {
        margin-bottom: 0px;
        transform: translate(0px, 12px) !important;
        font-size: 9px;
    }

    .section-first.Most-Liked .heading-menu {
       
        border-radius: 50%;
        margin-bottom: 0;
        padding: 24px 18px;
        position: absolute;
        bottom: -10px;
    }

}



#First-Name, #Last-Name {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#Phone, #Email {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#Number-Of-Guests, #Date, #Time {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#submit {
  grid-area: span 1 / span 6 / span 1 / span 6;
}




#about-sec {
    grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
    #First-Name, #Last-Name, #Phone, #Email, #Number-Of-Guests, #Date, #Time, #submit {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {

    .form-row{
        flex-direction:column;
    }
}





.image-container video {
    width: 77%;
    height: auto;
    object-fit: cover;
    float: inline-start;

    border-radius: 20px;
}
.contact-form{
    margin:auto 0;

}


.contact-form h1 {
    font-size: 48px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: start;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 15px;
        background-color: #fff;
        font-size: 14px;
        box-sizing: border-box;
        background-color:transparent;
    }

    .form-group textarea {
        height: 100px;
        resize: none;
    }

.submit-btn {
    background-color: transparent;
    display: block;
    margin: 20px auto 0;
    padding: 4px 40px;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    float: inline-end
}


.grid1 {
    grid-template-columns: 1.2fr 2fr;
    grid-column-gap: 0px;
    gap:0px
}

       

/* Responsive Design */
@media (max-width: 768px) {


    .grid1 {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 0px;
        gap: 0px
    }

    .contact-form {
        max-width: 100%;
    }

        .contact-form h1 {
            font-size: 36px;
            text-align: center;
        }

    

    .submit-btn {
        width: 100%;
        margin: 20px 0 0;
    }

    .submit-btn span {
        margin:auto;
    }
   

   
}

@media (max-width: 500px) {

    .heading-hero {
        font-size:35px;
    }
    .paragraph-hero{
        font-size:1rem;
    }

    .image-container video {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .grid1 {
        grid-template-columns: 1fr;
        grid-column-gap: 0px;
        gap: 0px
    }
    .contact-form h1 {
        font-size: 28px;
    }
    .contact-form{
        margin-top:3rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 12px;
    }

    .submit-btn {
        font-size: 12px;
    }

   
}


.filter-btn.active {
    background: #000;
    color: white !important;
}



/* الأقسام */
.section-first,
.section-second {
    scroll-margin-top: 100px; 
}

/* إخفاء الأطباق اللي مش مطابقة للسيرش */
.dish-card.hidden {
    display: none !important;
}

.dish-card {
    transition: opacity 0.3s;
}

.submit-btn {
    position: relative;
    padding: 10px 40px;

    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.btn-text {
    display: inline-block;
}

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 10px;
}

.loading .btn-text {
    opacity: 0.5;
}

.loading .btn-loader {
    display: inline-block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #28a745;
    color: white;
    padding: 12px 18px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    font-size: 15px;
    z-index: 9999;
}

    #toast.show {
        opacity: 1;
        visibility: visible;
    }

.event-25641{
    display:flex
}


@media (min-width: 901px) and (max-width: 1200px) {
    #sofleurabout {
        grid-area: 2 / 1 / 5 / 4 !important;
        margin-top: 19rem;
    }

    .heading {
        font-size: 30px
    }

    .paragraph {
        max-width: 600px;
        margin-bottom: 38px;
        font-size: 1rem;
        color: black;
        line-height: 1.6;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    #sofleurabout {
        grid-area: 2 / 1 / 5 / 4 !important;
        margin-top: 15rem;
    }
    .heading{
        font-size:28px
    }

    .paragraph {
        max-width: 600px;
        margin-bottom: 38px;
        font-size: 0.9rem;
        color: black;
        line-height: 1.6;
    }
}

.speed-dial .speed-dial__button-root {
    align-items: center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    transition: all .1s ease-in-out;
    padding: 0;
    box-shadow: 0 0 10px -1px #00000380;
    position: relative;
}

.speed-dial .speed-dial__button-root .close {
    position: absolute;
    transform: rotate(120deg);
    transition: all .2s ease-in-out;
    visibility: hidden;
    opacity: 0;
}
    .speed-dial .speed-dial__button-root .close.open {
        transform: rotate(0);
        visibility: visible;
        opacity: 1;
        line-height: 0;
    }
.picture_dish {
    width: 22%;
    display: block;
}

.speed-dial {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

    .speed-dial [data-direction="top"] {
        position: absolute;
        bottom: 70px; /* يطلع فوق الزر */
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: .3s ease;
    }


    .speed-dial.open [data-direction="top"] {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.speed-dial__button-root {
    transition: transform .3s ease;
}



.speed-dial .speed-dial__button--small {
    border-radius: 50%;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 0 10px -1px #00000380;
}

.speed-dial button {
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: none;
}
.speed-dial .speed-dial__button-root .root-icon {
    visibility: visible;
    transition: all 1ms;
    transition-delay: .1s;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
}

/* أيقونة الرسائل */
.root-icon {
   opacity:1;
}

/* أيقونة الإغلاق */
.close {
   opacity:0;
}

.speed-dial.open .root-icon {
   opacity:0;
}

.speed-dial.open .close {
   opacity:1;
}
