:root {
  --bg: #ffffff;
  --bg-2: #ebd8c5;
  --text: #3a2f28;
  --muted: rgba(58, 47, 40, 0.75);
  --card: rgba(255, 255, 255, 0.55);
  --card-strong: rgba(255, 255, 255, 0.75);
  --border: rgba(58, 47, 40, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
button span,
a,
a span {
  color: inherit;
}

@font-face {
  font-family: "Luume";
  src: url(fonts/Tempting\ -\ PERSONAL\ USE\ ONLY.ttf);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar / Nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 244, 238, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.brand-name {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.18em;
  font-size: 20px;
  line-height: 100%;
  opacity: 0.9;
}

.luume {
  font-family: "Luume";
  letter-spacing: normal;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 14px;
  opacity: 0.86;
  padding: 8px 10px;
  border-radius: 999px;
  transition: 0.2s ease;
}
.nav-links a:hover {
  background: rgba(235, 216, 197, 0.45);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Hamburger */
.menu-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  cursor: pointer;
  display: none;
  transition: 0.2s ease;
}
.menu-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.menu-lines {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(58, 47, 40, 0.75);
  transform: translate(-50%, -50%);
}
.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(58, 47, 40, 0.75);
}
.menu-lines::before {
  top: -6px;
}
.menu-lines::after {
  top: 6px;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  padding: 10px 0 14px;

  flex-direction: column;
  gap: 10px;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.55);
  color: rgba(58, 47, 40, 0.85);

  font-size: 13px;
  font-weight: 500px;

  text-align: center;
}

.mobile-link:hover {
  background: var(--bg-2);
  transform: translateY(-1px);
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  color: var(--text) !important;
  -webkit-appearance: none;
  appearance: none;
}
.cart-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.cart-icon {
  font-size: 18px;
  color: var(--text) !important;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text) !important;
}
/* Hero / Carousel */
.hero {
  padding: 22px 0 10px;
}

.carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  height: clamp(220px, 35vw, 360px);
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.35s ease,
    transform 0.55s ease;
}
.carousel-img.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-track,
.drawer-img {
  touch-action: pan-y;
}

/* .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  z-index: 2;
  font-size: 28px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text) !important;
  -webkit-appearance: none;
  appearance: none;
}
.carousel-btn:hover {
  box-shadow: var(--shadow);
}
.carousel-btn.prev {
  left: 14px;
}
.carousel-btn.next {
  right: 14px;
} */

.carousel-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: 0.2s ease;
}
.dot.active {
  width: 18px;
  background: var(--bg-2);
}

/* Sections */
.section-head {
  padding: 24px 0 10px;
}
.section-title {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.02em;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Shop grid + drawer */
.shop {
  padding: 8px 0 30px;
}
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}
.product-card:hover {
  transform: translateY(-2px);
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 64%;
}

.product-body {
  padding: 12px 12px 14px;
}
.product-name {
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 14px;
}
.product-price {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
  user-select: none;
  color: var(--text) !important;
  text-decoration: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-out{
  background: rgba(0,0,0,.08);
  color: rgba(58,47,40,.55);
  border: 1px dashed var(--border);
  cursor: not-allowed;
  opacity: .9;
}

#drawerAddToCart:disabled{
  background: rgba(0,0,0,.08);
  color: rgba(58,47,40,.55);
  border: 1px dashed var(--border);
  box-shadow: none;
}


.btn-primary {
  background: var(--bg-2);
  color: var(--text) !important;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--bg-2);
  color: var(--text) !important;
}

.btn-light {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text) !important;
}
.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn:visited,
.btn:hover,
.btn:active,
.btn:focus {
  color: var(--text) !important;
  text-decoration: none !important;
}
/* Drawer (Product details) */
/* .product-drawer{
  position: sticky;
  top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:none;
}
.product-drawer.open{ display:block; }

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(235,216,197,.25);
}
.drawer-title{ margin:0; font-size: 14px; font-weight: 700; }
.drawer-close{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.55);
  cursor:pointer;
}
.drawer-content{ padding: 14px; }
.drawer-img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.drawer-price{
  margin: 12px 0 6px;
  font-weight: 700;
}
.drawer-desc{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.drawer-actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.drawer-note{
  display:block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
} */

/* Drawer / Modal centralizado */
.product-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(460px, calc(100% - 32px));
  max-height: 85vh;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: none;
  z-index: 200;
}

.product-drawer.open {
  display: block;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(235, 216, 197, 0.35);
}

