/* ============================================================
   SHEZA COMPONENTS.CSS
   Header · Footer · Cards · Hero · Shop · Product · Cart · Checkout
   ============================================================ */

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.sheza-announce-bar {
  background: var(--color-soft-black);
  color: var(--color-cream);
  text-align: center;
  padding: 0.6rem 3rem;
  position: relative;
  z-index: 100;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}
.sheza-announce-bar__inner { position: relative; display: inline-block; }
.sheza-announce-bar p { margin: 0; }
.sheza-announce-bar a { color: var(--color-nude); text-decoration: underline; }
.sheza-announce-bar__close {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-cream);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.5;
  padding: 0;
  transition: opacity var(--transition);
}
.sheza-announce-bar__close:hover { opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.sheza-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 1.25rem 0;
}
.sheza-header.is-scrolled {
  background: rgba(253,248,244,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem 0;
}
.sheza-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* NAV LINKS */
.sheza-header__nav { display: flex; align-items: center; }
.sheza-header__nav--left { gap: 2.5rem; justify-content: flex-start; }
.sheza-header__nav--right { gap: 2.5rem; justify-content: flex-end; }

.sheza-nav-link {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-warm-gray);
  transition: color var(--transition);
  position: relative;
}
.sheza-nav-link:hover { color: var(--color-soft-black); }
.sheza-nav-link--cart { display: flex; align-items: center; gap: 0.35rem; }

/* Logo */
.sheza-header__logo { text-align: center; }
.sheza-logo-link { display: inline-block; }
.sheza-logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--color-soft-black);
  display: block;
}
.sheza-logo-text::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--color-nude-dark);
  opacity: 0.6;
  margin-top: 2px;
}
.custom-logo { max-height: 50px; width: auto; }

/* Cart count bubble */
.sheza-cart-count {
  display: none;
  background: var(--color-blush);
  color: var(--color-soft-black);
  font-size: 0.55rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.sheza-cart-count.has-items { display: flex; }

/* Mobile icons */
.sheza-header__mobile-actions {
  display: none;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}
.sheza-mobile-cart { position: relative; color: var(--color-soft-black); }
.sheza-mobile-cart .sheza-cart-count { position: absolute; top: -0.4rem; right: -0.4rem; }

/* Hamburger */
.sheza-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sheza-hamburger__line {
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: var(--color-soft-black);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.sheza-hamburger.is-open .sheza-hamburger__line:first-child { transform: rotate(45deg) translate(3px, 3px); }
.sheza-hamburger.is-open .sheza-hamburger__line:last-child  { transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile Menu */
.sheza-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.sheza-mobile-menu.is-open { opacity: 1; pointer-events: all; }
.sheza-mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.sheza-mobile-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--color-soft-black);
  transition: color var(--transition);
}
.sheza-mobile-link:hover { color: var(--color-nude-dark); }

@media (max-width: 768px) {
  .sheza-header__nav { display: none; }
  .sheza-header__inner { grid-template-columns: 1fr auto; }
  .sheza-header__logo { grid-column: 1; justify-self: start; }
  .sheza-header__mobile-actions { display: flex; grid-column: 2; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.sheza-footer {
  background: var(--color-soft-black);
  color: rgba(253,248,244,0.7);
  padding: 4rem 0 2rem;
}
.sheza-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 1024px) { .sheza-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .sheza-footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.sheza-footer__logo-link .custom-logo { filter: brightness(0) invert(1); max-height: 40px; }
.sheza-footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--color-cream);
  display: block;
}
.sheza-footer__logo-text::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--color-nude-dark);
  opacity: 0.3;
  margin-top: 2px;
}
.sheza-footer__tagline {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(253,248,244,0.45);
  margin-top: 1rem;
  font-weight: 300;
}
.sheza-footer__socials { display: flex; gap: 1.25rem; margin-top: 1.5rem; }
.sheza-footer__social-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(253,248,244,0.35);
  transition: color var(--transition);
}
.sheza-footer__social-link:hover { color: var(--color-nude); }

