/* Buttons: professional look, consistent sizing */
.btn-wa,
.btn-appointment{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;              /* touch-friendly */
  border-radius: .75rem;          /* rounded */
  font-weight: 600;
  padding: 0.05rem 0.5rem;
  font-size: 14px;
  gap: .5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}

/* WhatsApp brand style */
.btn-wa{
  background-color: #25D366;
  color: #fff;
  border: 1px solid #1ebe59;
}
.btn-wa:hover{
  background-color: #1ebe59;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37,211,102,.25);
}

/* Appointment (primary outline look) */
.btn-appointment{
  background-color: #fff;
  color: var(--theme-color1);                /* bootstrap primary */
  border: 1px solid var(--theme-color1);
}
.btn-appointment:hover{
  background-color: var(--theme-color1);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(13,110,253,.25);
}

/* Make sure buttons fill equally inside action-box */
.action-box .flex-fill{
  flex: 1 1 0;
}

/* Tighter on very small screens */
@media (max-width: 420px){
  .btn-wa, .btn-appointment{
    font-size: .95rem;
    padding: .55rem .85rem;
  }
}

#contact_submit.is-loading,
#contact_submit:disabled {
    opacity: .7; cursor: not-allowed;
}

.lang-dd{ position:relative; }
.lang-btn{ display:inline-flex; align-items:center; gap:.5rem; min-height:44px; padding:.5rem .7rem;
  border:1px solid #e5e7eb; border-radius:999px; background:#fff; font-weight:600; box-shadow:0 2px 8px rgba(0,0,0,.05);}
.lang-btn .flag,.lang-menu .flag{ width:18px; height:18px; border-radius:3px; object-fit:cover;}
.lang-menu{ position:absolute; inset-inline-end:0; top:calc(100% + .45rem); min-width:6rem; display:none; list-style:none; margin:0; padding:.4rem;
  background:#fff; border:1px solid #e5e7eb; border-radius:12px; box-shadow:0 16px 40px rgba(0,0,0,.12); z-index:70;}
.lang-dd.open .lang-menu{ display:block; }
.lang-menu a{ display:flex; align-items:center; gap:.6rem; padding:.5rem .6rem; border-radius:8px; color:#111827; text-decoration:none;}
.lang-menu a:hover{ background:#f5f7fb; }
.short{ width:2.2rem; text-align:center; }
@media (max-width:991.98px){ .lang-dd{ width:100%; } .lang-btn{ width:100%; justify-content:space-between; } .lang-menu{ inset-inline:0; width:100%; } }
html[dir="rtl"] .lang-menu{ text-align:right; }

.main-header .logo img {
    max-width: 150px;
}

@media (min-width: 991.98px) {
    .lang-btn{
        margin: 20px;
    }
}

@media (max-width: 991.98px) {
    .main-header .logo img {
        max-width: 100%;
    }
    .header-style-five .main-box .logo {
        max-width: 120px;
    }
    .header-style-one .main-box .logo {
        max-width: 120px;
    }

    .page-title .title {
        font-size: 45px;
    }
}

#contact-form input, #contact-form textarea {
    color: #000;
}

.inner .copyright-text p {
    color: white;
}

.whatsapp-fab{
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  z-index: 1050; /* above most UI */
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.whatsapp-fab:hover{ transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.28); }
.scroll-to-top {
    width: 50px;
    height: 50px;
    line-height: 50px;
}
.fixed-button {
    font-size: 25px;
}

.fa-whatsapp.fixed-button {
    font-size: 28px;
}

/* Style filter box */

.sidebar-widget.style-filters .style-filter-list {
    margin: 0;
    padding: 0;
}

.sidebar-widget.style-filters .style-filter-list li + li {
    margin-top: 4px;
}

.sidebar-widget.style-filters .style-filter-link {
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    padding: 6px 10px;
    border-radius: 999px;           /* pill shape */
    font-size: 14px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease, transform .1s ease;
}

/* bullet circle on the left */
.sidebar-widget.style-filters .style-filter-link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 8px;
    flex-shrink: 0;
}

/* hover state */
.sidebar-widget.style-filters .style-filter-link:hover {
    background-color: #f5f5f5;
    transform: translateX(2px);
}

/* active (selected) state */
.sidebar-widget.style-filters .style-filter-link.active {
    background-color: #111;         /* match your black tab */
    color: #fff;
}

/* active bullet filled + accent color bottom border */
.sidebar-widget.style-filters .style-filter-link.active::before {
    background-color: #f74f70;      /* your pink accent */
    border-color: #f74f70;
}


/* Wrapper button */
.theme-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;

    width: 56px;
    height: 28px;
    padding: 3px 6px;

    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f5f5f5;

    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    margin-inline: 10px;
}

.theme-toggle-btn:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.theme-toggle-btn:focus-visible {
    outline: 2px solid #555;
    outline-offset: 2px;
}

/* Icons inside button */
.theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 14px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Default state: light mode -> show sun, hide moon */
.theme-toggle-icon.icon-sun {
    opacity: 1;
    transform: translateY(0);
}

.theme-toggle-icon.icon-moon {
    opacity: 0;
    transform: translateY(6px);
}

/* When dark mode is active on <html> */
html.dark .theme-toggle-btn {
    background: #c0c0c5;
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

html.dark .theme-toggle-icon.icon-sun {
    opacity: 0;
    transform: translateY(-6px);
}

html.dark .theme-toggle-icon.icon-moon {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .theme-toggle-btn {
        width: 48px;
        height: 24px;
        padding: 2px 4px;
        margin-inline: 6px;
    }

    .theme-toggle-icon {
        width: 16px;
        height: 16px;
        font-size: 12px;
    }
}

.current a {
    color: var(--theme-color1) !important;
}

.banner-button {
    background-color: #af1c40 !important;
}

/*.banner-button:hover {
    background-color: var(--bg-theme-color8) !important;
}*/

.banner-button:before {
    background-color: var(--bg-theme-color8) !important;
}

.preloader:before {
    display: none;
}

/* Center the nav */
.reels-section .owl-nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 24px;
}

/* White circular buttons */
.reels-section .owl-nav .owl-prev,
.reels-section .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0;
    margin: 0;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;

    /* hide "prev"/"next" text */
    font-size: 0;
    line-height: 0;
    color: transparent;
}

