:root{
  --brand-accent: #d15939;
  --lux-accent: #b08d57;
  --lux-text: #1f1a17;
  --lux-muted: #6a625c;
  --lux-bg: #fbf8f4;
  --lux-surface: #ffffff;
  --lux-border: rgba(31, 26, 23, 0.10);
}

body{
  background: #fbfbfc;
  color: #1b1f24;
}

.store{
  background: var(--lux-bg);
  color: var(--lux-text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.store h1,
.store h2,
.store h3,
.store h4,
.store h5,
.store h6,
.store .navbar-brand span{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  letter-spacing: 0.02em;
}

.store .text-muted{
  color: var(--lux-muted) !important;
}

.page-construcao{
  background-image: url("../../images/imagemdefundo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.brand-accent{
  color: var(--brand-accent) !important;
}

.store .brand-accent{
  color: var(--lux-accent) !important;
}

.btn-brand{
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-accent);
  --bs-btn-border-color: var(--brand-accent);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bf4d31;
  --bs-btn-hover-border-color: #bf4d31;
  --bs-btn-focus-shadow-rgb: 209, 89, 57;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ad452c;
  --bs-btn-active-border-color: #ad452c;
}

.store .btn-brand{
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--lux-text);
  --bs-btn-border-color: var(--lux-text);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #2b2420;
  --bs-btn-hover-border-color: #2b2420;
  --bs-btn-focus-shadow-rgb: 31, 26, 23;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #191412;
  --bs-btn-active-border-color: #191412;
}

.btn-outline-brand{
  --bs-btn-color: var(--lux-text);
  --bs-btn-border-color: var(--lux-border);
  --bs-btn-hover-color: var(--lux-text);
  --bs-btn-hover-bg: rgba(176, 141, 87, 0.10);
  --bs-btn-hover-border-color: var(--lux-accent);
  --bs-btn-focus-shadow-rgb: 176, 141, 87;
  --bs-btn-active-color: var(--lux-text);
  --bs-btn-active-bg: rgba(176, 141, 87, 0.22);
  --bs-btn-active-border-color: var(--lux-accent);
}

.btn-outline-brand.active{
  border-color: var(--lux-accent) !important;
  background-color: rgba(176, 141, 87, 0.22) !important;
  box-shadow: 0 0 0 .15rem rgba(176, 141, 87, 0.20);
}

.navbar .nav-link.active{
  color: var(--brand-accent) !important;
}

.store .navbar-store{
  background: rgba(251, 248, 244, 0.86);
  border-bottom: 1px solid var(--lux-border);
  backdrop-filter: blur(10px);
}

.store .navbar-store .navbar-brand span{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.store .navbar-store .nav-link{
  color: var(--lux-text);
  letter-spacing: 0.02em;
}

.store .navbar-store .nav-link.active{
  color: var(--lux-accent) !important;
}

.store .navbar-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.store .navbar-center{
  flex: 1 1 100%;
  order: 3;
}

.store .navbar-actions{
  order: 2;
}

.store .navbar-nav-center{
  width: 100%;
  flex-wrap: wrap;
  gap: .25rem .75rem !important;
}

@media (max-width: 991.98px){
  .store .navbar-brand{
    width: 100%;
    justify-content: center;
  }
  .store .navbar-actions{
    width: 100%;
    justify-content: center !important;
    order: 3;
  }
}

@media (min-width: 992px){
  .store .navbar-grid{
    display: grid;
    grid-template-columns: auto 1fr auto;
    flex-wrap: nowrap;
  }
  .store .navbar-center{
    justify-self: center;
    order: 0;
    flex: 0 1 auto;
  }
  .store .navbar-actions{
    justify-self: end;
    order: 0;
  }
  .store .navbar-nav-center{
    width: auto;
    flex-wrap: nowrap;
    gap: 1rem !important;
  }
}

.store .navbar-actions .nav-action{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color .14s ease, border-color .14s ease, transform .14s ease;
}

.store .navbar-actions .nav-action svg{
  width: 20px;
  height: 20px;
}

.store .navbar-actions .nav-action:hover{
  background: rgba(176, 141, 87, 0.10);
  border-color: rgba(176, 141, 87, 0.22);
  transform: translateY(-1px);
}

.store .navbar-store.navbar-overlay .navbar-actions .nav-action{
  color: rgba(255,255,255,0.92);
}

.store .navbar-store.navbar-overlay .navbar-actions .nav-action:hover{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.store .navbar-mobile-menu{
  background: var(--lux-bg);
  color: var(--lux-text);
}

.store .navbar-mobile-menu .list-group-item{
  background: transparent;
  color: inherit;
  border-color: var(--lux-border);
  text-align: center;
}

.store .navbar-mobile-menu .list-group-item.active{
  background: rgba(176, 141, 87, 0.14);
  border-color: rgba(176, 141, 87, 0.35);
  color: var(--lux-text);
}

.store .navbar-mobile-menu .list-group-item:hover{
  background: rgba(176, 141, 87, 0.10);
}

.store-catalogo .catalog-sidebar-menu{
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  overflow: auto;
}

.store-catalogo .catalog-categories .list-group-item{
  border-color: var(--lux-border);
  color: var(--lux-text);
  background: transparent;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.store-catalogo .catalog-categories .list-group-item:hover,
.store-catalogo .catalog-categories .list-group-item:focus{
  background: rgba(176, 141, 87, 0.14);
  border-color: rgba(176, 141, 87, 0.35);
  color: var(--lux-text);
}

.store-catalogo .catalog-categories .list-group-item.active,
.store-catalogo .catalog-categories .list-group-item.active:hover,
.store-catalogo .catalog-categories .list-group-item.active:focus{
  background: rgba(176, 141, 87, 0.22);
  border-color: rgba(176, 141, 87, 0.45);
  color: var(--lux-text);
  font-weight: 600;
}

@media (max-width: 991.98px){
  .store-catalogo .catalog-sidebar-menu{
    position: static;
    max-height: none;
    overflow: visible;
  }
}

.store .store-slider{
  background: #efe9e1;
  position: relative;
}

.store .store-slider .carousel-item{
  aspect-ratio: 2 / 1;
  max-height: 760px;
}

.store .store-slider .carousel-item > a,
.store .store-slider .carousel-item > picture,
.store .store-slider .carousel-item > a > picture{
  display: block;
  height: 100%;
}

.store .store-slider .carousel-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

@media (max-width: 991.98px){
  .store .navbar-store.navbar-overlay{
    position: relative !important;
    top: auto;
    background: #ce583a;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .store .navbar-store.navbar-overlay .nav-link{
    color: rgba(255,255,255,0.95) !important;
  }

  .store .navbar-store.navbar-overlay .nav-link.active{
    color: #fff !important;
  }

  .store .navbar-mobile-menu{
    background: #ce583a;
    color: #fff;
  }

  .store .navbar-mobile-menu .list-group-item{
    border-color: rgba(255,255,255,0.18);
  }

  .store .navbar-mobile-menu .list-group-item.active{
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
  }

  .store .store-slider::before{
    display: none;
  }

  .store .store-slider .carousel-item{
    max-height: 320px;
  }
}

.modal.show{
  background: rgba(0,0,0,0.4);
}

.store .store-slider .carousel-indicators [data-bs-target]{
  width: 22px;
  height: 3px;
  border-radius: 999px;
}

.store .store-slider::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.20) 28%, rgba(0,0,0,0.00) 62%);
  z-index: 2;
}

.store .store-slider .carousel{
  position: relative;
  z-index: 1;
}

.store .navbar-store.navbar-overlay{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: none;
}

.store .navbar-store.navbar-overlay .nav-link{
  color: rgba(255,255,255,0.92);
}

.store .navbar-store.navbar-overlay .nav-link.active{
  color: #fff !important;
}

.store .navbar-store.navbar-overlay .navbar-toggler{
  border-color: rgba(255,255,255,0.30);
}

.store-hero{
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.86) 0%, rgba(251, 248, 244, 0.98) 55%, var(--lux-bg) 100%),
              url("../../images/imagemdefundo.webp");
  background-size: cover;
  background-position: center;
  color: var(--lux-text);
}