.sheza-footer__col-title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(253,248,244,0.35);
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 1.25rem;
}
.sheza-footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.sheza-footer__links a {
  font-size: 0.83rem;
  color: rgba(253,248,244,0.55);
  font-weight: 300;
  transition: color var(--transition);
}
.sheza-footer__links a:hover { color: var(--color-cream); }

/* Newsletter */
.sheza-footer__newsletter-desc {
  font-size: 0.8rem;
  color: rgba(253,248,244,0.45);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sheza-newsletter-form__row { display: flex; }
.sheza-newsletter-form .sheza-newsletter-form__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  flex: 1;
  font-size: 0.8rem;
  border-radius: 0;
}
.sheza-newsletter-form .sheza-newsletter-form__input:focus { border-color: var(--color-nude-dark); }
.sheza-newsletter-form .sheza-newsletter-form__input::placeholder { color: rgba(253,248,244,0.2); }
.sheza-newsletter-form__btn {
  background: var(--color-nude-dark);
  color: var(--color-soft-black);
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
  border-radius: 0;
}
.sheza-newsletter-form__btn:hover { background: var(--color-nude); }
.sheza-newsletter-form__feedback { font-size: 0.7rem; margin-top: 0.5rem; color: var(--color-nude-dark); }

.sheza-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.sheza-footer__copy,
.sheza-footer__location {
  font-size: 0.7rem;
  color: rgba(253,248,244,0.25);
  font-weight: 300;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sheza-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.sheza-section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sheza-section__title { font-family: var(--font-display); font-weight: 300; color: var(--color-soft-black); }
.sheza-section__link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  border-bottom: 1px solid rgba(140,123,110,0.3);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.sheza-section__link:hover { color: var(--color-soft-black); border-color: var(--color-soft-black); }
.sheza-section__cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.sheza-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-cream);
  padding-top: 5rem;
}
.sheza-hero__bg { position: absolute; inset: 0; }
.sheza-hero__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sheza-hero__bg-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-nude-light) 0%, var(--color-blush-light) 100%);
}
.sheza-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,248,244,0.95) 0%, rgba(253,248,244,0.65) 55%, transparent 100%);
}
.sheza-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.sheza-hero__orb--1 { width: 20rem; height: 20rem; background: rgba(240,196,196,0.2); top: 20%; right: 22%; }
.sheza-hero__orb--2 { width: 15rem; height: 15rem; background: rgba(232,213,196,0.3); bottom: 25%; right: 30%; }

.sheza-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter) 6rem;
}
.sheza-hero__text { max-width: 36rem; }

.sheza-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--color-soft-black);
  margin-bottom: 1.25rem;
}
.sheza-hero__heading-accent {
  font-style: italic;
  color: var(--color-nude-dark);
}
.sheza-hero__subtext {
  font-size: 1rem;
  color: var(--color-warm-gray);
  font-weight: 300;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 2.5rem;
}
.sheza-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Trending card */
.sheza-hero__trending-card {
  position: absolute;
  bottom: 4rem;
  right: 2rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-soft);
}
.sheza-hero__trending-img {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-nude-light);
  flex-shrink: 0;
}
.sheza-hero__trending-img img { width: 100%; height: 100%; object-fit: cover; }
.sheza-hero__trending-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300; }
.sheza-hero__trending-price { font-size: 0.75rem; color: var(--color-nude-dark); margin: 0; }
.sheza-hero__trending-info .eyebrow { margin-bottom: 0.1rem; }

/* Scroll hint */
.sheza-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.35;
}
.sheza-hero__scroll-hint span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; }
.sheza-hero__scroll-line {
  width: 1px; height: 2rem;
  background: var(--color-soft-black);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}