.drawer-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.drawer-content {
  padding: 14px;
  max-height: calc(85vh - 65px);
  overflow-y: auto;
}

.drawer-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.drawer-price {
  margin: 12px 0 6px;
  font-weight: 700;
}

.drawer-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 190;
}

.drawer-overlay.open {
  display: block;
}

.drawer-gallery{
  position: relative;
}

.drawer-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.drawer-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text) !important;
  -webkit-appearance: none;
  appearance: none;
}

.drawer-gallery-btn.prev{
  left: 8px;
}

.drawer-gallery-btn.next{
  right: 8px;
}

.drawer-thumbs{
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.drawer-thumb{
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  opacity: .7;
}

.drawer-thumb.active{
  opacity: 1;
  border: 2px solid var(--text);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 18px;
}

.page-btn {
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 8px;
}
.page-number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.page-number.active {
  background: var(--bg-2);
}

/* Cart panel */
.cart-panel {
  position: fixed;
  right: 16px;
  top: 76px;
  width: min(380px, calc(100% - 32px));
  max-height: calc(100vh - 92px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255);
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}
.cart-panel.open {
  display: block;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(235, 216, 197, 0.25);
}
.cart-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.cart-body {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 160px);
  max-height: 560px;
}
.cart-items {
  padding: 12px 14px;
  overflow: auto;
  flex: 1;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(58, 47, 40, 0.2);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item strong {
  font-size: 13px;
}
.cart-item small {
  color: var(--muted);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.qty {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
}
.remove-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-summary {
  border-top: 1px solid var(--border);
  padding: 12px 14px 14px;
  background: rgba(252, 241, 234, 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.coupon-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(58, 47, 40, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}
.coupon-toggle {
  text-align: center;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  display: block;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}
.coupon-panel {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px 12px;
  border-top: 1px solid rgba(58, 47, 40, 0.08);
}
.coupon-box.open .coupon-panel {
  display: flex;
}
.coupon-label {
  font-size: 13px;
  font-weight: 600;
  padding-top: 12px;
}
.coupon-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.coupon-input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}
.coupon-input:focus {
  outline: 2px solid rgba(235, 216, 197, 0.8);
  outline-offset: 1px;
}
.coupon-apply {
  min-width: 92px;
}
.coupon-feedback {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.coupon-feedback.is-success {
  color: #2d6a4f;
}
.coupon-remove {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.cart-row-discount strong {
  color: #2d6a4f;
}
.cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* About */
.about {
  padding: 36px 0 10px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.about-text .section-title {
  margin-bottom: 10px;
  line-height: 1.1;
}

.about p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 12px;
}
.about-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-media img {
  width: 100%;
  max-width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.highlight {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  font-size: 12px;
}

/* Contact */
.contact {
  padding: 22px 0 40px;
}

.section-title-contact {
  margin-left: 20px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.contact-organization {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  margin-left: 25px;
}

/* .btn-contact{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 80px;
  width: 80px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor:pointer;
  font-size: 13px;
  font-weight: 600;
  transition: .2s ease;
  user-select:none;
} */

.logo-contact {
  height: 30px;
  width: 30px;
}

.contact p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0 0 12px;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 25px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  background: rgba(255, 244, 238, 0.86);
}
.footer-inner {
  padding: 22px 0;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  height: 150px;
  width: 150px;
  padding-right: 15px;
  padding-bottom: 25px;
}

.footer-copy {
  text-align: center;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.footer-cols {
  display: flex;
  gap: 26px;
}
.footer-col h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
}
.footer-col a,
.footer-col p {
  display: block;
  margin: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.dev a{
  font-size: 11px;
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-bottom: 25px;
  color: #30003A;
}

/* Responsive */
@media (max-width: 700px) {
  .about {
    grid-template-columns: 1.4fr 0.8fr;
    gap: 12px;
    align-items: start;
  }

  .about-text .section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .about p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .about-media img {
    max-width: 120px;
    height: 120px;
    border-radius: 16px;
  }

  .about-highlights {
    gap: 8px;
    margin-top: 12px;
  }

  .highlight {
    font-size: 11px;
    padding: 7px 10px;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
  } /* simples mesmo */
  .menu-btn {
    display: inline-flex;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .cart-panel {
    right: 16px;
    left: 16px;
    width: auto;
  }
  .coupon-form {
    grid-template-columns: 1fr;
  }
  .coupon-apply {
    width: 100%;
  }
}
