:root {
  --shell-bg: #fbf7f1;
  --shell-surface: rgba(255, 252, 247, 0.92);
  --shell-panel: rgba(255, 255, 255, 0.78);
  --shell-border: rgba(92, 68, 44, 0.12);
  --shell-border-strong: rgba(92, 68, 44, 0.18);
  --shell-text: #30261f;
  --shell-muted: #786555;
  --shell-accent: #b88649;
  --shell-accent-strong: #936438;
  --shell-shadow: 0 18px 45px rgba(54, 35, 20, 0.1);
  --shell-radius-lg: 28px;
  --shell-radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body.aethlion-shell {
  min-height: 100%;
  background:
    radial-gradient(circle at top, rgba(214, 186, 150, 0.24), transparent 34%),
    linear-gradient(180deg, #f4ede2 0, #fbf8f3 240px, #fff 520px);
  color: var(--shell-text);
}

.aethlion-shell .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.aethlion-shell .site-shell__fluid {
  max-width: 1380px;
  margin: 0 auto;
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}

.aethlion-shell .site-header,
.aethlion-shell .site-header.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1040;
  background: var(--shell-surface);
  border-bottom: 1px solid var(--shell-border);
  box-shadow: 0 10px 30px rgba(44, 31, 20, 0.08);
  backdrop-filter: blur(16px);
}

.aethlion-shell .header-area .container-fluid {
  padding-left: clamp(16px, 3vw, 32px);
  padding-right: clamp(16px, 3vw, 32px);
}

.aethlion-shell .site-header__bar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.aethlion-shell .site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  text-decoration: none;
}

.aethlion-shell .site-header__brand-mark {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 239, 227, 0.9));
  border: 1px solid rgba(92, 68, 44, 0.08);
  box-shadow: 0 12px 24px rgba(44, 31, 20, 0.1);
  overflow: hidden;
}

.aethlion-shell .site-header__brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: transparent;
}

.aethlion-shell .site-header__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.aethlion-shell .site-header__eyebrow {
  color: var(--shell-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.aethlion-shell .site-header__name {
  color: var(--shell-text);
  font-family: "Bree Serif", serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  line-height: 1;
}

.aethlion-shell .site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aethlion-shell .site-header__utility-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--shell-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--shell-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aethlion-shell .site-header__utility-link:hover,
.aethlion-shell .site-header__utility-link:focus-visible {
  color: #fff;
  background: var(--shell-accent);
  border-color: var(--shell-accent);
}

.aethlion-shell .site-header .mini-cart ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.aethlion-shell .site-header .mini-cart ul li {
  position: relative;
}

.aethlion-shell .site-header .cart-icon {
  position: relative;
  right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--shell-border);
  box-shadow: 0 12px 24px rgba(44, 31, 20, 0.1);
  color: var(--shell-text);
}

.aethlion-shell .site-header .cart-icon:hover,
.aethlion-shell .site-header .cart-icon:focus-visible {
  color: var(--shell-accent-strong);
  transform: translateY(-1px);
}

.aethlion-shell .site-header .cart-icon i {
  font-size: 1.25rem;
  line-height: 1;
}

.aethlion-shell .site-header .cart-icon > span {
  position: absolute;
  top: 4px;
  right: 4px;
  left: auto;
  width: 19px;
  height: 19px;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-strong));
  font-size: 0.65rem;
  line-height: 15px;
}