@media (max-width: 768px) {
  .sheza-hero__trending-card { display: none; }
  .sheza-hero__scroll-hint   { display: none; }
  .sheza-hero__overlay { background: linear-gradient(to bottom, rgba(253,248,244,0.85) 0%, rgba(253,248,244,0.5) 100%); }
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.sheza-marquee-strip {
  background: var(--color-soft-black);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.sheza-marquee-strip__track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
}
.sheza-marquee-strip__item {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(253,248,244,0.35);
  padding-right: 3rem;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.sheza-product-card {
  display: flex;
  flex-direction: column;
}
.sheza-card__link { display: block; text-decoration: none; }
.sheza-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-nude-light);
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
}
.sheza-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s ease;
}
.sheza-card__img--main  { opacity: 1; z-index: 1; }
.sheza-card__img--hover { opacity: 0; z-index: 2; }
.sheza-product-card:hover .sheza-card__img--main  { transform: scale(1.04); }
.sheza-product-card:hover .sheza-card__img--hover { opacity: 1; transform: scale(1.04); }

/* Badges */
.sheza-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sheza-badge {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
}
.sheza-badge--new  { background: var(--color-soft-black); color: var(--color-cream); }
.sheza-badge--sale { background: var(--color-blush); color: var(--color-soft-black); }

/* Quick Add */
.sheza-card__quick-add {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.sheza-product-card:hover .sheza-card__quick-add { opacity: 1; transform: translateY(0); }
.sheza-quick-add-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.65rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: rgba(253,248,244,0.92);
  color: var(--color-soft-black);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.sheza-quick-add-btn:hover { background: var(--color-soft-black); color: var(--color-cream); }
.sheza-quick-add-btn.is-added { background: var(--color-nude-dark); color: var(--color-cream); }
.sheza-quick-add-btn.is-loading { opacity: 0.6; cursor: wait; }

/* Card body */
.sheza-card__body { flex: 1; }
.sheza-card__category {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 0.35rem;
}
.sheza-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0.35rem;
}
.sheza-card__title a { color: var(--color-soft-black); transition: color var(--transition); }
.sheza-card__title a:hover { color: var(--color-warm-gray); }

.sheza-card__price .price { font-size: 0.875rem; font-weight: 500; }
.sheza-card__price ins  { text-decoration: none; color: var(--color-soft-black); }
.sheza-card__price del  { color: rgba(140,123,110,0.5); font-size: 0.78rem; margin-left: 0.35rem; }

.sheza-card__colors { display: flex; gap: 0.35rem; margin-top: 0.5rem; }
.sheza-color-dot {
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: var(--color-nude);
  border: 1px solid rgba(201,169,138,0.3);
}

/* ============================================================
   FEATURES BAR
   ============================================================ */
.sheza-features-bar {
  padding: 4rem 0;
  background: rgba(245,237,228,0.5);
}
.sheza-features-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) { .sheza-features-bar__grid { grid-template-columns: repeat(2, 1fr); } }
.sheza-feature { text-align: center; }
.sheza-feature__icon { font-size: 1.5rem; color: var(--color-nude-dark); margin-bottom: 0.75rem; }
.sheza-feature__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; margin-bottom: 0.3rem; }
.sheza-feature__desc { font-size: 0.75rem; color: var(--color-warm-gray); line-height: 1.5; margin: 0; }

/* ============================================================
   EDITORIAL BANNER
   ============================================================ */
.sheza-editorial {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/7;
  min-height: 220px;
  margin-bottom: 0;
}
.sheza-editorial__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sheza-editorial__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44,35,32,0.6) 0%, rgba(44,35,32,0.15) 60%, transparent 100%);
}
.sheza-editorial__content {
  position: relative;
  z-index: 2;
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.sheza-editorial__heading {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 600px) {
  .sheza-editorial { aspect-ratio: 4/3; }
  .sheza-editorial__content { padding: 2rem 1.5rem; }
}

/* ============================================================
   INSTAGRAM GRID
   ============================================================ */
.sheza-instagram__subtitle { font-size: 0.85rem; color: var(--color-warm-gray); margin-top: 0.5rem; }
.sheza-instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 768px) { .sheza-instagram__grid { grid-template-columns: repeat(3, 1fr); } }
.sheza-instagram__item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-md); }
.sheza-instagram__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.sheza-instagram__item:hover img { transform: scale(1.1); }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.sheza-shop-page { padding-top: 5rem; }

