/* Common CSS */
:root {
  --primary-color: #f0831c;
  --secondary-color: #E9BB71;
  --primary-black-color:#0C1C18;
  --gray-color: #FEFCF8;
}

/* =========================================================
   HR TOOLBOX — Header right toolbar (bell · profile · cart)
   Tokens aligned with the dashboard/billing/subscriptions pages.
   ========================================================= */
.hrt-headbar {
    --hb-surface: #ffffff;
    --hb-border: rgba(15, 23, 42, 0.08);
    --hb-border-strong: rgba(15, 23, 42, 0.14);
    --hb-text: #0f172a;
    --hb-text-soft: #334155;
    --hb-muted: #64748b;
    --hb-brand: #f0831c;
    --hb-brand-dark: #d96b0c;
    --hb-brand-soft: rgba(240, 131, 28, 0.1);
    --hb-danger: #b91c1c;
    --hb-danger-soft: rgba(220, 38, 38, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hb-surface);
    border: 1px solid var(--hb-border);
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 22px -14px rgba(15, 23, 42, 0.18);
    font-family: "Plus Jakarta Sans", "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}
.hrt-headbar * { box-sizing: border-box; }

.hrt-headbar__cell { position: relative; display: inline-flex; align-items: center; }
.hrt-headbar__cell + .hrt-headbar__cell { position: relative; }
.hrt-headbar__cell + .hrt-headbar__cell::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: var(--hb-border);
}

/* Icon-only button (bell, cart, etc.) */
.hrt-headbar__icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    color: var(--hb-text-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    position: relative;
}
.hrt-headbar__icon-btn:hover,
.hrt-headbar__icon-btn:focus-visible {
    background: var(--hb-brand-soft);
    color: var(--hb-brand-dark);
    text-decoration: none;
    transform: translateY(-1px);
}
.hrt-headbar__icon-btn:active { transform: translateY(0); }
.hrt-headbar__icon-btn::after { display: none !important; } /* hide Bootstrap caret */

/* Bell shortcode passthrough — style ANY direct anchor/button rendered inside */
.hrt-headbar__cell--bell > a,
.hrt-headbar__cell--bell > button,
.hrt-headbar__cell--bell > .hrt-notifications-bell > a,
.hrt-headbar__cell--bell > .hrt-notifications-bell > button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 0;
    color: var(--hb-text-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    padding: 0;
    position: relative;
}
.hrt-headbar__cell--bell > a:hover,
.hrt-headbar__cell--bell > button:hover {
    background: var(--hb-brand-soft);
    color: var(--hb-brand-dark);
}
.hrt-headbar__cell--bell .badge,
.hrt-headbar__cell--bell .count,
.hrt-headbar__cell--bell .unread-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--hb-brand);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--hb-surface);
}

/* Profile pill */
.hrt-headbar__profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--hb-text);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    padding: 4px 12px 4px 4px;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
}
.hrt-headbar__profile:hover,
.hrt-headbar__profile:focus-visible {
    background: var(--hb-brand-soft);
    color: var(--hb-brand-dark);
}
.hrt-headbar__profile::after { display: none !important; } /* hide Bootstrap caret */

.hrt-headbar__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hb-brand), var(--hb-brand-dark));
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    border: 2px solid var(--hb-surface);
    box-shadow: 0 4px 10px -4px rgba(240, 131, 28, 0.45);
}
.hrt-headbar__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hrt-headbar__profile-text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    gap: 1px;
    text-align: left;
}
.hrt-headbar__greet {
    color: var(--hb-muted);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.hrt-headbar__name {
    color: var(--hb-text);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    max-width: 110px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hrt-headbar__profile:hover .hrt-headbar__name { color: var(--hb-brand-dark); }
.hrt-headbar__chev {
    color: var(--hb-muted);
    font-size: 0.7rem;
    margin-left: 2px;
    transition: transform 0.22s ease, color 0.18s ease;
}
.hrt-headbar__profile[aria-expanded="true"] .hrt-headbar__chev { transform: rotate(180deg); }
.hrt-headbar__profile:hover .hrt-headbar__chev { color: var(--hb-brand-dark); }

/* Cart */
.hrt-headbar__cart {
    width: 38px;
    height: 38px;
    position: relative;
}
.hrt-headbar__cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--hb-text);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px var(--hb-surface);
    font-variant-numeric: tabular-nums;
}
.hrt-headbar__cart-badge.is-active {
    background: var(--hb-brand);
    animation: hrtHeadbarPop 0.35s ease;
}
@keyframes hrtHeadbarPop {
    0%   { transform: scale(0.6); }
    60%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* =========================
   Dropdown menus — refined surface
   ========================= */
.hrt-headbar__menu,
.hrt-headbar__cart-menu {
    min-width: 270px;
    margin-top: 12px !important;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 14px;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 24px 56px -16px rgba(15, 23, 42, 0.28);
    font-family: "Plus Jakarta Sans", "Manrope", "Inter", sans-serif;
}

.hrt-headbar__menu-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px 12px;
}
.hrt-headbar__menu-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--hb-brand), var(--hb-brand-dark));
    border: 2px solid #fff;
    box-shadow: 0 6px 14px -6px rgba(240, 131, 28, 0.5);
}
.hrt-headbar__menu-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hrt-headbar__menu-id { display: flex; flex-direction: column; min-width: 0; }
.hrt-headbar__menu-id strong {
    color: var(--hb-text);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.hrt-headbar__menu-id small {
    color: var(--hb-muted);
    font-size: 0.74rem;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.hrt-headbar__menu-divider {
    margin: 4px 6px;
    border: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    opacity: 1;
}

.hrt-headbar__menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--hb-text-soft);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.16s ease, color 0.16s ease, padding-left 0.16s ease;
    background: transparent;
}
.hrt-headbar__menu-item i {
    width: 18px;
    text-align: center;
    color: var(--hb-muted);
    font-size: 0.85rem;
    transition: color 0.16s ease;
}
.hrt-headbar__menu-item:hover,
.hrt-headbar__menu-item:focus-visible {
    background: var(--hb-brand-soft);
    color: var(--hb-brand-dark);
    padding-left: 14px;
    text-decoration: none;
}
.hrt-headbar__menu-item:hover i,
.hrt-headbar__menu-item:focus-visible i {
    color: var(--hb-brand);
}