/* Hover effect */
.reels-section .owl-nav .owl-prev:hover,
.reels-section .owl-nav .owl-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
    border-color: #d0d0d0;
}

/* Arrow icons */
.reels-section .owl-nav .owl-prev::before,
.reels-section .owl-nav .owl-next::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
}

/* Left arrow */
.reels-section .owl-nav .owl-prev::before {
    transform: rotate(-135deg);
}

/* Right arrow */
.reels-section .owl-nav .owl-next::before {
    transform: rotate(45deg);
}

.product-block .sold-out-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 20px;
    background: #c30036;
    color: #fff;
    z-index: 2;
}

.product-block .is-sold-out .image img {
    filter: grayscale(0.6);
    opacity: 0.7;
}

.hero-video-section {
    position: relative;
    overflow: hidden;
    padding-top: 120px;     /* space above content */
    padding-bottom: 120px;  /* space below content */
}

/* When we actually have a video */
.hero-video-section.has-hero-video {
    height: 100vh;
    background: transparent;
    z-index: 111;
}

/* Container that holds <video> */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 50%;
}

/* The video itself */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Soft overlay over the video so text stays readable */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.30),
        rgba(255, 255, 255, 0.30)
    );
}

/* Foreground (your content) */
.hero-video-inner {
    position: relative;
    z-index: 1;
}

/* Center the content nicely */
.hero-video-section .content-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Make it feel more “hero” on large screens */
/*@media (min-width: 992px) {
    .hero-video-section.has-hero-video {
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
}*/

/* Mobile tweaks */
@media (max-width: 767.98px) {
    .hero-video-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

/* Shipping Service section */
.shipping-section {
  position: relative;
  padding: 80px 0 70px;
  background-color: #fff9f8; /* soft beige/pink to match Gravita */
}

.shipping-section .sec-title .sub-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Three feature cards */
.shipping-block {
  margin-bottom: 30px;
}

.shipping-block .inner-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 24px 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.shipping-block .inner-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.shipping-block .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: #ffe1e7;
  color: #e58193;             /* close to your primary accent */
  font-size: 22px;
}

.shipping-block h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.shipping-block p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Bottom key info line */
.shipping-meta {
  margin-top: 20px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.shipping-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.shipping-meta .meta-item i {
  color: #e58193;
  font-size: 18px;
}

.shipping-meta .meta-item .label {
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  opacity: 0.8;
}

.shipping-meta .meta-item strong {
  display: block;
}

/* Spacing above the button */
.shipping-section .mt-30 {
  margin-top: 30px;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .shipping-meta {
    padding: 16px 18px;
    align-items: flex-start;
  }

  .shipping-block .inner-box {
    text-align: center;
  }

  .shipping-meta .meta-item {
    justify-content: center;
  }
}

/* Colors */
body {
    background-color: #efe0e0;
}

.button-custom-style-1 {
    background-color: transparent !important;
    border: 2px solid #504e4e !important;
    color: #504e4e !important;
    font-weight: 600 !important;
}

.button-custom-style-1:before {
    background-color: var(--text-color) !important;
    color: #fff !important;
}

.button-custom-style-1:hover {
    color: #fff !important;
    background-color: var(--text-color) !important;
}

.preloader {
    background-color: #efe0e0;
}

.button-custom-style-2 {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.button-custom-style-2:hover {
    background-color: var(--text-color);
    border: 2px solid var(--text-color);
    color: #fff;
}

.btn-style-one.orange-bg:before {
    background-color: transparent !important;
}

.main-header .btn-style-one.orange-bg:before {
    border: 2px solid #fff;
} 

.btn-style-one.orange-bg:hover {
    background-color: transparent;
}

.main-header .btn-style-one.orange-bg:hover {
    background-color: #f3dfdf;
    color: var(--text-color);
}

.pricing-block .inner-box .content-box {
    background-color: #f3dfdf;
}

@media (min-width: 768px) {
    .event-section-three {
        position: relative;
        padding: 120px 45px 70px;
    }
}

@media (min-width: 768px) {
  .show-desktop { display: block !important; }
  .show-mobile  { display: none  !important; }
}
@media (max-width: 767.98px) {
  .show-desktop { display: none  !important; }
  .show-mobile  { display: block !important; }
}

@media (max-width: 1199.98px) {
    .pricing-block .inner-box {
        background-color: #f3dfdf;
    }
}

.sec-title.style-five .sub-title {
    font-weight: 700;
}

.event-section-three .content-column .inner-column .sec-title h2 {
    font-weight: 500;
}

.marquee-section .icon-leaves-37:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.marquee-section .icon-leaves-37 {
    height: 70px;
}

.story-section-three .icon-flowers-15 {
    opacity: 30%;
}

.story-section-three .icon-flowers-16 {
    opacity: 30%;
}

.footer-style-five .icon-flowers-3 {
    opacity: 25%;
}

.footer-style-five .icon-flowers-21 {
    opacity: 25%;
}

.developped a:hover {
    color: var(--theme-color1) !important;
}