.sheza-shop-header {
  border-bottom: 1px solid var(--color-nude-light);
  padding: 2.5rem 0 1.5rem;
}
.sheza-shop-header__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.sheza-shop-header__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin: 0; }
.sheza-shop-header__count { font-size: 0.8rem; color: var(--color-warm-gray); margin: 0; }
.sheza-shop-header__desc { width: 100%; font-size: 0.85rem; color: var(--color-warm-gray); margin: 0.5rem 0 0; }

.sheza-shop-layout {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
}
@media (max-width: 900px) { .sheza-shop-layout { grid-template-columns: 1fr; } }

/* Sidebar */
.sheza-shop-sidebar { position: sticky; top: 6rem; align-self: start; }

/* Filter groups */
.sheza-filter-group { margin-bottom: 2.5rem; }
.sheza-filter-group__title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.sheza-filter-list { display: flex; flex-direction: column; gap: 0.5rem; }
.sheza-filter-link {
  font-size: 0.85rem;
  color: var(--color-warm-gray);
  transition: color var(--transition);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sheza-filter-link::before { content: ''; display: block; width: 1rem; height: 1px; background: transparent; transition: background var(--transition); }
.sheza-filter-link.is-active { color: var(--color-soft-black); font-weight: 500; }
.sheza-filter-link.is-active::before { background: var(--color-soft-black); }
.sheza-filter-link:hover { color: var(--color-soft-black); }

/* Size filter */
.sheza-size-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sheza-size-btn {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  border: 1.5px solid rgba(201,169,138,0.35);
  color: var(--color-warm-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.sheza-size-btn:hover { border-color: var(--color-soft-black); color: var(--color-soft-black); }
.sheza-size-btn.is-active { border-color: var(--color-soft-black); background: var(--color-soft-black); color: var(--color-cream); }

/* WC Price Slider override */
.widget_price_filter .price_slider_wrapper .ui-slider { background: var(--color-nude-light); }
.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-handle { background: var(--color-soft-black); border: none; }
.widget_price_filter .price_slider_wrapper .ui-slider .ui-slider-range { background: var(--color-nude-dark); }

/* Toolbar */
.sheza-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.sheza-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(201,169,138,0.4);
  color: var(--color-soft-black);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--transition);
}
.sheza-filter-toggle:hover { border-color: var(--color-soft-black); }
@media (max-width: 900px) { .sheza-filter-toggle { display: flex; } }

.sheza-shop-sort { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.sheza-shop-sort__label { font-size: 0.72rem; color: var(--color-warm-gray); }
.sheza-sort-btn {
  font-size: 0.72rem;
  color: var(--color-warm-gray);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  text-decoration: none;
  padding: 0;
}
.sheza-sort-btn:hover { color: var(--color-soft-black); }
.sheza-sort-btn.is-active { color: var(--color-soft-black); text-decoration: underline; text-underline-offset: 3px; }

/* No products */
.sheza-no-products { text-align: center; padding: 5rem 0; }
.sheza-no-products__title { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: rgba(140,123,110,0.5); margin-bottom: 0.75rem; }
.sheza-no-products__subtitle { font-size: 0.85rem; color: rgba(140,123,110,0.4); margin-bottom: 2rem; }

/* Pagination */
.sheza-pagination { margin-top: 3rem; }
.woocommerce-pagination ul { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
.woocommerce-pagination ul li { list-style: none; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1.5px solid rgba(201,169,138,0.3);
  font-size: 0.8rem;
  color: var(--color-warm-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.woocommerce-pagination ul li a:hover { border-color: var(--color-soft-black); color: var(--color-soft-black); }
.woocommerce-pagination ul li span.current { background: var(--color-soft-black); color: var(--color-cream); border-color: var(--color-soft-black); }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.sheza-single-product-page { padding-top: 5rem; }

.sheza-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(140,123,110,0.5);
  padding: 1.5rem 0;
}
.sheza-breadcrumb a { color: rgba(140,123,110,0.5); transition: color var(--transition); }
.sheza-breadcrumb a:hover { color: var(--color-soft-black); }
.sheza-breadcrumb span { opacity: 0.4; }

.sheza-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 900px) { .sheza-product-detail { grid-template-columns: 1fr; gap: 2rem; } }

/* Gallery */
.sheza-product-gallery { display: flex; flex-direction: column; gap: 0.75rem; }

.sheza-gallery__main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-nude-light);
  aspect-ratio: 4/5;
}
.sheza-gallery__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; }
.sheza-gallery__slide.is-active { opacity: 1; position: relative; }
.sheza-gallery__main-img { width: 100%; height: 100%; object-fit: cover; }