.store-hero .text-muted{
  color: var(--lux-muted) !important;
}

.store-kicker{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .75rem;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.10);
  border: 1px solid rgba(176, 141, 87, 0.22);
  color: #6b542b;
  font-size: .75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-panel{
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--lux-border);
  border-radius: 1.25rem;
  box-shadow: 0 .75rem 2rem rgba(31, 26, 23, 0.06);
}

.product-card{
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.store .product-card{
  border: 1px solid var(--lux-border) !important;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 .6rem 1.4rem rgba(31, 26, 23, 0.05);
}

.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 .5rem 1.25rem rgba(0,0,0,.08);
}

.store .product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 1.1rem 2.2rem rgba(31, 26, 23, 0.10);
}

.product-badge{
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
}

.store .product-badge{
  background: rgba(251, 248, 244, 0.86) !important;
  border: 1px solid rgba(176, 141, 87, 0.28) !important;
  color: #6b542b !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: .70rem;
  padding: .35rem .55rem;
  backdrop-filter: blur(8px);
}

.product-thumb{
  background: #f4f5f7;
}

.store .product-thumb{
  background: #f1ede7;
}

.pv-hover{
  position: relative;
  overflow: hidden;
}

.pv-hover img{
  transition: opacity .15s ease;
}

.pv-hover .pv-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .15s ease;
  pointer-events: none;
}

.pv-hover.pv-playing .pv-video{
  opacity: 1;
}

.pv-hover.pv-playing img{
  opacity: 0;
}

.product-gallery-thumb{
  width: 100%;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  border-radius: .9rem;
  overflow: hidden;
  transition: border-color .14s ease, transform .14s ease;
}

.product-gallery-thumb:hover{
  transform: translateY(-1px);
  border-color: rgba(176, 141, 87, 0.35);
}