.hrt-headbar__menu-item--danger { color: var(--hb-danger); }
.hrt-headbar__menu-item--danger i { color: var(--hb-danger); opacity: 0.85; }
.hrt-headbar__menu-item--danger:hover,
.hrt-headbar__menu-item--danger:focus-visible {
    background: var(--hb-danger-soft);
    color: var(--hb-danger);
}
.hrt-headbar__menu-item--danger:hover i { color: var(--hb-danger); }

/* =========================
   Cart dropdown
   ========================= */
.hrt-headbar__cart-menu {
    min-width: 320px;
    padding: 0;
    overflow: hidden;
}
.hrt-headbar__cart-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.hrt-headbar__cart-head strong {
    color: var(--hb-text);
    font-family: "Plus Jakarta Sans", "Manrope", system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.hrt-headbar__cart-head span {
    color: var(--hb-muted);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}
.hrt-headbar__cart-body { padding: 12px 14px 14px; }
.hrt-headbar__cart-body .woocommerce-mini-cart {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}
.hrt-headbar__cart-body .woocommerce-mini-cart .mini_cart_item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    color: var(--hb-text);
    font-size: 0.86rem;
}
.hrt-headbar__cart-body .woocommerce-mini-cart .mini_cart_item:last-child { border-bottom: 0; }
.hrt-headbar__cart-body .woocommerce-mini-cart img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.hrt-headbar__cart-body .woocommerce-mini-cart a:not(.remove) {
    color: var(--hb-text);
    text-decoration: none;
    font-weight: 600;
}
.hrt-headbar__cart-body .woocommerce-mini-cart a:not(.remove):hover { color: var(--hb-brand-dark); }
.hrt-headbar__cart-body .woocommerce-mini-cart .remove {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.08);
    color: var(--hb-danger) !important;
    font-size: 0;
    line-height: 22px;
    text-align: center;
    transition: background 0.18s ease;
}
.hrt-headbar__cart-body .woocommerce-mini-cart .remove::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7rem;
}
.hrt-headbar__cart-body .woocommerce-mini-cart .remove:hover { background: rgba(220, 38, 38, 0.18); }
.hrt-headbar__cart-body .woocommerce-mini-cart .quantity {
    display: block;
    color: var(--hb-muted);
    font-size: 0.75rem;
    margin-top: 2px;
}
.hrt-headbar__cart-body .woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    margin: 6px 0 10px;
    color: var(--hb-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}