.sheza-gallery__badges { position: absolute; top: 1rem; left: 1rem; z-index: 5; display: flex; flex-direction: column; gap: 0.4rem; }

.sheza-gallery__arrow {
  position: absolute;
  bottom: 1rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border: none;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-soft-black);
  transition: background var(--transition);
  z-index: 5;
}
.sheza-gallery__arrow:hover { background: white; }
.sheza-gallery__arrow--prev { left: 1rem; }
.sheza-gallery__arrow--next { right: 1rem; }

.sheza-gallery__thumbs { display: flex; gap: 0.5rem; }
.sheza-gallery__thumb {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 5rem;
  aspect-ratio: 3/4;
  opacity: 0.45;
  transition: opacity var(--transition);
  flex-shrink: 0;
  border: 2px solid transparent;
}
.sheza-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sheza-gallery__thumb:hover { opacity: 0.75; }
.sheza-gallery__thumb.is-active { opacity: 1; border-color: var(--color-soft-black); }

/* Product info */
.sheza-product-info { padding-top: 1.5rem; }
.sheza-product-info__category {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 0.5rem;
}
.sheza-product-info__category a { color: inherit; }
.sheza-product-info__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

/* WC Price in product */
.sheza-product-info__price { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.sheza-product-info__price .price { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; }
.sheza-product-info__price ins  { text-decoration: none; color: var(--color-soft-black); }
.sheza-product-info__price del  { font-size: 1.15rem; color: rgba(140,123,110,0.45); }
.sheza-product-info__discount-badge { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--color-blush); padding: 0.25rem 0.6rem; color: var(--color-soft-black); }

.sheza-product-info__short-desc { font-size: 0.875rem; color: var(--color-warm-gray); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }

/* WC Form overrides for single product */
.sheza-product-info__form .variations_form,
.sheza-product-info__form .cart {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.sheza-product-info__form .variations td,
.sheza-product-info__form .variations th { padding: 0; border: none; vertical-align: top; }
.sheza-product-info__form .variations { width: 100%; }
.sheza-product-info__form .variations label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-warm-gray);
  margin-bottom: 0.75rem;
  display: block;
}
.sheza-product-info__form .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(201,169,138,0.3);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}
.sheza-product-info__form .quantity input[type=number] {
  width: 3rem;
  text-align: center;
  border: none;
  padding: 0.625rem;
  -moz-appearance: textfield;
}
.sheza-product-info__form .quantity input::-webkit-inner-spin-button,
.sheza-product-info__form .quantity input::-webkit-outer-spin-button { -webkit-appearance: none; }
.sheza-product-info__form .single_add_to_cart_button {
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
}

/* Variable product swatches (generic select style) */
.sheza-product-info__form select {
  border: 1.5px solid rgba(201,169,138,0.35);
  border-bottom: 1.5px solid rgba(201,169,138,0.35);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  width: auto;
  min-width: 10rem;
}

.sheza-product-info__view-cart { margin-top: 0.5rem; display: block; text-align: center; }
.sheza-product-info__stock { margin-top: 0.75rem; font-size: 0.8rem; color: var(--color-warm-gray); }
.sheza-product-info__divider { height: 1px; background: var(--color-nude-light); margin: 1.5rem 0; }