.aethlion-shell .site-header .mini-cart-brief {
  top: calc(100% + 16px);
  right: 0;
  width: min(390px, calc(100vw - 32px));
  border: 1px solid rgba(92, 68, 44, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(44, 31, 20, 0.16);
  overflow: hidden;
}

.aethlion-shell .site-header .mini-cart ul li:hover .mini-cart-brief,
.aethlion-shell .site-header .mini-cart ul li:focus-within .mini-cart-brief {
  top: calc(100% + 10px);
}

.aethlion-shell .site-header .cart-items {
  padding: 22px 24px 16px;
  border: 0;
  background: linear-gradient(180deg, rgba(246, 236, 220, 0.7), rgba(255, 255, 255, 0));
}

.aethlion-shell .site-header .cart-items p {
  margin: 0;
  color: var(--shell-muted);
  font-size: 0.92rem;
}

.aethlion-shell .site-header .cart-items span {
  color: var(--shell-text);
  font-weight: 700;
}

.aethlion-shell .site-header .all-cart-product {
  max-height: 280px;
  overflow: auto;
  padding: 0 0 8px;
}

.aethlion-shell .site-header .all-cart-product:empty {
  display: none;
}

.aethlion-shell .site-header .all-cart-product:not(:empty) + .cart-empty-state {
  display: none;
}

.aethlion-shell .site-header .single-cart {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 24px;
  border-top: 1px solid rgba(92, 68, 44, 0.08);
}

.aethlion-shell .site-header .cart-photo {
  width: 72px;
  flex: 0 0 72px;
  float: none;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f1ea;
}

.aethlion-shell .site-header .cart-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.aethlion-shell .site-header .cart-info {
  float: none;
  flex: 1;
  padding-left: 0;
}

.aethlion-shell .site-header .cart-info h5 {
  margin-bottom: 8px;
  font-family: "Bree Serif", serif;
  font-size: 0.95rem;
  text-transform: none;
}

.aethlion-shell .site-header .cart-info h5 a {
  color: var(--shell-text);
}

.aethlion-shell .site-header .cart-info p {
  margin-bottom: 4px;
  color: var(--shell-muted);
  font-size: 0.86rem;
}

.aethlion-shell .site-header .cart-delete {
  position: static;
  display: inline-flex;
  margin-top: 8px;
}

.aethlion-shell .site-header .cart-delete a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f6f1ea;
}

.aethlion-shell .site-header .cart-empty-state {
  padding: 0 24px 18px;
  color: var(--shell-muted);
}

.aethlion-shell .site-header .cart-totals {
  padding: 18px 24px;
  border-top: 1px solid rgba(92, 68, 44, 0.08);
  border-bottom: 1px solid rgba(92, 68, 44, 0.08);
  background: rgba(250, 245, 237, 0.8);
}

.aethlion-shell .site-header .cart-totals h5 {
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aethlion-shell .site-header .cart-bottom {
  display: flex;
  gap: 12px;
  padding: 20px 24px 24px;
}

.aethlion-shell .site-header .cart-bottom .button-one {
  flex: 1;
  margin: 0;
  float: none;
  text-align: center;
}

.aethlion-shell .site-header__mobile-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--shell-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 24px rgba(44, 31, 20, 0.1);
}

.aethlion-shell .site-header__mobile-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 73, 0.22);
}

.aethlion-shell .site-header__nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 18px;
  border-top: 1px solid var(--shell-border);
}

.aethlion-shell .site-header .main-menu {
  position: static;
  left: auto;
  top: auto;
  width: 100%;
  height: auto;
  padding-top: 18px;
  background: transparent;
  z-index: auto;
}

.aethlion-shell .site-header .main-menu > nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.aethlion-shell .site-header .main-menu > nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--shell-text);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0.03em;
}

.aethlion-shell .site-header .main-menu > nav > ul > li > a::before {
  display: none;
}

.aethlion-shell .site-header .main-menu > nav > ul > li > a:hover,
.aethlion-shell .site-header .main-menu > nav > ul > li > a:focus-visible,
.aethlion-shell .site-header .main-menu > nav > ul > li > a.is-current {
  color: #fff;
  background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-strong));
  box-shadow: 0 14px 28px rgba(147, 100, 56, 0.22);
}

.aethlion-shell .site-mobile-nav {
  padding: 16px 0 20px;
  border-top: 1px solid var(--shell-border);
}