.product-gallery-thumb.pg-active{
  border-color: rgba(176, 141, 87, 0.65);
}

.product-gallery-thumb:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(176, 141, 87, 0.18);
}

.product-gallery-thumb-video{
  color: rgba(31, 26, 23, 0.65);
  background: rgba(251, 248, 244, 0.92);
}

.price-old{
  color: #6c757d;
  text-decoration: line-through;
}

.store .price-old{
  color: rgba(31, 26, 23, 0.45);
}

.product-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-installments{
  font-size: .875rem;
  color: #6c757d;
}

.product-sticky-buy{
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 1030;
  width: min(320px, calc(100vw - 36px));
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.product-sticky-buy.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-sticky-buy .sticky-thumb{
  width: 290px;
  height: 200px;
  object-fit: cover;
  border-radius: .9rem;
  display: block;
  margin: 0 auto;
}

.product-sticky-buy .sticky-title{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
  text-align: center;
}

.product-sticky-buy .text-muted{
  text-align: center;
}

@media (max-width: 991.98px){
  .product-sticky-buy{
    display: none;
  }
}

.store .card{
  border-radius: 1.25rem;
}

.store .form-control,
.store .form-select{
  border-radius: .9rem;
  border-color: var(--lux-border);
}

.store .form-control:focus,
.store .form-select:focus{
  border-color: rgba(176, 141, 87, 0.55);
  box-shadow: 0 0 0 .25rem rgba(176, 141, 87, 0.18);
}

.store .page-item .page-link{
  border-radius: .9rem;
  border-color: var(--lux-border);
  color: var(--lux-text);
}

.store .page-item.active .page-link{
  background: rgba(176, 141, 87, 0.14);
  border-color: rgba(176, 141, 87, 0.35);
  color: var(--lux-text);
}

.store .contact-media{
  min-height: 320px;
  background: #efe9e1;
}

.store .contact-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cookie-consent-float{
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1030;
  width: min(440px, calc(100vw - 36px));
}

.cookie-consent-float .cookie-icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--lux-border);
  background: rgba(176, 141, 87, 0.10);
  color: var(--lux-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cookie-consent-float .cookie-icon svg{
  width: 22px;
  height: 22px;
}

.cookie-consent-float .cookie-text{
  color: var(--lux-muted);
  line-height: 1.35;
}

.cookie-consent-float .btn{
  white-space: nowrap;
}

@media (max-width: 575.98px){
  .cookie-consent-float{
    left: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1rem 2rem rgba(0,0,0,.18);
  z-index: 1030;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  overflow: visible;
}

.store .whatsapp-float{
  display: flex;
}

.whatsapp-float:focus,
.whatsapp-float:hover{
  color: #fff;
  background: #1fbe5b;
  transform: translateY(-2px);
  box-shadow: 0 1.25rem 2.25rem rgba(0,0,0,.2);
}

.whatsapp-float svg{
  width: 26px;
  height: 26px;
}

.whatsapp-float::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  animation: wa-pulse 2.6s ease-out infinite;
}

.whatsapp-float::after{
  content: attr(data-label);
  position: absolute;
  right: 72px;
  bottom: 6px;
  max-width: 220px;
  background: #fff;
  color: #1b1f24;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.1);
  font-size: .875rem;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateX(14px);
  animation: none;
  pointer-events: none;
}

.whatsapp-float.show-label::after{
  opacity: .95;
  transform: translateX(8px);
  animation: wa-bubble .6s ease-out both;
}

@keyframes wa-pulse{
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes wa-bubble{
  0% { opacity: 0; transform: translateX(14px); }
  100% { opacity: .95; transform: translateX(8px); }
}

.panel-layout{
  min-height: 100vh;
}

.panel-sidebar{
  width: 280px;
}

@media (min-width: 992px){
  .panel-content{
    margin-left: 280px;
  }
  .panel-sidebar-lg{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
  }
}

.panel-nav .nav-link{
  color: #1b1f24;
}

.panel-nav .nav-link.active,
.panel-nav .nav-link:hover{
  color: var(--brand-accent);
}

.panel-nav .nav-link.active{
  background: rgba(209, 89, 57, 0.10);
}

.dashboard-hero{
  background: radial-gradient(1100px 520px at 18% 0%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(135deg, #d15939 0%, #b44b31 35%, #5b2b22 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
}

.dashboard-hero-kicker{
  opacity: 0.9;
}

.dashboard-hero-sub{
  opacity: 0.95;
}

.dashboard-stat .display-6{
  line-height: 1;
}

.dashboard-dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.store-faq .accordion{
  --bs-accordion-active-color: var(--lux-text);
  --bs-accordion-active-bg: rgba(176, 141, 87, 0.14);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(176, 141, 87, 0.28);
}

.store-faq .accordion-button:hover,
.store-faq .accordion-button:focus{
  color: var(--lux-text);
  background-color: rgba(176, 141, 87, 0.10);
}