.sheza-product-info__section { margin-bottom: 1.5rem; }
.sheza-product-info__section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.sheza-product-info__description { font-size: 0.875rem; color: var(--color-warm-gray); line-height: 1.75; font-weight: 300; }

/* Accordion */
.sheza-accordion { margin-top: 1rem; }
.sheza-accordion__item { border-bottom: 1px solid var(--color-nude-light); }
.sheza-accordion__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-soft-black);
  font-weight: 500;
}
.sheza-accordion__summary::-webkit-details-marker { display: none; }
.sheza-accordion__icon {
  font-size: 1rem;
  color: var(--color-warm-gray);
  transition: transform 0.25s ease;
  line-height: 1;
}
details[open] .sheza-accordion__icon { transform: rotate(45deg); }
.sheza-accordion__body { padding: 0 0 1rem; }
.sheza-accordion__body p { font-size: 0.83rem; color: var(--color-warm-gray); line-height: 1.7; margin: 0; font-weight: 300; }

/* Related products */
.sheza-related-products { border-top: 1px solid var(--color-nude-light); padding-top: 4rem; margin-top: 2rem; }

/* ============================================================
   CART PAGE
   ============================================================ */
.sheza-cart-page { padding-top: 5rem; }
.sheza-page-header { padding: 2rem 0; border-bottom: 1px solid var(--color-nude-light); margin-bottom: 2.5rem; }
.sheza-page-header__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin: 0; }
.sheza-page-header__sub { font-size: 0.85rem; color: var(--color-warm-gray); margin: 0.25rem 0 0; }

.sheza-empty-cart { text-align: center; padding: 6rem 0; }
.sheza-empty-cart__icon {
  width: 5rem; height: 5rem;
  background: var(--color-nude-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-nude-dark);
}
.sheza-empty-cart__title { font-family: var(--font-display); font-size: 2rem; font-weight: 300; margin-bottom: 0.75rem; }
.sheza-empty-cart__desc { font-size: 0.875rem; color: var(--color-warm-gray); margin-bottom: 2rem; }

.sheza-cart-layout { display: grid; grid-template-columns: 1fr 22rem; gap: 3rem; }
@media (max-width: 900px) { .sheza-cart-layout { grid-template-columns: 1fr; } }

.sheza-cart-item { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--color-nude-light); }
.sheza-cart-item__image {
  flex-shrink: 0;
  width: 6rem;
}
.sheza-cart-item__image img { border-radius: var(--radius-lg); object-fit: cover; width: 100%; height: 7.5rem; }
.sheza-cart-item__details { flex: 1; min-width: 0; }
.sheza-cart-item__header { display: flex; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.75rem; }
.sheza-cart-item__cat { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-warm-gray); display: block; margin-bottom: 0.2rem; }
.sheza-cart-item__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; }
.sheza-cart-item__name a { color: var(--color-soft-black); }
.sheza-cart-item__name a:hover { color: var(--color-warm-gray); }
.sheza-cart-item__meta { font-size: 0.78rem; color: var(--color-warm-gray); margin-top: 0.25rem; }
.sheza-cart-item__meta dt, .sheza-cart-item__meta dd { display: inline; margin: 0; }
.sheza-cart-item__meta dt::after { content: ': '; }
.sheza-cart-item__meta dd::after { content: ' '; }
.sheza-cart-item__remove {
  background: none; border: none; cursor: pointer; color: rgba(140,123,110,0.35); font-size: 1.2rem; line-height: 1;
  flex-shrink: 0; align-self: flex-start; padding: 0; transition: color var(--transition);
  text-decoration: none;
}
.sheza-cart-item__remove:hover { color: var(--color-soft-black); }
.sheza-cart-item__footer { display: flex; justify-content: space-between; align-items: center; }
.sheza-cart-item__subtotal .amount { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; }

