:root {
  --pink-50: #fff7fb;
  --pink-100: #ffe7f1;
  --pink-200: #fac8de;
  --pink-300: #f5a9ca;
  --pink-400: #ec78ab;
  --pink-500: #dc4f91;
  --pink-600: #bd326f;
  --wine: #6b284c;
  --ink: #34212b;
  --muted: #75616b;
  --white: #ffffff;
  --line: #f0dce6;
  --shadow: 0 18px 45px rgba(107, 40, 76, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--pink-50);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
  padding-bottom: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid rgba(220, 79, 145, .35);
  outline-offset: 3px;
}

.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -60px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 12px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 251, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 220, 230, .8);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  color: white;
  box-shadow: 0 8px 20px rgba(220,79,145,.25);
}
.brand strong { display: block; letter-spacing: .08em; font-family: "Playfair Display", serif; }
.brand small { display: block; color: var(--pink-600); font-size: .77rem; margin-top: -2px; }
.desktop-nav { margin-left: auto; display: flex; gap: 28px; color: var(--muted); font-weight: 600; }
.desktop-nav a:hover { color: var(--pink-600); }
.header-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  background: var(--pink-500);
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 62px 0 46px;
  background:
    radial-gradient(circle at 15% 20%, rgba(247,168,203,.42), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(255,225,239,.9), transparent 28%),
    linear-gradient(180deg, #fffafc 0%, #fff2f8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -160px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 75px solid rgba(245,169,202,.13);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-600);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .about-card h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.06;
}
.hero h1 { margin: 15px 0 18px; font-size: clamp(2.75rem, 6vw, 5.2rem); max-width: 760px; }
.hero h1 em { color: var(--pink-500); font-style: normal; }
.hero-copy > p { max-width: 610px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0 21px;
  cursor: pointer;
  font-weight: 800;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  box-shadow: 0 12px 24px rgba(189,50,111,.22);
}
.btn-secondary { color: var(--wine); background: white; border: 1px solid var(--line); }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: var(--muted); font-size: .88rem; font-weight: 600; }

.hero-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  border: 1px solid rgba(255,255,255,.8);
}
.hero-card-top { height: 270px; background: #d47eb8; overflow: hidden; }
.hero-card-top img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-body { padding: 22px 24px 25px; }
.hero-card-body span { color: var(--pink-600); font-weight: 800; font-size: .84rem; }
.hero-card-body strong { display: block; margin: 7px 0 13px; font-size: 1.35rem; }
.hero-card-body a { color: var(--pink-600); font-weight: 800; }

.category-section { padding: 28px 0 8px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.section-heading.compact { margin-bottom: 15px; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 5px 0 0; }
.section-heading p { color: var(--muted); margin: 8px 0 0; }
.category-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 2px 12px;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-chip {
  flex: 0 0 auto;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: white;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}
.category-chip:hover, .category-chip.active {
  color: white;
  border-color: var(--pink-500);
  background: var(--pink-500);
}

.products-section { padding: 48px 0 72px; }
.search-box {
  width: min(100%, 330px);
  height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  padding: 0 16px;
}
.search-box span { color: var(--pink-500); font-size: 1.35rem; }
.search-box input { border: 0; outline: 0; background: transparent; width: 100%; color: var(--ink); }
.search-box input::placeholder { color: #aa929f; }
.results-info { min-height: 24px; color: var(--muted); font-size: .9rem; margin-bottom: 12px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid rgba(240,220,230,.9);
  box-shadow: 0 10px 30px rgba(107,40,76,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-image-button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #f7dbe8;
  overflow: hidden;
}
.product-image-button::after {
  content: "Ver detalhes";
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 12px);
  opacity: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: white;
  background: rgba(52,33,43,.82);
  font-size: .78rem;
  font-weight: 800;
  transition: .2s ease;
}
.product-card:hover .product-image-button::after { opacity: 1; transform: translate(-50%, 0); }
.product-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .35s ease;
}
.product-card:hover .product-image { transform: scale(1.025); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--pink-600);
  background: rgba(255,255,255,.92);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 5px 14px rgba(52,33,43,.12);
}
.product-body { padding: 16px; }
.product-category {
  color: var(--pink-600);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.product-name { font-size: 1rem; line-height: 1.25; margin: 7px 0 4px; }
.product-short { color: var(--muted); font-size: .86rem; min-height: 42px; margin: 0; }
.product-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 14px; }
.price small { display: block; color: var(--muted); font-size: .69rem; }
.price strong { color: var(--wine); font-size: 1.18rem; }
.quick-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--pink-100);
  color: var(--pink-600);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}