.hrt-headbar__cart-body .woocommerce-mini-cart__total .amount,
.hrt-headbar__cart-body .woocommerce-mini-cart__total bdi {
    color: var(--hb-text);
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    text-transform: none;
}
.hrt-headbar__cart-body .woocommerce-mini-cart__buttons { display: flex; gap: 8px; margin: 0; }
.hrt-headbar__cart-body .woocommerce-mini-cart__buttons .button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 9px;
    border: 1px solid var(--hb-border-strong);
    background: #fff;
    color: var(--hb-text-soft);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.hrt-headbar__cart-body .woocommerce-mini-cart__buttons .button:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--hb-text);
    transform: translateY(-1px);
}
.hrt-headbar__cart-body .woocommerce-mini-cart__buttons .checkout {
    background: linear-gradient(135deg, var(--hb-brand) 0%, var(--hb-brand-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 18px -8px rgba(240, 131, 28, 0.55);
}
.hrt-headbar__cart-body .woocommerce-mini-cart__buttons .checkout:hover {
    color: #fff;
    filter: brightness(1.04);
}
.hrt-headbar__cart-empty {
    text-align: center;
    padding: 18px 6px 6px;
}
.hrt-headbar__cart-empty i {
    font-size: 1.6rem;
    color: rgba(15, 23, 42, 0.18);
    margin-bottom: 8px;
}
.hrt-headbar__cart-empty p {
    color: var(--hb-muted);
    margin: 0 0 8px;
    font-size: 0.88rem;
}
.hrt-headbar__cart-empty a {
    display: inline-block;
    color: var(--hb-brand-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}
.hrt-headbar__cart-empty a:hover { color: var(--hb-brand); }

/* =========================
   Responsive
   ========================= */
@media (max-width: 1199.98px) {
    .hrt-headbar__name { max-width: 80px; }
}
@media (max-width: 991.98px) {
    .hrt-headbar__profile-text { display: none; }
    .hrt-headbar__profile { padding: 4px 8px 4px 4px; }
    .hrt-headbar__chev { margin-left: 4px; }
}
.hrt-headbar--mobile {
    width: 100%;
    justify-content: flex-start;
}
.hrt-headbar--mobile .hrt-headbar__profile-text { display: inline-flex; }

.sub-heading {
  border-radius: 8px;
  border: 1px solid rgba(35, 37, 39, 0.1);
  background: var(--white-color);
  font-size: 16px;
  font-weight: 600;
}

.nav-right-item .theme-btn.style-one {
    padding: 13px 20px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 23px;
}

.text-white .sub-heading {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #295C51;
  color: var(--white-color);
}

.theme-btn {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.theme-btn.style-one {
/*  padding: 18px 20px;
  font-weight: 600;
  font-size: 16px;*/
}
.theme-btn.style-one:hover {
/*  background-color: var(--secondary-color);
  color: var(--heading-color);*/
}

.section-title h2 span {
  color: var(--primary-color);
}

.gray-bg {
  background-color: var(--gray-color);
}

/* Hero Section */
.hero-seo .hero-wrapper {
  position: relative;
  z-index: 1;
  padding: 220px 0 0;
  background-color: rgba(233, 187, 113, 0.05);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero-seo .hero-wrapper {
    padding: 150px 0 70px;
  }
}
.hero-seo .hero-wrapper .shape {
  position: absolute;
  z-index: -1;
}
.hero-seo .hero-wrapper .shape.blur-shape-one {
  background: conic-gradient(from 105deg at -78.01% 65.75%, rgba(41, 92, 81, 0.7) 0deg, rgba(86, 194, 171, 0.7) 360deg);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  position: absolute;
  top: -20%;
  left: -5%;
}
.hero-seo .hero-wrapper .shape.blur-shape-one span {
  width: 185px;
  height: 555px;
}
.hero-seo .hero-wrapper .shape.blur-shape-two {
  background: conic-gradient(from 105deg at -78.01% 65.75%, rgba(41, 92, 81, 0.7) 0deg, rgba(86, 194, 171, 0.7) 360deg);
  -webkit-filter: blur(150px);
          filter: blur(150px);
  position: absolute;
  bottom: -20%;
  right: -5%;
}
.hero-seo .hero-wrapper .shape.blur-shape-two span {
  width: 185px;
  height: 555px;
}
.hero-seo .hero-wrapper .shape.circle-shape-one {
  left: -20%;
  bottom: -50%;
}
.hero-seo .hero-wrapper .shape.circle-shape-one span {
  width: 830px;
  height: 830px;
  border-radius: 50%;
  background: linear-gradient(147deg, rgba(41, 92, 81, 0.05) 19.79%, rgba(41, 92, 81, 0) 69.2%);
}
.hero-seo .hero-wrapper .shape.circle-shape-two {
  right: -18%;
  top: -50%;
}
.hero-seo .hero-wrapper .shape.circle-shape-two span {
  width: 830px;
  height: 830px;
  border-radius: 50%;
  background: linear-gradient(49deg, rgba(233, 187, 113, 0.05) 13.98%, rgba(233, 187, 113, 0) 73.6%);
}
.hero-seo .hero-wrapper .hero-content {
  position: relative;
}
.hero-seo .hero-wrapper .hero-content .element {
  position: absolute;
  right: 0;
  top: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-seo .hero-wrapper .hero-content .element {
    right: 60px;
  }
}
.hero-seo .hero-wrapper .hero-content h1 {
    font-size: 57px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.hero-seo .hero-wrapper .hero-content h1 span {
  font-weight: 800;
  color: var(--primary-color);
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .hero-seo .hero-wrapper .hero-content h1 {
    font-size: 72px;
    line-height: 85px;
  }
}
@media screen and (max-width: 991px) {
  .hero-seo .hero-wrapper .hero-content h1 {
    font-size: 72px;
    line-height: 85px;
  }
}
@media (max-width: 767px) {
  .hero-seo .hero-wrapper .hero-content h1 {
    font-size: 44px;
    line-height: 60px;
  }
}
.hero-seo .hero-wrapper .hero-content p {
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .hero-seo .hero-wrapper .hero-content p {
    font-size: 16px;
  }
}
.hero-seo .hero-wrapper .hero-content .hero-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 767px) {
  .hero-seo .hero-wrapper .hero-content .hero-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero-seo .hero-wrapper .hero-content .hero-button .theme-btn {
  margin-bottom: 10px;
  margin-right: 30px;
}
.hero-seo .hero-wrapper .hero-content .author-box .author-list li span {
  background-color: var(--secondary-color);
  border: 2px solid var(--white-color);
}
.hero-seo .hero-wrapper .hero-image-box {
  position: relative;
  padding-left: 55px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-seo .hero-wrapper .hero-image-box {
    max-width: 575px;
    margin: 0 auto;
    margin-top: 50px;
  }
}
@media screen and (max-width: 991px) {
  .hero-seo .hero-wrapper .hero-image-box {
    margin-top: 60px;
  }
}
.hero-seo .hero-wrapper .hero-image-box .hero-sm-image {
  position: absolute;
}
.hero-seo .hero-wrapper .hero-image-box .hero-sm-image img {
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(41, 92, 81, 0.05);
          box-shadow: 0px 0px 30px 0px rgba(41, 92, 81, 0.05);
}
@media (max-width: 767px) {
  .hero-seo .hero-wrapper .hero-image-box .hero-sm-image img {
    width: 150px;
    height: 120px;
  }
}
.hero-seo .hero-wrapper .hero-image-box .hero-sm-image.image-one {
  left: 0;
  top: 0;
}
.hero-seo .hero-wrapper .hero-image-box .hero-sm-image.image-two {
  bottom: 0;
  right: 0;
}
.hero-seo .hero-wrapper .hero-image-box .element {
  position: absolute;
  top: 0;
  right: 0;
}

/* About Section */
.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.about-wrapper .sasly-image-box {
  width: 25%;
}
@media screen and (max-width: 991px) {
  .about-wrapper .sasly-image-box {
    width: 50%;
    padding: 0 10px;
  }
}
.about-wrapper .sasly-image-box.box-one {
  margin-top: -90px;
}
@media screen and (max-width: 991px) {
  .about-wrapper .sasly-image-box.box-one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.about-wrapper .sasly-image-box.box-two {
  position: relative;
}
.about-wrapper .sasly-image-box.box-two .shape {
  position: absolute;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .about-wrapper .sasly-image-box.box-two .shape {
    top: -50px;
  }
}
@media screen and (max-width: 991px) {
  .about-wrapper .sasly-image-box.box-two {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.about-wrapper .section-content-box {
  width: 50%;
  padding: 0 70px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .about-wrapper .section-content-box {
    padding: 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .about-wrapper .section-content-box {
    width: 100%;
    padding: 0 15px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

/* Team Testimonial */
.seo-testimonial .testimonial-slider {
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 17%;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .seo-testimonial .testimonial-slider {
    padding-left: 10%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .seo-testimonial .testimonial-slider {
    padding-left: 5%;
  }
}
@media screen and (max-width: 991px) {
  .seo-testimonial .testimonial-slider {
    padding-left: 0;
  }
}
.seo-testimonial .testimonial-slider .slick-slide {
  margin-left: 15px;
  margin-right: 15px;
  max-width: 550px;
}
@media screen and (max-width: 991px) {
  .seo-testimonial .testimonial-slider .slick-slide {
    max-width: 100%;
  }
}

/* Seo Footer */
.seo-footer {
  background-color: #000000;
  color: rgba(255, 255, 255, 0.7);
}
.seo-footer .footer-copyright {
  background-color: rgba(255, 255, 255, 0.04);
}

.footer-widget .widget-title {
  color: var(--white-color);
}

/* Page Hero CSS */
.page-hero-ss {
  position: relative;
  z-index: 1;
  padding: 220px 0 130px;
  background-color: rgba(233, 187, 113, 0.05);
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-hero-ss {
    padding: 150px 0 70px;
  }
}
.page-hero-ss .shape {
  position: absolute;
  z-index: -1;
}
.page-hero-ss .shape.blur-shape {
  top: -25%;
  left: -5%;
}
.page-hero-ss .shape.blur-shape span {
  width: 185px;
  height: 555px;
  -webkit-transform: rotate(-37.493deg);
          transform: rotate(-37.493deg);
  background: conic-gradient(from 105deg at -78.01% 65.75%, rgba(41, 92, 81, 0.7) 0deg, rgba(86, 194, 171, 0.7) 360deg);
  -webkit-filter: blur(150px);
          filter: blur(150px);
}
.page-hero-ss .shape.circle-shape {
  right: -18%;
  top: -50%;
}
.page-hero-ss .shape.circle-shape span {
  width: 830px;
  height: 830px;
  border-radius: 50%;
  background: linear-gradient(49deg, rgba(233, 187, 113, 0.05) 13.98%, rgba(233, 187, 113, 0) 73.6%);
}

.seo-about-sec .sasly-image-box.style-one {
  /*padding-left: 80px;*/
}
@media screen and (max-width: 991px) {
  .seo-about-sec .sasly-image-box.style-one {
    padding-left: 0;
  }
}
.seo-about-sec .sasly-image-box.style-one .image-one {
  position: relative;
  /*padding-top: 100px;*/
}
.seo-about-sec .sasly-image-box.style-one .image-one .circle-shape {
  position: absolute;
  top: 0;
  left: -80px;
}
@media screen and (max-width: 991px) {
  .seo-about-sec .sasly-image-box.style-one .image-one .circle-shape {
    left: -30px;
  }
}
@media (max-width: 767px) {
  .seo-about-sec .sasly-image-box.style-one .image-one .circle-shape {
    left: auto;
    right: 0;
  }
}
.seo-about-sec .sasly-image-box.style-one .text-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.seo-about-sec .sasly-image-box.style-one .text-box span {
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid var(--border-color);
  max-width: 100px;
  line-height: 27px;
}

.seo-company {
  background-color: #0C1C18;
}
.seo-company .text-box h5 {
  color: var(--white-color);
}

.seo-service .sasly-image-box.style-one {
  position: relative;
  max-width: 660px;
  min-height: 480px;
}
.seo-service .sasly-image-box.style-one .sasly-image img {
  border-radius: 10px;
}
.seo-service .sasly-image-box.style-one .element-image {
  position: absolute;
  bottom: 50px;
  right: 0;
  max-width: 220px;
}
.seo-service .sasly-image-box.style-one .element-image img {
  border-radius: 10px;
}
.seo-service .sasly-image-box.style-one .shape {
  position: absolute;
  top: 50px;
  right: 25px;
}
.seo-service .section-content-box {
  padding-left: 50px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .seo-service .section-content-box {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .seo-service .section-content-box {
    padding-left: 0;
  }
}
.seo-service .sasly-iconic-box.style-nine {
  text-align: left;
}
.seo-service .sasly-iconic-box.style-nine .content p {
  margin-bottom: 20px;
}
.seo-service .sasly-iconic-box.style-nine .content .read-more {
  color: var(--heading-color);
  font-weight: 500;
  text-decoration: underline;
}
.seo-service .sasly-iconic-box.box-one {
  background-color: #F3F4F0;
}
.seo-service .sasly-iconic-box.box-one .icon {
  background-color: #295C51;
}
.sasly-iconic-box.style-nine .icon img {
    max-width: 35px;
}
.seo-service .sasly-iconic-box.box-two {
  background-color: #FCF6EB;
}
.seo-service .sasly-iconic-box.box-two .icon {
  background-color: #E9BB71;
}
.seo-service .sasly-iconic-box.box-three {
  background-color: #F9F8FE;
}
.seo-service .sasly-iconic-box.box-three .icon {
  background-color: #AF9FFF;
}

/* Service Details CSS */
.service-details-wrapper .service-item .content h2 {
  margin-bottom: 25px;
  font-size: 48px;
}
@media screen and (max-width: 991px) {
  .service-details-wrapper .service-item .content h2 {
    font-size: 32px;
    line-height: 1;
  }
}
.service-details-wrapper .service-item .content h4 {
  margin-bottom: 15px;
}
.service-details-wrapper .service-item .content p {
  margin-bottom: 30px;
}

/* Project Details Page */
.project-details-ss .project-thumbnail .thumbnail {
  position: relative;
}
.project-details-ss .project-thumbnail .thumbnail img {
  border-radius: 7px;
  min-height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .project-details-ss .project-thumbnail .thumbnail img {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .project-details-ss .project-thumbnail .thumbnail img {
    min-height: 20px;
  }
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  max-width: 400px;
  width: 100%;
  padding: 40px 50px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .project-details-ss .project-thumbnail .thumbnail .project-info-box {
    padding: 20px 30px;
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 40px;
  }
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box h4.title {
  letter-spacing: -0.48px;
  color: var(--white-color);
  margin-bottom: 20px;
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box ul li {
  display: block;
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box ul li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box ul li span {
  font: 500 16px var(--heading-font);
  color: var(--white-color);
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box ul li span.title {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.36px;
}
.project-details-ss .project-thumbnail .thumbnail .project-info-box ul li span.info {
  float: right;
}
.project-details-ss .project-content .content h3.title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1.04px;
  margin-bottom: 33px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .project-details-ss .project-content .content h3.title {
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .project-details-ss .project-content .content h3.title {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 40px;
  }
}
.project-details-ss .project-content .content p {
  margin-bottom: 40px;
}
.project-details-ss .project-content .content ul {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .project-details-ss .project-content .content ul {
    margin-bottom: 30px;
  }
}
.project-details-ss .project-content .content h5 {
  margin-bottom: 10px;
}
.project-details-ss .project-content .content .block-image img {
  border-radius: 7px;
}

/* Faqs Page */
.faqs-page-ss .sasly-image-box img {
  border-radius: 7px;
}

.sasly-nav-tabs .nav-tabs {
  border-bottom: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sasly-nav-tabs li {
  display: block;
}
.sasly-nav-tabs .nav-link {
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 7px;
  padding: 8px 25px;
  letter-spacing: -0.36px;
  font: 600 18px var(--heading-font);
  color: var(--heading-color);
  margin-bottom: 10px;
}
.sasly-nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Blog Standard CSS */
.blog-standard-ss .blog-quote-post-item {
  background-color: rgba(41, 92, 81, 0.122);
}

/* Contact Page CSS */
.contact-ss .sasly-iconic-box.style-twelve {
  padding: 50px 50px 40px;
  background-color: rgba(41, 92, 81, 0.122);
  border-radius: 10px;
}
.wpcf7-form-control-wrap {
    position: relative;
    display: block;
}

/*other theme*/

.woocommerce-Button,
#place_order,
.woocommerce-shipping-calculator button {
  display: inline-block;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff
}

.woocommerce-Button:hover,
.woocommerce-Button:focus,
.woocommerce-Button:active,
#place_order:hover,
#place_order:focus,
#place_order:active,
.woocommerce-shipping-calculator button:hover,
.woocommerce-shipping-calculator button:focus,
.woocommerce-shipping-calculator button:active {
  background: none;
  color: var(--primary-color);
  border: 1px solid var(--primary-color)
}

.btn {
  border-radius: 2px;
  border: 1px solid #000
}

.btn:hover,
.btn:focus,
.btn:active {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  box-shadow: none;
  border: none
}

.woocommerce-Button,
#place_order,
.woocommerce-shipping-calculator button,
.btn {
  width: auto;
  text-transform: uppercase;
  padding: 10px 27px 8px 27px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  box-shadow: none;
  letter-spacing: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s
}

.woocommerce-Button.btn-default,
#place_order.btn-default,
.woocommerce-shipping-calculator button.btn-default,
.btn.btn-default {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 400;
  border-radius: 2px;
  padding: 7px 12px 5px
}

.woocommerce-Button.btn-default:hover,
.woocommerce-Button.btn-default:focus,
.woocommerce-Button.btn-default:active,
#place_order.btn-default:hover,
#place_order.btn-default:focus,
#place_order.btn-default:active,
.woocommerce-shipping-calculator button.btn-default:hover,
.woocommerce-shipping-calculator button.btn-default:focus,
.woocommerce-shipping-calculator button.btn-default:active,
.btn.btn-default:hover,
.btn.btn-default:focus,
.btn.btn-default:active {
  background: #000;
  border-color: #000;
  color: #fff
}

.woocommerce-Button.btn-primary,
#place_order.btn-primary,
.woocommerce-shipping-calculator button.btn-primary,
.btn.btn-primary {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff
}

.woocommerce-Button.btn-primary:hover,
.woocommerce-Button.btn-primary:focus,
.woocommerce-Button.btn-primary:active,
#place_order.btn-primary:hover,
#place_order.btn-primary:focus,
#place_order.btn-primary:active,
.woocommerce-shipping-calculator button.btn-primary:hover,
.woocommerce-shipping-calculator button.btn-primary:focus,
.woocommerce-shipping-calculator button.btn-primary:active,
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active {
  background: none;
  color: var(--primary-color);
  border-color: var(--primary-color)
}

.woocommerce-Button.btn-highlight,
#place_order.btn-highlight,
.woocommerce-shipping-calculator button.btn-highlight,
.btn.btn-highlight {
  background: var(--highlight-color);
  color: #fff;
  border: 1px solid var(--highlight-color);
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 9px 20px
}

.woocommerce-Button.btn-highlight.btn-border,
#place_order.btn-highlight.btn-border,
.woocommerce-shipping-calculator button.btn-highlight.btn-border,
.btn.btn-highlight.btn-border {
  background: none;
  color: var(--highlight-color);
  border-color: var(--highlight-color);
  border-radius: 8px;
  text-transform: capitalize;
  font-family: "Open Sans";
  line-height: 30px;
  height: 50px;
  font-weight: 700;
  font-size: 20px;
  padding: 10px 23px 8px
}

.woocommerce-Button.btn-highlight.btn-border:hover,
#place_order.btn-highlight.btn-border:hover,
.woocommerce-shipping-calculator button.btn-highlight.btn-border:hover,
.btn.btn-highlight.btn-border:hover {
  background-color: var(--highlight-color);
  color: #fff
}

.woocommerce-Button.btn-highlight:hover,
.woocommerce-Button.btn-highlight:focus,
.woocommerce-Button.btn-highlight:active,
#place_order.btn-highlight:hover,
#place_order.btn-highlight:focus,
#place_order.btn-highlight:active,
.woocommerce-shipping-calculator button.btn-highlight:hover,
.woocommerce-shipping-calculator button.btn-highlight:focus,
.woocommerce-shipping-calculator button.btn-highlight:active,
.btn.btn-highlight:hover,
.btn.btn-highlight:focus,
.btn.btn-highlight:active {
  color: var(--highlight-color);
  background: none
}

.woocommerce-Button.btn-black,
#place_order.btn-black,
.woocommerce-shipping-calculator button.btn-black,
.btn.btn-black {
  background: #333;
  color: #fff;
  padding: 10px 27px 8px 27px;
  border: 1px solid #333
}

.woocommerce-Button.btn-black:hover,
.woocommerce-Button.btn-black:focus,
.woocommerce-Button.btn-black:active,
#place_order.btn-black:hover,
#place_order.btn-black:focus,
#place_order.btn-black:active,
.woocommerce-shipping-calculator button.btn-black:hover,
.woocommerce-shipping-calculator button.btn-black:focus,
.woocommerce-shipping-calculator button.btn-black:active,
.btn.btn-black:hover,
.btn.btn-black:focus,
.btn.btn-black:active {
  background: var(--primary-color);
  border-color: var(--primary-color)
}

.woocommerce-Button.btn-secondary,
#place_order.btn-secondary,
.woocommerce-shipping-calculator button.btn-secondary,
.btn.btn-secondary {
  background: var(--highlight-color);
  color: var(--primary-color);
  border-color: var(--highlight-color)
}

.woocommerce-Button.btn-secondary:hover,
.woocommerce-Button.btn-secondary:focus,
.woocommerce-Button.btn-secondary:active,
#place_order.btn-secondary:hover,
#place_order.btn-secondary:focus,
#place_order.btn-secondary:active,
.woocommerce-shipping-calculator button.btn-secondary:hover,
.woocommerce-shipping-calculator button.btn-secondary:focus,
.woocommerce-shipping-calculator button.btn-secondary:active,
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
  background: var(--primary-color);
  color: #000;
  border-color: var(--primary-color)
}

.woocommerce-Button.btn-white,
#place_order.btn-white,
.woocommerce-shipping-calculator button.btn-white,
.btn.btn-white {
  background: #fff;
  color: #000;
  border: 1px solid #fff
}

.woocommerce-Button.btn-white:hover,
.woocommerce-Button.btn-white:focus,
.woocommerce-Button.btn-white:active,
#place_order.btn-white:hover,
#place_order.btn-white:focus,
#place_order.btn-white:active,
.woocommerce-shipping-calculator button.btn-white:hover,
.woocommerce-shipping-calculator button.btn-white:focus,
.woocommerce-shipping-calculator button.btn-white:active,
.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
  background: #000;
  color: #fff;
  border-color: #000
}

.woocommerce-Button.btn-border,
#place_order.btn-border,
.woocommerce-shipping-calculator button.btn-border,
.btn.btn-border {
  border-bottom: 1px solid #333;
  padding: 38px 0 1px;
  position: relative;
  box-shadow: none;
  color: #333;
  font-size: 14px;
  letter-spacing: 1.6px
}

.woocommerce-Button.btn-border:hover,
#place_order.btn-border:hover,
.woocommerce-shipping-calculator button.btn-border:hover,
.btn.btn-border:hover {
  color: var(--primary-color);
  border-color: var(--primary-color)
}

.woocommerce-Button.btn-border-white,
#place_order.btn-border-white,
.woocommerce-shipping-calculator button.btn-border-white,
.btn.btn-border-white {
  border: 1px solid #fff;
  position: relative;
  box-shadow: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.4px;
  font-weight: 600;
  border-radius: 5px;
  padding: 8px 25px 10px
}

.woocommerce-Button.btn-border-white:hover,
#place_order.btn-border-white:hover,
.woocommerce-shipping-calculator button.btn-border-white:hover,
.btn.btn-border-white:hover {
  color: var(--primary-color);
  background: #fff
}

.woocommerce-Button.btn-radius,
#place_order.btn-radius,
.woocommerce-shipping-calculator button.btn-radius,
.btn.btn-radius {
  border-radius: 30px
}

.woocommerce-Button.btn-bg,
#place_order.btn-bg,
.woocommerce-shipping-calculator button.btn-bg,
.btn.btn-bg {
  border: none !important;
  box-shadow: none !important;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  position: relative;
  background: linear-gradient(to top, transparent 50%, #ffffff 50%);
  background: -moz-linear-gradient(to top, transparent 50%, #ffffff 50%);
  background: -o-linear-gradient(to top, transparent 50%, #ffffff 50%);
  background: -ms-linear-gradient(to top, transparent 50%, #ffffff 50%);
  background: -webkit-linear-gradient(top, transparent 50%, #ffffff 50%)
}

.woocommerce-Button.btn-bg:hover,
.woocommerce-Button.btn-bg:active,
.woocommerce-Button.btn-bg:focus,
#place_order.btn-bg:hover,
#place_order.btn-bg:active,
#place_order.btn-bg:focus,
.woocommerce-shipping-calculator button.btn-bg:hover,
.woocommerce-shipping-calculator button.btn-bg:active,
.woocommerce-shipping-calculator button.btn-bg:focus,
.btn.btn-bg:hover,
.btn.btn-bg:active,
.btn.btn-bg:focus {
  border: none !important;
  box-shadow: none !important;
  color: var(--primary-color)
}

/*mini cart top*/
.header-mini-cart .nav-link {
    position: relative;
}

.header-mini-cart .badge {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.75rem;
    border-radius: 50%;
}

.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

.dropdown-menu .woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.dropdown-menu .woocommerce-mini-cart-item img {
    width: 50px;
    height: auto;
    margin-right: 10px;
    border-radius: 5px;
}

.dropdown-menu .woocommerce-mini-cart-item .product-name {
    font-weight: 500;
}

.dropdown-menu a.btn {
    text-transform: uppercase;
}

/**/
/* ================================
   WOO MINI CART (Bootstrap Styled)
   ================================ */

.dropdown-menu.woocommerce-mini-cart {
  min-width: 320px;
  border-radius: 10px;
  padding: 1rem !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: none;
  background: #fff;
}

/* Mini Cart Item Layout */
.woocommerce-mini-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e9ecef;
}

.woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

/* Product Thumbnail */
.woocommerce-mini-cart-item img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 8px;
}

/* Product Title */
.woocommerce-mini-cart-item a:not(.remove) {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    flex-grow: 1;
    font-size: 0.95rem;
    padding: 0px 6px;
}
.woocommerce-mini-cart-item a:not(.remove):hover {
  color: #198754; /* Bootstrap success color */
}

/* Remove Button */
.woocommerce-mini-cart-item .remove {
  color: #dc3545;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
  margin-right: 6px;
  opacity: 0.75;
}

.woocommerce-mini-cart-item .remove:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Quantity, Price, and Subscription Text */
.woocommerce-mini-cart-item .quantity {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 4px;
    line-height: 20px;
}

/* Subtotal Section */
.woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dee2e6;
  color: #212529;
}

/* Buttons (View Cart & Checkout) */
.woocommerce-mini-cart__buttons {
  display: flex;
  /*flex-direction: column;*/
  gap: 8px;
  margin-top: 10px;
}

.woocommerce-mini-cart__buttons .button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 4px 18px !important;
    border-radius: 8px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.2s ease;
    border-radius: 25px;
}


.woocommerce-mini-cart__buttons .button {
  background-color: #198754;
  color: #fff;
  border: 2px solid #198754;
}

.woocommerce-mini-cart__buttons .button:hover {
  background-color: #157347;
}

/* Dropdown Shadow & Spacing Fix */
.dropdown-menu.show {
  transform: translate(0, 42px) !important;
  margin-top: 0 !important;
}

/* Optional – smoother transitions */
.woocommerce-mini-cart-item,
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__buttons .button {
  transition: all 0.25s ease;
}

/*end mini cart*/

.woocommerce-view-subscription h2, .woocommerce-view-subscription h3 {
    font-size: 22px;
    line-height: 34px;
    margin-bottom: 25px;
}
a.custom-logo-link img {
    height: auto !important;
    max-width: 200px;
}
.blog-post-item.style-three {
    background: #F3F4F0;
}
/*thank you*/
/* -----------------------------
   WooCommerce Thank You Page Styling
   Designed by ChatGPT 💎
----------------------------- */

.woocommerce-order {
    /* max-width: 700px; */
    /* margin: 60px auto; */
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    /* box-shadow: 0 4px 30px rgba(0,0,0,0.08); */
    font-family: "Poppins", "Inter", sans-serif;
    color: #333;
}

.woocommerce-notice--success {
  font-size: 1.3rem;
  font-weight: 600;
  color: #295c51;
  text-align: center;
  background: #e8f9f5;
  padding: 16px 25px;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #c5f2e7;
}

/* Order Overview */
.woocommerce-order-overview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 25px 0;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

.woocommerce-order-overview li {
  flex: 1 1 45%;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.woocommerce-order-overview li strong {
  display: block;
  font-weight: 600;
  color: #111;
  margin-top: 4px;
}

/* Pay with message */
.woocommerce-order > p {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 40px;
}

/* Section titles */
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  border-left: 5px solid #295c51;
  padding-left: 12px;
  margin-bottom: 20px;
}

/* Order Table */
.woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.woocommerce-table--order-details th {
  text-align: left;
  background: #f5f5f5;
  padding: 12px 15px;
  font-weight: 600;
}

.woocommerce-table--order-details td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}

.woocommerce-table__product-name a {
  color: #0073aa;
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-table__product-name a:hover {
  color: #295c51;
}

/* Totals section */
.woocommerce-table--order-details tfoot tr th,
.woocommerce-table--order-details tfoot tr td {
  font-weight: 600;
  padding-top: 10px;
}

.woocommerce-table--order-details tfoot tr:last-child td {
  color: #295c51;
  font-size: 1.1rem;
}

/* Billing Address */
.woocommerce-customer-details address {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.7;
  font-size: 0.95rem;
  color: #444;
  border: 1px solid #eee;
}

.woocommerce-customer-details--phone,
.woocommerce-customer-details--email {
  font-weight: 600;
  margin-top: 10px;
  color: #333;
}

/* Responsive */
@media (max-width: 600px) {
  .woocommerce-order {
    padding: 25px;
  }
  .woocommerce-order-overview li {
    flex: 1 1 100%;
    border-bottom: 1px solid #eee;
  }
}

/*end thank you*/

/* =========================================================
   My Subscription page (YITH WooCommerce Subscription)
   Targets both the listing (/my-account/my-subscription/)
   and the single subscription detail view.
   ========================================================= */

/* Section container & headings */
.woocommerce-account .woocommerce-MyAccount-content .ywsbs-my-subscriptions,
.woocommerce-account .woocommerce-MyAccount-content .ywsbs-subscription-view-wrap,
.woocommerce-account .woocommerce-MyAccount-content .ywsbs_subscription_table {
  font-family: "Poppins", "Inter", sans-serif;
  color: #2a2f2c;
}

.woocommerce-account .woocommerce-MyAccount-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0C1C18;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ecece6;
  letter-spacing: 0.2px;
}

/* Empty state */
.ywsbs-my-subscriptions {
  background: #FCF6EB;
  border: 1px dashed #E9BB71;
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  color: #5a5f5c;
  font-size: 15px;
}

/* ---------- Subscriptions listing table ---------- */
.ywsbs_subscription_table.shop_table {
  width: 100%;
  border: 1px solid #ecece6;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(12, 28, 24, 0.04);
  margin-bottom: 32px;
}

.ywsbs_subscription_table.shop_table thead th {
  background: #FAFAF7;
  color: #0C1C18;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 16px 18px;
  border: 0;
  border-bottom: 1px solid #ecece6;
  text-align: left;
}

.ywsbs_subscription_table.shop_table tbody td {
  padding: 18px;
  font-size: 14.5px;
  color: #2a2f2c;
  border: 0;
  border-bottom: 1px solid #f1f1ec;
  vertical-align: middle;
  background: #ffffff;
  transition: background-color .2s ease;
}

.ywsbs_subscription_table.shop_table tbody tr:last-child td {
  border-bottom: 0;
}

.ywsbs_subscription_table.shop_table tbody tr:hover td {
  background-color: #FDFBF6;
}

.ywsbs_subscription_table.shop_table td.ywsbs-subscription a {
  color: #295C51;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: all .2s ease;
}

.ywsbs_subscription_table.shop_table td.ywsbs-subscription a:hover {
  color: #f0831c;
  border-bottom-color: #f0831c;
}

.ywsbs_subscription_table .empty-date {
  color: #b9b9b1;
  font-weight: 500;
}

/* ---------- Status pills ---------- */
.ywsbs_subscription_table .status,
.ywsbs-subscription-info-box .status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  line-height: 1.4;
  border: 1px solid transparent;
}

.ywsbs_subscription_table .status.active,
.ywsbs-subscription-info-box .status.active {
  background: #E6F5EF;
  color: #18674e;
  border-color: #c4ebd9;
}

.ywsbs_subscription_table .status.paused,
.ywsbs-subscription-info-box .status.paused {
  background: #FFF6E0;
  color: #8a6500;
  border-color: #ffe3a3;
}

.ywsbs_subscription_table .status.cancelled,
.ywsbs_subscription_table .status.expired,
.ywsbs-subscription-info-box .status.cancelled,
.ywsbs-subscription-info-box .status.expired {
  background: #FBEAEA;
  color: #a02020;
  border-color: #f3c8c8;
}

.ywsbs_subscription_table .status.pending,
.ywsbs_subscription_table .status.overdue,
.ywsbs-subscription-info-box .status.pending,
.ywsbs-subscription-info-box .status.overdue {
  background: #FEF1E6;
  color: #b15a14;
  border-color: #f7d7b6;
}

/* ---------- Subscription detail view ---------- */
.ywsbs-subscription-view-wrap h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0C1C18;
  margin: 8px 0 26px;
  letter-spacing: 0.2px;
}

.ywsbs-back-url {
  margin-bottom: 18px;
}

.ywsbs-back-url a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #295C51;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: #F3F4F0;
  border: 1px solid transparent;
  transition: all .2s ease;
}

.ywsbs-back-url a:hover {
  background: #ffffff;
  border-color: #295C51;
  color: #f0831c;
}

/* Info wrapper -> two-column grid on desktop */
.ywsbs-subscription-info-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .ywsbs-subscription-info-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Card box (info, totals, billing, shipping) */
.ywsbs-box {
  background: #ffffff;
  border: 1px solid #ecece6;
  border-radius: 14px;
  padding: 26px 26px 22px;
  box-shadow: 0 4px 24px rgba(12, 28, 24, 0.04);
  transition: box-shadow .25s ease, transform .25s ease;
}

.ywsbs-box:hover {
  box-shadow: 0 8px 30px rgba(12, 28, 24, 0.08);
}

.ywsbs-box h3 {
  margin: 0 0 18px;
  padding: 0 0 12px 14px;
  border-bottom: 1px solid #ecece6;
  border-left: 4px solid #295C51;
  font-size: 16px;
  font-weight: 700;
  color: #0C1C18;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ywsbs-subscription-info-box.subscription-totals h3,
.ywsbs-box.billing-info h3 {
  border-left-color: #f0831c;
}

.ywsbs-box.shipping-info h3 {
  border-left-color: #E9BB71;
}

/* Key / value rows inside info boxes */
.ywsbs-subscription-info-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px dashed #efefe9;
  font-size: 14.5px;
  color: #2a2f2c;
}

.ywsbs-subscription-info-item:last-child {
  border-bottom: 0;
}

.ywsbs-subscription-info-item strong {
  color: #5a5f5c;
  font-weight: 600;
  min-width: 140px;
  letter-spacing: 0.2px;
}

.ywsbs-subscription-info-item.status-item {
  align-items: center;
}

/* Totals table */
.subscription-review-table {
  width: 100%;
  border-collapse: collapse;
}

.subscription-review-table th,
.subscription-review-table td {
  padding: 12px 0;
  font-size: 14.5px;
  text-align: left;
  border-bottom: 1px dashed #efefe9;
  color: #2a2f2c;
}

.subscription-review-table td {
  text-align: right;
}

.subscription-review-table .item-info th a {
  color: #295C51;
  font-weight: 600;
  text-decoration: none;
}

.subscription-review-table .item-info th a:hover {
  color: #f0831c;
}

.subscription-review-table .subscription-price {
  color: #0C1C18;
  font-weight: 600;
}

.subscription-review-table tfoot tr:last-child th,
.subscription-review-table tfoot tr:last-child td {
  border-bottom: 0;
  padding-top: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #f0831c;
}

/* Related orders block */
.ywsbs-subscription-related-orders {
  background: #ffffff;
  border: 1px solid #ecece6;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 4px 24px rgba(12, 28, 24, 0.04);
  margin-bottom: 22px;
}

.ywsbs-subscription-related-orders h3 {
  margin: 0 0 18px;
  padding: 0 0 12px 14px;
  border-bottom: 1px solid #ecece6;
  border-left: 4px solid #295C51;
  font-size: 16px;
  font-weight: 700;
  color: #0C1C18;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.ywsbs-subscription-related-orders .shop_table {
  border: 1px solid #ecece6;
  border-radius: 12px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.ywsbs-subscription-related-orders .shop_table thead th {
  background: #FAFAF7;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0C1C18;
  padding: 14px 16px;
  border-bottom: 1px solid #ecece6;
  text-align: left;
}

.ywsbs-subscription-related-orders .shop_table tbody td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid #f1f1ec;
}

.ywsbs-subscription-related-orders .shop_table tbody tr:last-child td {
  border-bottom: 0;
}

.ywsbs-subscription-related-orders .order-number a {
  color: #295C51;
  font-weight: 600;
  text-decoration: none;
}

.ywsbs-subscription-related-orders .order-number a:hover {
  color: #f0831c;
}

/* Order action buttons inside related orders */
.ywsbs-subscription-related-orders .order-actions .button {
  display: inline-block;
  background: #295C51;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #295C51;
  text-decoration: none;
  margin-left: 6px;
  transition: all .2s ease;
}

.ywsbs-subscription-related-orders .order-actions .button:hover {
  background: #f0831c;
  border-color: #f0831c;
}

.ywsbs-subscription-related-orders .order-actions .button.cancel {
  background: transparent;
  color: #a02020;
  border-color: #f3c8c8;
}

.ywsbs-subscription-related-orders .order-actions .button.cancel:hover {
  background: #FBEAEA;
  color: #a02020;
}

/* Order status labels inside related orders table */
.ywsbs-subscription-related-orders [class^="status-"],
.ywsbs-subscription-related-orders [class*=" status-"] {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  background: #F3F4F0;
  color: #2a2f2c;
}

.ywsbs-subscription-related-orders .status-completed { background: #E6F5EF; color: #18674e; }
.ywsbs-subscription-related-orders .status-processing { background: #FEF1E6; color: #b15a14; }
.ywsbs-subscription-related-orders .status-pending,
.ywsbs-subscription-related-orders .status-on-hold { background: #FFF6E0; color: #8a6500; }
.ywsbs-subscription-related-orders .status-cancelled,
.ywsbs-subscription-related-orders .status-failed,
.ywsbs-subscription-related-orders .status-trash { background: #FBEAEA; color: #a02020; }

/* Pagination */
.woocommerce-pagination--without-numbers {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.woocommerce-pagination--without-numbers .woocommerce-button {
  background: #ffffff;
  color: #295C51;
  border: 1px solid #295C51;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}

.woocommerce-pagination--without-numbers .woocommerce-button:hover {
  background: #295C51;
  color: #ffffff;
}

/* Responsive: collapse the listing table into stacked cards on mobile */
@media (max-width: 768px) {
  .ywsbs_subscription_table.shop_table,
  .ywsbs_subscription_table.shop_table tbody,
  .ywsbs_subscription_table.shop_table tr,
  .ywsbs_subscription_table.shop_table td {
    display: block;
    width: 100%;
  }

  .ywsbs_subscription_table.shop_table thead {
    display: none;
  }

  .ywsbs_subscription_table.shop_table tbody tr {
    background: #ffffff;
    border: 1px solid #ecece6;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 24px rgba(12, 28, 24, 0.04);
  }

  .ywsbs_subscription_table.shop_table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #efefe9;
    text-align: right;
  }

  .ywsbs_subscription_table.shop_table tbody td:last-child {
    border-bottom: 0;
  }

  .ywsbs_subscription_table.shop_table tbody td::before {
    content: attr(data-title);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #5a5f5c;
  }

  .ywsbs-subscription-info-item strong {
    min-width: auto;
  }
}

/* Slightly tighter padding on small screens */
@media (max-width: 480px) {
  .ywsbs-box,
  .ywsbs-subscription-related-orders {
    padding: 20px 18px;
  }
}

/* =========================================================
   end My Subscription
   ========================================================= */

/*side cart*/

/*end side cart*/