/* Quantity input WC */
.sheza-qty-wrap .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(201,169,138,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sheza-qty-wrap .quantity input[type=number] {
  width: 2.5rem; text-align: center;
  border: none; padding: 0.5rem;
  -moz-appearance: textfield;
}
.sheza-qty-wrap .quantity input::-webkit-inner-spin-button,
.sheza-qty-wrap .quantity input::-webkit-outer-spin-button { -webkit-appearance: none; }
.sheza-qty-wrap .qty-btn { background: none; border: none; width: 2.25rem; height: 2.25rem; cursor: pointer; color: var(--color-warm-gray); font-size: 1.2rem; transition: background var(--transition); }
.sheza-qty-wrap .qty-btn:hover { background: var(--color-nude-light); }

.sheza-cart-actions { display: flex; align-items: center; gap: 2rem; padding: 1.5rem 0; flex-wrap: wrap; }
.sheza-update-cart { padding: 0.6rem 1.5rem; font-size: 0.65rem; }
.sheza-continue-shopping { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-warm-gray); transition: color var(--transition); }
.sheza-continue-shopping:hover { color: var(--color-soft-black); }

/* Cart Summary */
.sheza-cart-summary {
  background: rgba(245,237,228,0.5);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: sticky;
  top: 7rem;
  align-self: start;
}
.sheza-cart-summary__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; margin-bottom: 1.5rem; }
/* WC cart totals table */
.cart_totals table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.cart_totals table th { font-size: 0.72rem; color: var(--color-warm-gray); font-weight: 400; text-align: left; padding: 0.5rem 0; letter-spacing: 0; text-transform: none; }
.cart_totals table td { text-align: right; padding: 0.5rem 0; font-size: 0.875rem; }
.cart_totals .order-total th,
.cart_totals .order-total td { border-top: 1px solid rgba(201,169,138,0.2); padding-top: 0.75rem; }
.cart_totals .order-total td .amount { font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; }

.sheza-cart-summary__checkout .checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: var(--radius-md);
  padding: 1rem;
}
.sheza-cart-trust {
  display: flex; justify-content: center; align-items: center; gap: 0.5rem;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(140,123,110,0.45); margin-top: 1.25rem; flex-wrap: wrap; text-align: center;
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.sheza-checkout-page { padding-top: 5rem; }

.sheza-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 26rem;
  gap: 3rem;
  padding-bottom: 5rem;
}
@media (max-width: 1024px) { .sheza-checkout-layout { grid-template-columns: 1fr; } }

.sheza-checkout-section { margin-bottom: 2.5rem; }
.sheza-checkout-section__title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; margin-bottom: 1.5rem; }