.aethlion-shell .site-mobile-nav__list {
  display: grid;
  gap: 8px;
}

.aethlion-shell .site-mobile-nav__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(92, 68, 44, 0.08);
  color: var(--shell-text);
  font-size: 0.95rem;
  font-weight: 700;
}

.aethlion-shell .site-mobile-nav__list a::after {
  content: "›";
  color: var(--shell-accent-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.aethlion-shell .site-mobile-nav__list a.is-current {
  color: #fff;
  background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-strong));
  border-color: transparent;
}

.aethlion-shell .site-mobile-nav__list a.is-current::after {
  color: #fff;
}

.aethlion-shell .site-mobile-nav__footer {
  padding-top: 12px;
}

.aethlion-shell .site-main {
  flex: 1;
  padding-bottom: clamp(48px, 6vw, 88px);
}

.aethlion-shell .site-main > .heading-banner-area {
  background-position: center;
  background-size: cover;
}

.aethlion-shell .site-main .heading-banner-title h2 {
  padding: 110px 0 26px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: none;
}

.aethlion-shell .site-main .breadcumbs {
  padding-bottom: 28px !important;
}

.aethlion-shell .site-main .breadcumbs ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.aethlion-shell .site-main .breadcumbs li {
  float: none;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.aethlion-shell .site-main .breadcumbs li::after {
  content: "•";
  left: -16px;
}

.aethlion-shell .site-main__container {
  max-width: 1200px;
  padding-top: clamp(18px, 3vw, 28px);
}

.aethlion-shell .site-footer {
  margin-top: auto;
}

.aethlion-shell .site-footer .footer-area.footer-2 {
  padding: clamp(56px, 7vw, 82px) 0 34px;
  background:
    radial-gradient(circle at top right, rgba(214, 186, 150, 0.28), transparent 34%),
    linear-gradient(180deg, #f3ece1 0, #efe5d8 100%);
  border-top: 1px solid rgba(92, 68, 44, 0.08);
}

.aethlion-shell .site-footer__panel {
  height: 100%;
  padding: 28px;
  border: 1px solid rgba(92, 68, 44, 0.1);
  border-radius: var(--shell-radius-lg);
  background: var(--shell-panel);
  box-shadow: var(--shell-shadow);
  backdrop-filter: blur(12px);
}

.aethlion-shell .site-footer__panel--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aethlion-shell .site-footer .footer-title {
  margin-bottom: 22px;
  color: var(--shell-text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
}

.aethlion-shell .site-footer .footer-title.title-border::before {
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: var(--shell-accent);
}

.aethlion-shell .site-footer .footer-contact li {
  padding-bottom: 16px;
  color: var(--shell-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.aethlion-shell .site-footer .footer-contact li span {
  float: none;
  display: block;
  width: auto;
  margin-bottom: 3px;
  color: var(--shell-muted);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aethlion-shell .site-footer__note {
  margin-bottom: 18px;
  color: var(--shell-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.aethlion-shell .site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-strong));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}

.aethlion-shell .site-footer__cta:hover,
.aethlion-shell .site-footer__cta:focus-visible {
  color: #fff;
  filter: brightness(1.04);
}

.aethlion-shell .site-footer .footer-subscribe form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aethlion-shell .site-footer .footer-subscribe input {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0 16px;
  top: auto;
  border: 1px solid rgba(92, 68, 44, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--shell-text);
}

.aethlion-shell .site-footer .footer-subscribe input:focus {
  border-color: rgba(184, 134, 73, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(184, 134, 73, 0.14);
}

.aethlion-shell .site-footer .footer-subscribe button {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--shell-accent), var(--shell-accent-strong));
  color: #fff;
}

.aethlion-shell .site-footer .footer-subscribe button:hover,
.aethlion-shell .site-footer .footer-subscribe button:focus-visible {
  background:
    radial-gradient(circle at top, rgba(214, 186, 150, 0.24), transparent 34%),
    linear-gradient(180deg, #f4ede2 0, #fbf8f3 240px, #fff 520px);
  color: #fff;
}

.aethlion-shell .site-footer .copyright-area,
.aethlion-shell .site-footer .copyright-area.copyright-2 {
    background: radial-gradient(circle at top, rgba(214, 186, 150, 0.24), transparent 34%), linear-gradient(180deg, #f4ede2 0, #fbf8f3 240px, #fff 520px);
    padding: 0 0 30px;
}

.aethlion-shell .site-footer .copyright-area .row {
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(92, 68, 44, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(44, 31, 20, 0.08);
}

.aethlion-shell .site-footer .copyright,
.aethlion-shell .site-footer .payment {
  line-height: 1.6;
}

.aethlion-shell .site-footer .copyright p,
.aethlion-shell .site-footer .payment {
  color: var(--shell-muted);
  font-size: 0.92rem;
}

.aethlion-shell .site-footer .copyright a {
  color: var(--shell-text);
  font-weight: 700;
}

.aethlion-shell .site-footer .payment img {
  opacity: 0.92;
}

@media (max-width: 991.98px) {
  .aethlion-shell .site-header__brand-copy {
    display: none;
  }

  .aethlion-shell .site-header__bar {
    min-height: 82px;
  }

  .aethlion-shell .site-footer__panel {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .aethlion-shell .site-header,
  .aethlion-shell .site-header.sticky {
    backdrop-filter: blur(12px);
  }

  .aethlion-shell .site-header__bar {
    min-height: 76px;
    gap: 10px;
  }

  .aethlion-shell .site-header__brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .aethlion-shell .site-header__actions {
    gap: 10px;
  }

  .aethlion-shell .site-header .mini-cart-brief {
    display: none;
  }

  .aethlion-shell .site-main > .heading-banner-area {
    margin-bottom: 24px;
  }

  .aethlion-shell .site-main .heading-banner-title h2 {
    padding: 88px 0 20px;
  }

  .aethlion-shell .site-main .breadcumbs ul {
    gap: 10px 22px;
  }

  .aethlion-shell .site-footer .copyright-area .row {
    gap: 12px;
    padding: 18px 20px;
  }
}

@media (max-width: 575.98px) {
  .aethlion-shell .site-header .cart-bottom {
    flex-direction: column;
  }

  .aethlion-shell .site-footer__cta,
  .aethlion-shell .site-header__utility-link {
    width: 100%;
  }
}

.home-hero__meta-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.home-hero__meta-mobile-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
}

.home-hero__meta-mobile-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    font-size: 1.1rem;
}

.home-hero__meta-mobile-content span {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .8;
    margin-bottom: 2px;
}

.home-hero__meta-mobile-content strong {
    display: block;
    font-size: .95rem;
    line-height: 1.35;
    font-weight: 600;
}

.home-hero-mobile {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: stretch;
}

.home-hero-mobile__media,
.home-hero-mobile__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-mobile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.72) 100% );
    z-index: 1;
}

.home-hero-mobile .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: end;
}

.home-hero-mobile__content {
    padding: 80px 0 28px;
    color: #fff;
    max-width: 100%;
}

.home-hero-mobile__title {
    font-size: 1.9rem;
    line-height: 1.15;
    font-weight: 700;
    margin: 12px 0 14px;
}

.home-hero-mobile__text {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 32rem;
}

.home-hero-mobile__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

    .home-hero-mobile__actions .button-one {
        width: 100%;
        max-width: 220px;
        text-align: center;
    }

@media (max-width: 575.98px) {
    .home-hero-mobile {
        min-height: 500px;
    }

    .home-hero-mobile__content {
        padding: 70px 0 24px;
    }

    .home-hero-mobile__title {
        font-size: 1.55rem;
    }

    .home-hero-mobile__text {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .home-hero-mobile__actions .button-one {
        max-width: 100%;
        width: 100%;
    }


}