.quick-btn:hover { background: var(--pink-500); color: white; }
.empty-state { text-align: center; padding: 62px 18px; border: 1px dashed var(--pink-300); border-radius: var(--radius-lg); background: rgba(255,255,255,.7); }
.empty-state span { font-size: 2.4rem; }
.empty-state h3 { margin: 10px 0 2px; }
.empty-state p { color: var(--muted); margin: 0 0 18px; }

.about-section { padding: 0 0 72px; }
.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
  border-radius: var(--radius-lg);
  padding: 44px;
  background: linear-gradient(135deg, var(--pink-100), white);
  border: 1px solid var(--line);
}
.about-card h2 { margin: 8px 0 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.about-card p { color: var(--muted); font-size: 1rem; }

.site-footer { background: var(--ink); color: white; padding: 34px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand small { color: var(--pink-300); }
.footer-inner p { color: #d6c5ce; font-size: .84rem; text-align: right; }

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: #1fa855;
  box-shadow: 0 14px 30px rgba(31,168,85,.28);
}
.mobile-nav { display: none; }

.product-modal {
  width: min(920px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(52,33,43,.28);
  overflow: hidden;
}
.product-modal::backdrop { background: rgba(52,33,43,.65); backdrop-filter: blur(5px); }
.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}
.modal-layout { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 590px; }
.modal-image-wrap { background: var(--pink-100); }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-content { padding: 48px 40px 34px; display: flex; flex-direction: column; }
.modal-content h2 { font-family: "Playfair Display", serif; font-size: 2.3rem; line-height: 1.05; margin: 10px 0 12px; }
.modal-content > p { color: var(--muted); }
.modal-benefits { margin-top: 18px; padding: 18px; border-radius: 18px; background: var(--pink-50); }
.modal-benefits ul { margin: 10px 0 0; padding-left: 19px; color: var(--muted); }
.modal-benefits li + li { margin-top: 7px; }
.modal-price-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 28px; }
.modal-price-row small { display: block; color: var(--muted); }
.modal-price-row strong { color: var(--wine); font-size: 1.65rem; }

@media (max-width: 960px) {
  .hero-grid { gap: 34px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .desktop-nav { display: none; }
}

@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: 68px; }
  .header-cta { margin-left: auto; padding: 10px 14px; font-size: .84rem; }
  .hero { padding: 30px 0 34px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 2.65rem; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions .btn { flex: 1; }
  .trust-row { gap: 10px 16px; }
  .hero-card { transform: none; }
  .hero-card-top { height: 210px; }
  .category-section { padding-top: 22px; }
  .products-section { padding-top: 34px; }
  .section-heading { align-items: stretch; flex-direction: column; gap: 16px; }
  .section-heading h2 { font-size: 2.2rem; }
  .search-box { width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .product-body { padding: 12px; }
  .product-name { font-size: .93rem; }
  .product-short { display: none; }
  .product-bottom { margin-top: 10px; }
  .price strong { font-size: 1rem; }
  .quick-btn { width: 38px; height: 38px; border-radius: 12px; }
  .badge { top: 8px; left: 8px; padding: 6px 8px; font-size: .65rem; }
  .product-image-button::after { display: none; }
  .about-card { grid-template-columns: 1fr; padding: 28px 22px; gap: 12px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner p { text-align: left; }
  .whatsapp-float { display: none; }
  .mobile-nav {
    position: fixed;
    z-index: 60;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(107,40,76,.08);
  }
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 800;
  }
  .mobile-nav span { color: var(--pink-500); font-size: 1.25rem; }
  .modal-layout { grid-template-columns: 1fr; }
  .modal-image-wrap { height: 300px; }
  .modal-content { padding: 25px 20px 22px; }
  .modal-content h2 { font-size: 1.9rem; }
  .modal-price-row { align-items: stretch; flex-direction: column; }
  .modal-price-row .btn { width: 100%; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 2.25rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .product-body { padding: 10px; }
  .product-name { font-size: .86rem; }
  .product-category { font-size: .63rem; }
}


/* Carrinho e painel administrativo */
.no-scroll { overflow: hidden; }
.cart-button {
  margin-left: auto; min-height: 44px; display:flex; align-items:center; gap:8px;
  border:0; border-radius:999px; padding:0 15px; cursor:pointer;
  color:white; background:var(--pink-500); font-weight:800;
}
.cart-count { min-width:23px; height:23px; display:grid; place-items:center; border-radius:50%; background:white; color:var(--pink-600); font-size:.75rem; }
.add-cart-btn { border:0; border-radius:12px; padding:10px 12px; cursor:pointer; background:var(--pink-100); color:var(--pink-600); font-weight:800; }
.add-cart-btn:hover { background:var(--pink-500); color:white; }
.cart-drawer { position:fixed; inset:0; z-index:100; pointer-events:none; visibility:hidden; }
.cart-drawer.open { pointer-events:auto; visibility:visible; }
.cart-backdrop { position:absolute; inset:0; background:rgba(52,33,43,.58); opacity:0; transition:.25s; }
.cart-drawer.open .cart-backdrop { opacity:1; }
.cart-panel { position:absolute; right:0; top:0; bottom:0; width:min(440px,100%); display:flex; flex-direction:column; background:white; transform:translateX(100%); transition:.28s ease; box-shadow:-20px 0 60px rgba(52,33,43,.2); }
.cart-drawer.open .cart-panel { transform:translateX(0); }
.cart-header { display:flex; justify-content:space-between; align-items:center; padding:23px; border-bottom:1px solid var(--line); }
.cart-header h2 { font-family:"Playfair Display",serif; margin:2px 0 0; font-size:2rem; }
.drawer-close { width:42px; height:42px; border:0; border-radius:50%; background:var(--pink-100); cursor:pointer; font-size:1.5rem; }
.cart-items { padding:14px 20px; overflow:auto; flex:1; }
.cart-item { display:grid; grid-template-columns:72px 1fr 32px; gap:12px; align-items:center; padding:12px 0; border-bottom:1px solid var(--line); }
.cart-item img { width:72px; height:82px; object-fit:cover; border-radius:13px; }
.cart-item-main { min-width:0; }
.cart-item-main strong { display:block; font-size:.92rem; line-height:1.25; }
.cart-item-main>span { display:block; color:var(--pink-600); font-weight:800; margin:4px 0 8px; }
.quantity-control { width:max-content; display:flex; align-items:center; border:1px solid var(--line); border-radius:999px; overflow:hidden; }
.quantity-control button { width:32px; height:30px; border:0; background:white; cursor:pointer; }
.quantity-control b { min-width:28px; text-align:center; font-size:.85rem; }
.remove-item { align-self:start; border:0; background:transparent; cursor:pointer; color:#a77d90; font-size:1.25rem; }
.cart-empty { margin:auto; text-align:center; padding:30px; }
.cart-empty>span { font-size:3rem; }
.cart-empty h3 { margin:12px 0 4px; }
.cart-empty p { color:var(--muted); }
.cart-footer { padding:20px; border-top:1px solid var(--line); background:var(--pink-50); }
.cart-total { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.cart-total strong { font-size:1.45rem; color:var(--wine); }
.btn-whatsapp { width:100%; background:#1fa855; color:white; }
.text-button { border:0; background:transparent; color:var(--pink-600); cursor:pointer; font-weight:800; padding:9px; }
.cart-footer .text-button { width:100%; margin-top:5px; }
.toast { position:fixed; z-index:200; left:50%; bottom:30px; transform:translate(-50%,30px); opacity:0; pointer-events:none; background:var(--ink); color:white; padding:12px 18px; border-radius:999px; font-weight:700; transition:.25s; box-shadow:var(--shadow); }
.toast.show { opacity:1; transform:translate(-50%,0); }

.admin-body { background:#fff8fb; }
.admin-main { padding-top:42px; padding-bottom:70px; }
.admin-intro h1 { font-family:"Playfair Display",serif; font-size:clamp(2.5rem,5vw,4.6rem); margin:8px 0; }
.admin-intro p { color:var(--muted); max-width:680px; }
.admin-card { background:white; border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:0 12px 35px rgba(107,40,76,.07); }
.settings-card { display:grid; grid-template-columns:.7fr 1.3fr; gap:28px; align-items:end; padding:26px; margin:30px 0 22px; }
.settings-card h2,.admin-card h2 { font-family:"Playfair Display",serif; margin:0 0 5px; }
.settings-card p { color:var(--muted); margin:0; }
.settings-form { display:grid; grid-template-columns:1fr 1fr auto; gap:12px; align-items:end; }
.admin-grid { display:grid; grid-template-columns:minmax(360px,.82fr) minmax(430px,1.18fr); gap:22px; }
.product-form,.product-manager { padding:25px; }
.form-title-row,.manager-header { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; margin-bottom:19px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grid .full { grid-column:1/-1; }
.admin-body label { display:flex; flex-direction:column; gap:7px; color:var(--wine); font-size:.84rem; font-weight:800; }
.admin-body input,.admin-body textarea,.admin-body select { width:100%; border:1px solid var(--line); border-radius:13px; padding:12px 13px; background:#fffafd; color:var(--ink); outline:none; }
.admin-body textarea { resize:vertical; }
.admin-body input:focus,.admin-body textarea:focus,.admin-body select:focus { border-color:var(--pink-400); box-shadow:0 0 0 3px rgba(236,120,171,.12); }
.admin-body label small { color:var(--muted); font-weight:500; }
.image-preview-wrap { min-height:160px; border:1px dashed var(--pink-300); border-radius:16px; overflow:hidden; background:var(--pink-50); }
.image-preview-wrap img { width:100%; height:220px; object-fit:contain; }
.toggle-label { flex-direction:row!important; align-items:center; }
.toggle-label input { width:18px; height:18px; }
.wide { width:100%; margin-top:18px; }
.count-pill { border-radius:999px; padding:7px 11px; background:var(--pink-100); color:var(--pink-600); font-size:.76rem; font-weight:800; white-space:nowrap; }
.admin-search { width:100%; margin-bottom:14px; }
.admin-product-list { display:flex; flex-direction:column; gap:10px; max-height:730px; overflow:auto; padding-right:3px; }
.admin-product-item { display:grid; grid-template-columns:64px 1fr auto; gap:12px; align-items:center; border:1px solid var(--line); border-radius:16px; padding:10px; }
.admin-product-item.inactive { opacity:.55; }
.admin-product-item img { width:64px; height:70px; object-fit:cover; border-radius:11px; background:var(--pink-100); }
.admin-product-item strong,.admin-product-item span,.admin-product-item small { display:block; }
.admin-product-item strong { line-height:1.2; }
.admin-product-item span { color:var(--pink-600); font-weight:800; font-size:.82rem; margin-top:4px; }
.admin-product-item small { color:var(--muted); margin-top:3px; }
.item-actions { display:flex; gap:4px; }
.item-actions button { width:36px; height:36px; border:0; border-radius:10px; cursor:pointer; background:var(--pink-50); }
.danger-icon:hover { background:#ffe5e5!important; }
.empty-admin { padding:35px; text-align:center; color:var(--muted); }
.backup-card { display:flex; justify-content:space-between; align-items:center; gap:25px; padding:25px; margin-top:22px; }
.backup-card p { color:var(--muted); margin:0; }
.backup-actions { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.file-button { position:relative; cursor:pointer; }
.file-button input { position:absolute; width:1px; height:1px; opacity:0; }
.text-button.danger { color:#b22f4b; }

@media(max-width:900px){
 .settings-card,.admin-grid { grid-template-columns:1fr; }
 .settings-form { grid-template-columns:1fr 1fr; }
 .settings-form .btn { grid-column:1/-1; }
}
@media(max-width:720px){
 .cart-button-text{display:none}
 .mobile-nav button{border:0;background:transparent;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;color:var(--muted);font-size:.67rem;font-weight:800}
 .mobile-nav button span{color:var(--pink-500);font-size:1.15rem}
 .mobile-nav button b{position:absolute;margin:0 0 29px 25px;background:var(--pink-500);color:white;border-radius:50%;min-width:17px;height:17px;font-size:.6rem;display:grid;place-items:center}
 .toast{bottom:88px;max-width:calc(100% - 25px);text-align:center}
 .settings-form,.form-grid{grid-template-columns:1fr}
 .form-grid .full{grid-column:auto}
 .settings-card,.product-form,.product-manager,.backup-card{padding:19px}
 .backup-card{align-items:flex-start;flex-direction:column}
 .backup-actions{width:100%}
 .backup-actions .btn{width:100%}
 .admin-product-item{grid-template-columns:55px 1fr}
 .admin-product-item img{width:55px;height:62px}
 .item-actions{grid-column:1/-1;justify-content:flex-end}
}


/* Métricas do catálogo */
.admin-header-actions{margin-left:auto;display:flex;gap:10px;align-items:center}
.secondary-header-cta{background:white;color:var(--pink-600);border:1px solid var(--line)}
.metrics-section{margin:30px 0 22px}
.metrics-heading{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:18px}
.metrics-heading h2{font-family:"Playfair Display",serif;font-size:clamp(2rem,4vw,3rem);margin:5px 0}
.metrics-heading p{color:var(--muted);margin:0}
.metrics-actions{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.metric-summary-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:16px}
.metric-summary-card{padding:20px;border-radius:20px;background:linear-gradient(145deg,#fff,#fff0f7);border:1px solid var(--line);box-shadow:0 10px 28px rgba(107,40,76,.06)}
.metric-summary-card span{display:block;color:var(--pink-600);font-weight:800;font-size:.82rem}
.metric-summary-card strong{display:block;font-family:"Playfair Display",serif;font-size:2.25rem;line-height:1;margin:9px 0 7px;color:var(--wine)}
.metric-summary-card small{color:var(--muted)}
.metrics-table-card{padding:22px}
.metrics-table-toolbar{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:15px}
.metrics-table-toolbar .admin-search{margin:0;max-width:420px}
.metrics-sort{min-height:48px;border:1px solid var(--line);border-radius:999px;padding:0 16px;background:white;color:var(--ink);font-weight:700}
.metrics-table-wrap{overflow:auto;border:1px solid var(--line);border-radius:16px}
.metrics-table{width:100%;border-collapse:collapse;min-width:760px;background:white}
.metrics-table th,.metrics-table td{padding:13px 15px;text-align:left;border-bottom:1px solid var(--line)}
.metrics-table th{background:var(--pink-50);color:var(--wine);font-size:.78rem;text-transform:uppercase;letter-spacing:.04em}
.metrics-table tbody tr:last-child td{border-bottom:0}
.metric-product-cell{display:flex;align-items:center;gap:11px;min-width:250px}
.metric-product-cell img{width:50px;height:56px;object-fit:cover;border-radius:10px;background:var(--pink-100)}
.metric-product-cell strong,.metric-product-cell small{display:block}
.metric-product-cell small{color:var(--muted);margin-top:3px}
.conversion-pill{display:inline-block;border-radius:999px;padding:6px 9px;background:var(--pink-100);color:var(--pink-600);font-weight:800}
.metrics-note{margin-top:14px;padding:13px 15px;border-radius:13px;background:#fff8dd;color:#705d2d;font-size:.84rem}
.empty-metrics{text-align:center!important;color:var(--muted);padding:32px!important}
.stock-preview-card{display:flex;justify-content:space-between;align-items:center;gap:25px;padding:25px;margin-top:22px;background:linear-gradient(135deg,#fff,#f7f0ff)}
.stock-preview-card p{color:var(--muted);margin:5px 0 0;max-width:760px}
.coming-soon-badge{white-space:nowrap;border-radius:999px;padding:9px 14px;background:#eee2ff;color:#7444a5;font-weight:800}

@media(max-width:900px){
 .metric-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
 .metrics-heading{align-items:flex-start;flex-direction:column}
}
@media(max-width:720px){
 .admin-header-actions .secondary-header-cta{display:none}
 .metric-summary-grid{grid-template-columns:1fr 1fr;gap:9px}
 .metric-summary-card{padding:15px}
 .metric-summary-card strong{font-size:1.8rem}
 .metrics-table-card{padding:14px}
 .metrics-table-toolbar{align-items:stretch;flex-direction:column}
 .metrics-table-toolbar .admin-search{max-width:none}
 .metrics-sort{width:100%}
 .stock-preview-card{align-items:flex-start;flex-direction:column}
}