/* WC checkout form fields */
.woocommerce-checkout .form-row { margin-bottom: 1.5rem; }
.woocommerce-checkout .form-row label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.woocommerce-checkout .form-row .required { color: var(--color-nude-dark); }
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  border-bottom: 2px solid rgba(201,169,138,0.35);
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus { border-bottom-color: var(--color-soft-black); }
.woocommerce-checkout .form-row.woocommerce-invalid input.input-text { border-bottom-color: #c9a8a8; }
.woocommerce-checkout .select2-container .select2-selection--single {
  border: none;
  border-bottom: 2px solid rgba(201,169,138,0.35);
  border-radius: 0;
  height: auto;
  padding: 0.65rem 0;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0; color: var(--color-soft-black); font-size: 0.875rem;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow { top: 0.5rem; }

/* Payment methods */
.sheza-payment-section .woocommerce-PaymentMethods {
  display: flex; flex-direction: column; gap: 0.75rem;
  background: var(--color-nude-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.sheza-payment-section .woocommerce-PaymentMethod { list-style: none; }
.sheza-payment-section .woocommerce-PaymentMethod label { font-size: 0.875rem; text-transform: none; letter-spacing: 0; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; color: var(--color-soft-black); }
.sheza-payment-section .woocommerce-PaymentMethod-description { font-size: 0.8rem; color: var(--color-warm-gray); margin-top: 0.5rem; padding-left: 1.5rem; line-height: 1.6; }
.sheza-payment-section #place_order {
  width: 100%; border-radius: var(--radius-md); padding: 1rem;
  margin-top: 1.5rem;
}

/* Bank Transfer Info Box */
.sheza-bank-transfer-info {
  border: 2px solid var(--color-soft-black);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.sheza-bank-transfer-info__header {
  display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem;
}
.sheza-bank-transfer-info__icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--color-nude-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-nude-dark);
}
.sheza-bank-transfer-info__header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300; margin-bottom: 0.35rem; }
.sheza-bank-transfer-info__header p { font-size: 0.8rem; color: var(--color-warm-gray); margin: 0; line-height: 1.6; }

.sheza-bank-details {
  background: var(--color-nude-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.sheza-bank-details__row { display: flex; gap: 1rem; padding: 0.4rem 0; }
.sheza-bank-details__label { font-size: 0.75rem; color: rgba(140,123,110,0.65); width: 8rem; flex-shrink: 0; }
.sheza-bank-details__value { font-size: 0.8rem; font-weight: 500; color: var(--color-soft-black); }

.sheza-bank-transfer-info__note { font-size: 0.75rem; color: var(--color-warm-gray); line-height: 1.65; margin: 0; }

/* Order review in checkout */
.sheza-order-review-wrap {
  background: rgba(245,237,228,0.5);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: sticky;
  top: 7rem;
}
#order_review table { width: 100%; border-collapse: collapse; }
#order_review table th { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-warm-gray); padding: 0.5rem 0; text-align: left; font-weight: 500; }
#order_review table td { padding: 0.5rem 0; font-size: 0.85rem; text-align: right; }
#order_review .product-name { text-align: left; font-weight: 400; }
#order_review .product-name .product-quantity { color: var(--color-warm-gray); font-size: 0.8rem; }
#order_review tfoot tr { border-top: 1px solid rgba(201,169,138,0.2); }
#order_review tfoot tr.order-total td, #order_review tfoot tr.order-total th { padding-top: 0.75rem; }
#order_review tfoot tr.order-total td .amount { font-family: var(--font-display); font-size: 1.35rem; font-weight: 300; }
#order_review #payment { margin-top: 1.25rem; }

/* ============================================================
   MISC PAGES
   ============================================================ */
.sheza-wc-main {
  padding-top: 6rem;
  padding-bottom: 4rem;
  min-height: 60vh;
}

/* ============================================================
   REVEAL — Progressive Enhancement Fix
   Content is visible WITHOUT JS. .js-loaded (added by JS) enables animation.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.js-loaded .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   SHOP SIDEBAR — Mobile slide-in
   ============================================================ */
@media (max-width: 900px) {
  .sheza-shop-sidebar {
    position: fixed;
    inset: 0;
    left: auto;
    width: 18rem;
    background: var(--color-cream);
    z-index: 200;
    padding: 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow-soft-lg);
  }
  .sheza-shop-sidebar.is-open {
    transform: translateX(0);
  }
}

/* ============================================================
   HERO — fallback background so page never looks blank
   ============================================================ */
.sheza-hero__bg-placeholder {
  background: linear-gradient(135deg, #F5EDE4 0%, #FAE8E8 50%, #FDF8F4 100%) !important;
}
.sheza-hero {
  background: linear-gradient(135deg, #F5EDE4 0%, #FAE8E8 100%);
}

/* ============================================================
   FONT FALLBACK — ensure text looks right even before Google Fonts load
   ============================================================ */
.sheza-logo-text,
.sheza-hero__heading,
.sheza-section__title,
.sheza-product-info__title,
.sheza-card__title,
.sheza-footer__logo-text {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
}

/* ============================================================
   PAGE TITLE — hide default WP page title on homepage
   ============================================================ */
.sheza-homepage .entry-title,
.sheza-homepage .page-title,
.sheza-homepage h1.page-title,
.sheza-homepage h2.page-title {
  display: none !important;
}

/* ============================================================
   COMING SOON MODE — hide admin bar spacing
   ============================================================ */
.admin-bar .sheza-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .sheza-header { top: 46px; }
}
