/* ===================================================================
   LUMEA STORE
   CATALOG.CSS
   PARTE 1

   01. Base
   02. Layout
   03. Navbar
   04. Hero
   05. Hero Overlay
   06. Hero Content
   07. Hero Button
===================================================================*/

/* ==========================================================
   BASE
========================================================== */

body {
  background: var(--color-light);

  color: var(--color-dark);

  font-family: var(--font-text);

  overflow-x: hidden;

  line-height: 1.6;
}

section {
  position: relative;
}

img {
  display: block;

  width: 100%;
}

/* ==========================================================
   CONTAINER
========================================================== */

.container {
  width: min(1320px, calc(100% - 80px));

  margin: auto;
}

.page {
  position: relative;

  padding: 140px 0;
}

.text-center {
  text-align: center;
}

/* ==========================================================
   NAVBAR
========================================================== */

.navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 9999;

  backdrop-filter: blur(14px);

  background: rgba(255, 255, 255, 0.65);

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);

  transition: 0.35s;
}

.navbar .container {
  height: 92px;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

.navbar-logo {
  width: 170px;
}

.navbar nav ul {
  display: flex;

  gap: 45px;
}

.navbar nav a {
  font-size: 15px;

  font-weight: 500;

  color: var(--color-primary);

  position: relative;
}

.navbar nav a::after {
  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 0;

  height: 2px;

  background: var(--color-secondary);

  transition: 0.3s;
}

.navbar nav a:hover::after {
  width: 100%;
}

.nav-button {
  display: flex;

  align-items: center;

  justify-content: center;

  height: 48px;

  padding: 0 26px;

  border-radius: 999px;

  background: var(--color-primary);

  color: #fff;

  font-size: 13px;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition: 0.3s;
}

.nav-button:hover {
  background: var(--color-secondary);

  transform: translateY(-2px);
}

/* ==========================================================
   HERO
========================================================== */

.hero {
  position: relative;

  height: 100vh;

  overflow: hidden;
}

.hero > img {
  position: absolute;

  inset: 0;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: scale(1.05);

  animation: heroZoom 12s ease forwards;
}

/* ==========================================================
   OVERLAY
========================================================== */

.hero-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,

    rgba(0, 0, 0, 0.62),
    rgba(0, 0, 0, 0.18)
  );

  z-index: 2;
}

/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content {
  position: relative;

  z-index: 3;

  height: 100%;

  max-width: 1320px;

  margin: auto;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  padding: 0 40px;
}

.hero-content span {
  color: #e9d2a4;

  letter-spacing: 8px;

  text-transform: uppercase;

  font-size: 0.85rem;

  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--font-title);

  font-size: 92px;

  line-height: 1;

  color: #fff;

  max-width: 700px;

  margin-bottom: 26px;
}

.hero-content p {
  max-width: 560px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 20px;

  line-height: 1.8;

  margin-bottom: 42px;
}

/* ==========================================================
   HERO BUTTON
========================================================== */

.hero-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 18px 42px;

  border-radius: 999px;

  background: var(--color-secondary);

  color: #fff;

  font-size: 13px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: 0.35s;

  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.hero-button:hover {
  background: var(--color-primary);

  transform: translateY(-4px);
}

/* ==========================================================
   HERO ANIMATION
========================================================== */

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}
/* ===================================================================
   LUMEA STORE
   CATALOG.CSS
   PARTE 2

   08. Editorial
   09. Highlight
   10. Badge
   11. Product Feature
   12. Collection
===================================================================*/

/* ==========================================================
   EDITORIAL
========================================================== */

.editorial-section {
  padding: 180px 0;

  background: #ffffff;
}

.editorial-section .container {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 100px;

  align-items: center;
}

.editorial-image {
  overflow: hidden;

  border-radius: 22px;

  box-shadow: var(--shadow-lg);
}

.editorial-image img {
  width: 100%;

  height: 760px;

  object-fit: cover;

  transition: 0.7s ease;
}

.editorial-image:hover img {
  transform: scale(1.05);
}

.editorial-content span {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--color-secondary);

  letter-spacing: 6px;

  text-transform: uppercase;

  font-size: 0.8rem;

  font-weight: 600;
}

.editorial-content h2 {
  font-family: var(--font-title);

  font-size: 68px;

  line-height: 1.05;

  color: var(--color-primary);

  margin-bottom: 35px;
}

.editorial-content p {
  font-size: 18px;

  line-height: 2;

  color: #666;

  max-width: 560px;
}

/* ==========================================================
   HIGHLIGHT
========================================================== */

.highlight-section {
  padding: 180px 0;

  background: #faf8f4;
}

.product-feature {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 90px;

  align-items: center;
}

.product-feature .product-image {
  border-radius: 24px;

  overflow: hidden;

  box-shadow: var(--shadow-lg);
}

.product-feature .product-image img {
  width: 100%;

  height: 900px;

  object-fit: cover;
}

.product-feature .product-info {
  display: flex;

  flex-direction: column;

  justify-content: center;
}

.product-feature .product-info span:first-child {
  font-size: 0.85rem;

  letter-spacing: 6px;

  color: var(--color-secondary);

  text-transform: uppercase;

  margin-bottom: 18px;
}

.product-feature .product-title {
  font-size: 72px;

  line-height: 1;

  margin-bottom: 30px;
}

.product-feature .product-description {
  font-size: 18px;

  line-height: 2;

  margin-bottom: 35px;

  max-width: 470px;
}

/* ==========================================================
   BADGES
========================================================== */

.badge {
  position: absolute;

  top: 30px;

  left: 30px;

  z-index: 20;

  background: rgba(255, 255, 255, 0.95);

  color: var(--color-primary);

  padding: 12px 22px;

  border-radius: 999px;

  font-size: 0.75rem;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-weight: 700;

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(10px);
}

/* ==========================================================
   COLLECTION
========================================================== */

.collection-section {
  padding: 180px 0;
}

.section-header {
  text-align: center;

  margin-bottom: 90px;
}

.section-header span {
  display: block;

  color: var(--color-secondary);

  letter-spacing: 8px;

  text-transform: uppercase;

  font-size: 0.82rem;

  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-title);

  font-size: 70px;

  color: var(--color-primary);
}

/* ==========================================================
   DIVISOR
========================================================== */

.section-header::after {
  content: "";

  display: block;

  width: 90px;

  height: 2px;

  background: var(--color-secondary);

  margin: 28px auto 0;
}

/* ==========================================================
   ESPAÇAMENTO ENTRE BLOCOS
========================================================== */

.collection-section + .collection-section {
  padding-top: 80px;
}

/* ==========================================================
   TÍTULOS
========================================================== */

h1,
h2,
h3 {
  font-family: var(--font-title);

  font-weight: 600;
}

/* ==========================================================
   TEXTO PADRÃO
========================================================== */

p {
  color: #666;
}
/* ===================================================================
   LUMEA STORE
   CATALOG.CSS
   PARTE 3

   13. Editorial Grid
   14. Look Card
   15. Product Card
   16. Colors
   17. Sizes
   18. Buttons
===================================================================*/

/* ==========================================================
   EDITORIAL GRID
========================================================== */

.editorial-grid {
  display: flex;

  flex-direction: column;

  gap: 180px;
}

/* ==========================================================
   LOOK CARD
========================================================== */

.look-card {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 90px;

  align-items: center;
}

.look-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.look-card.reverse .look-image {
  order: 2;
}

.look-card.reverse .look-info {
  order: 1;
}

/* ==========================================================
   LOOK IMAGE
========================================================== */

.look-image {
  position: relative;

  overflow: hidden;

  border-radius: 22px;

  background: #f8f8f8;

  box-shadow: var(--shadow-lg);
}

.look-image img {
  width: 100%;

  height: 860px;

  object-fit: cover;

  transition: 0.8s ease;
}

.look-card:hover .look-image img {
  transform: scale(1.05);
}

/* ==========================================================
   LOOK INFO
========================================================== */

.look-info {
  display: flex;

  flex-direction: column;

  justify-content: center;
}

.look-info span:first-child {
  display: inline-block;

  margin-bottom: 16px;

  color: var(--color-secondary);

  letter-spacing: 5px;

  text-transform: uppercase;

  font-size: 0.82rem;
}

.look-info h3 {
  font-size: 64px;

  color: var(--color-primary);

  margin-bottom: 26px;

  line-height: 1.05;
}

.look-info p {
  max-width: 520px;

  line-height: 2;

  margin-bottom: 34px;

  font-size: 17px;
}

/* ==========================================================
   PRODUCT GRID
========================================================== */

.products-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 40px;
}

/* ==========================================================
   PRODUCT CARD
========================================================== */

.product-card {
  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  transition: 0.35s;

  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-12px);

  box-shadow: var(--shadow-lg);
}

/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.product-image {
  position: relative;

  overflow: hidden;
}

.product-image img {
  width: 100%;

  height: 620px;

  object-fit: cover;

  transition: 0.7s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

/* ==========================================================
   PRODUCT INFO
========================================================== */

.product-info {
  padding: 34px;
}

.product-category {
  display: block;

  margin-bottom: 12px;

  color: var(--color-secondary);

  letter-spacing: 3px;

  text-transform: uppercase;

  font-size: 0.78rem;
}

.product-title {
  font-size: 34px;

  color: var(--color-primary);

  margin-bottom: 18px;
}

.product-description {
  font-size: 15px;

  line-height: 1.9;

  margin-bottom: 26px;
}

/* ==========================================================
   COLORS
========================================================== */

.colors {
  display: flex;

  gap: 14px;

  margin-bottom: 28px;
}

.color {
  width: 20px;

  height: 20px;

  border-radius: 50%;

  border: 2px solid rgba(0, 0, 0, 0.08);
}

.color.black {
  background: #1b1b1b;
}

.color.white {
  background: #ffffff;
}

.color.beige {
  background: #d7c3a2;
}

.color.brown {
  background: #715040;
}

.color.green {
  background: #738567;
}

.color.wine {
  background: #6d2034;
}

/* ==========================================================
   SIZES
========================================================== */

.sizes {
  display: flex;

  gap: 12px;

  margin-bottom: 34px;
}

.size {
  width: 46px;

  height: 46px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  border: 1px solid #ddd;

  font-size: 14px;

  transition: 0.3s;
}

.size:hover {
  background: var(--color-primary);

  color: #fff;

  border-color: var(--color-primary);
}

/* ==========================================================
   BUTTONS
========================================================== */

.product-button {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 18px 34px;

  border-radius: 999px;

  background: var(--color-primary);

  color: #fff;

  font-size: 13px;

  letter-spacing: 2px;

  text-transform: uppercase;

  transition: 0.35s;
}

.product-button:hover {
  background: var(--color-secondary);

  transform: translateY(-3px);
}

/* ==========================================================
   PRICE
========================================================== */

.product-price {
  margin-top: 18px;

  margin-bottom: 24px;

  font-family: var(--font-title);

  font-size: 34px;

  color: var(--color-primary);
}
/* ===================================================================
   LUMEA STORE
   CATALOG.CSS
   PARTE 4

   19. CTA
   20. Footer
   21. WhatsApp Float
   22. Animations
   23. Utilities
===================================================================*/

/* ==========================================================
   CTA
========================================================== */

.cta {
  background: linear-gradient(135deg, #faf8f5, #ffffff);

  text-align: center;

  padding: 180px 0;
}

.cta .collection {
  color: var(--color-secondary);

  margin-bottom: 22px;
}

.cta h2 {
  font-family: var(--font-title);

  font-size: 72px;

  color: var(--color-primary);

  line-height: 1.1;

  margin-bottom: 28px;
}

.cta p {
  max-width: 700px;

  margin: 0 auto 50px;

  font-size: 18px;

  line-height: 2;
}

/* ==========================================================
   FOOTER
========================================================== */

.footer {
  background: #faf8f5;

  border-top: 1px solid var(--color-border);

  padding: 90px 0 40px;
}

.footer-content {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 80px;

  align-items: flex-start;
}

.footer-logo {
  width: 180px;

  margin-bottom: 28px;
}

.footer h3 {
  font-family: var(--font-title);

  font-size: 34px;

  color: var(--color-primary);

  margin-bottom: 20px;
}

.footer h4 {
  font-size: 15px;

  text-transform: uppercase;

  letter-spacing: 3px;

  color: var(--color-secondary);

  margin-bottom: 12px;
}

.footer p {
  line-height: 1.9;

  color: #666;
}

.footer a {
  color: var(--color-primary);

  font-weight: 500;
}

.footer a:hover {
  color: var(--color-secondary);
}

.copyright {
  margin-top: 70px;

  padding-top: 30px;

  border-top: 1px solid var(--color-border);

  text-align: center;

  color: #999;

  font-size: 0.9rem;
}

/* ==========================================================
   WHATSAPP FLOAT
========================================================== */

.whatsapp-float {
  position: fixed;

  right: 30px;

  bottom: 30px;

  width: 70px;

  height: 70px;

  border-radius: 50%;

  background: #25d366;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);

  z-index: 9999;

  transition: 0.35s;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.08);

  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25);
}

/* ==========================================================
   ANIMAÇÕES
========================================================== */

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(50px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;

    transform: translateX(-60px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;

    transform: translateX(60px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

.hero-content {
  animation: fadeLeft 1.2s ease;
}

.editorial-content {
  animation: fadeRight 1.2s ease;
}

.look-card {
  animation: fadeUp 0.8s ease both;
}

.product-card {
  animation: fadeUp 0.8s ease both;
}

/* ==========================================================
   TRANSITIONS
========================================================== */

a,
button,
.product-card,
.look-card,
img {
  transition: 0.35s ease;
}

/* ==========================================================
   UTILITIES
========================================================== */

.mt-1 {
  margin-top: 20px;
}

.mt-2 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 80px;
}

.mb-1 {
  margin-bottom: 20px;
}

.mb-2 {
  margin-bottom: 40px;
}

.mb-3 {
  margin-bottom: 80px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.hidden {
  display: none;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}
/* ===================================================================
   LUMEA STORE
   CATALOG.CSS
   PARTE 5

   24. Responsive 1400
   25. Responsive 1200
   26. Responsive 992
   27. Responsive 768
   28. Responsive 576
   29. Print
   30. Final
===================================================================*/

/* ==========================================================
   1400px
========================================================== */

@media (max-width: 1400px) {
  .container {
    width: min(100%, calc(100% - 80px));
  }

  .hero-content h1 {
    font-size: 78px;
  }

  .product-feature {
    gap: 70px;
  }

  .look-card {
    gap: 70px;
  }
}

/* ==========================================================
   1200px
========================================================== */

@media (max-width: 1200px) {
  .container {
    width: min(100%, calc(100% - 60px));
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 68px;
  }

  .editorial-section .container {
    grid-template-columns: 1fr;
  }

  .product-feature {
    grid-template-columns: 1fr;
  }

  .look-card {
    grid-template-columns: 1fr;
  }

  .look-card.reverse .look-image {
    order: 1;
  }

  .look-card.reverse .look-info {
    order: 2;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;

    text-align: center;
  }
}

/* ==========================================================
   992px
========================================================== */

@media (max-width: 992px) {
  .navbar .container {
    height: 80px;
  }

  .navbar nav {
    display: none;
  }

  .nav-button {
    display: none;
  }

  .hero {
    height: 90vh;
  }

  .hero-content {
    align-items: center;

    text-align: center;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-content p {
    max-width: 600px;
  }

  .editorial-content h2 {
    font-size: 52px;
  }

  .section-header h2 {
    font-size: 54px;
  }

  .look-info h3 {
    font-size: 46px;
  }

  .product-feature .product-title {
    font-size: 52px;
  }
}

/* ==========================================================
   768px
========================================================== */

@media (max-width: 768px) {
  .page {
    padding: 90px 0;
  }

  .container {
    width: min(100%, calc(100% - 40px));
  }

  .hero {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-button {
    width: 100%;
  }

  .editorial-section {
    padding: 100px 0;
  }

  .editorial-image img {
    height: auto;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 44px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 70px 0 30px;
  }

  .footer-logo {
    margin: auto auto 25px;
  }

  .footer-content {
    gap: 40px;
  }

  .whatsapp-float {
    width: 62px;

    height: 62px;

    right: 20px;

    bottom: 20px;
  }
}

/* ==========================================================
   576px
========================================================== */

@media (max-width: 576px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .navbar-logo {
    width: 140px;
  }

  .hero-content span {
    letter-spacing: 4px;

    font-size: 0.75rem;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 15px;

    line-height: 1.8;
  }

  .hero-button {
    padding: 16px 28px;

    font-size: 12px;
  }

  .editorial-content h2 {
    font-size: 38px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .look-info h3 {
    font-size: 34px;
  }

  .product-feature .product-title {
    font-size: 40px;
  }

  .product-title {
    font-size: 28px;
  }

  .product-info {
    padding: 25px;
  }

  .product-button {
    width: 100%;

    justify-content: center;
  }

  .sizes {
    flex-wrap: wrap;
  }

  .colors {
    flex-wrap: wrap;
  }

  .footer {
    text-align: center;
  }

  .footer h3 {
    font-size: 28px;
  }
}

/* ==========================================================
   PRINT
========================================================== */

@media print {
  html {
    zoom: 0.9;
  }

  body {
    background: #fff !important;

    color: #000;
  }

  .navbar {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }

  .hero {
    height: 297mm;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
  }

  .page {
    page-break-after: always;

    break-after: page;
  }

  .product-card {
    box-shadow: none;
  }

  .look-card {
    break-inside: avoid;
  }

  img {
    break-inside: avoid;
  }

  a {
    text-decoration: none;
  }
}

/* ==========================================================
   FOCUS
========================================================== */

:focus-visible {
  outline: 2px solid var(--color-secondary);

  outline-offset: 4px;
}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f3ef;
}

::-webkit-scrollbar-thumb {
  background: var(--color-secondary);

  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* ==========================================================
   IMAGE RENDER
========================================================== */

img {
  image-rendering: auto;
}

/* ==========================================================
   FIM
========================================================== */
/* ==========================================================
   NAVBAR SCROLLED
========================================================== */

.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(18px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.navbar.navbar-scrolled .container {
  height: 78px;
}

.navbar nav a.active {
  color: var(--color-secondary);
}

.navbar nav a.active::after {
  width: 100%;
}
/* ==========================================================
   IMAGE LOAD
========================================================== */

img {
  opacity: 0;

  transition:
    opacity 0.7s ease,
    transform 0.8s ease;
}

img.loaded {
  opacity: 1;
}

/* ==========================================================
   REVEAL
========================================================== */

.reveal {
  opacity: 0;

  transform: translateY(60px);
}

.reveal.active {
  opacity: 1;

  transform: none;
}

/* ==========================================================
   GPU
========================================================== */

.hero img,
.look-image img,
.product-image img {
  will-change: transform;
}
/* ==========================================================
   BACK TO TOP
========================================================== */

.back-to-top {
  position: fixed;

  right: 32px;

  bottom: 120px;

  width: 56px;

  height: 56px;

  border: none;

  border-radius: 50%;

  background: var(--color-primary);

  color: #fff;

  font-size: 24px;

  cursor: pointer;

  opacity: 0;

  visibility: hidden;

  transform: translateY(20px);

  transition: all 0.35s ease;

  z-index: 9998;

  box-shadow: var(--shadow-md);
}

.back-to-top.show {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-secondary);
}

/* ==========================================================
   BODY READY
========================================================== */

body.loaded {
  opacity: 1;
}

body {
  opacity: 0;

  transition: opacity 0.5s ease;
}

.hero picture,.hero picture img{width:100%;height:100%;display:block}.hero picture{position:absolute;inset:0}.hero picture img{object-fit:cover;object-position:center}

/* Mobile Menu */
.menu-toggle{display:none;flex-direction:column;gap:6px;background:none;border:0;cursor:pointer}
.menu-toggle span{width:28px;height:2px;background:#6e4529;display:block;transition:.3s}
.mobile-menu{position:fixed;top:0;right:-100%;width:280px;height:100vh;background:#fff;padding:100px 40px;display:flex;flex-direction:column;gap:24px;transition:.35s;z-index:9999;box-shadow:-10px 0 30px rgba(0,0,0,.08)}
.mobile-menu.active{right:0}
.mobile-menu a{text-decoration:none;color:#6e4529;font-size:20px}
.mobile-whatsapp{margin-top:20px;padding:14px;border-radius:999px;background:#c89b32;color:#fff!important;text-align:center}
@media(max-width:900px){
.navbar nav,.nav-button{display:none}
.menu-toggle{display:flex}
}


.menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.35);backdrop-filter:blur(4px);opacity:0;visibility:hidden;transition:.3s;z-index:9998}
.menu-overlay.active{opacity:1;visibility:visible}
.menu-toggle{z-index:10001}
.mobile-menu{z-index:10000}
.menu-toggle.active span:nth-child(1){transform:translateY(8px) rotate(45deg)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:translateY(-8px) rotate(-45deg)}


/* ===== Mobile image optimization ===== */
@media (max-width:768px){

.product-image{
  aspect-ratio: 4 / 5;
  background:#f7f4ef;
}

.product-image img{
  height:100%;
  min-height:unset;
  object-fit:contain !important;
  object-position:center center !important;
  padding:10px;
  background:#f7f4ef;
}

.product-feature{
  gap:32px;
}

.product-feature .product-image img{
  height:100%;
  object-fit:contain !important;
  object-position:center center !important;
  padding:10px;
}

}


/* ===== MOBILE EXCLUSIVE PRODUCT LAYOUT ===== */
@media (max-width: 768px){

.product-card,
.editorial-card,
.product{
    display:flex !important;
    flex-direction:column !important;
    border-radius:22px;
    overflow:hidden;
}

.product-image,
.product-card .image,
.product figure{
    width:100% !important;
    flex:none !important;
    min-height:520px !important;
    max-height:520px !important;
    background:#f7f3ee;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    overflow:hidden;
}

.product-image img,
.product-card .image img,
.product figure img{
    width:100% !important;
    height:100% !important;
    object-fit:contain !important;
    object-position:center top !important;
    transform:none !important;
    padding:10px;
}

.product-info,
.product-content,
.product-details{
    width:100% !important;
    padding:24px !important;
}

}


/* ===== Premium Mobile Cards ===== */
@media (max-width: 768px){
.products-grid{
display:grid;
grid-template-columns:1fr;
gap:32px;
}
.product-card{
display:flex !important;
flex-direction:column !important;
overflow:hidden;
border-radius:24px;
}
.product-image{
width:100% !important;
height:520px !important;
flex:none !important;
background:#f8f6f2;
display:flex;
align-items:center;
justify-content:center;
padding:18px;
}
.product-image img{
width:100%;
height:100%;
object-fit:contain !important;
object-position:center center !important;
transform:none !important;
}
.product-info{
width:100% !important;
padding:26px 22px !important;
}
.look-card{
display:flex !important;
flex-direction:column !important;
}
.look-image{
width:100% !important;
height:520px !important;
}
.look-image img{
width:100%;
height:100%;
object-fit:contain !important;
object-position:center center !important;
}
.look-info{
width:100% !important;
}
}


/* ===== Mobile refinement v2 ===== */
@media (max-width:768px){
.products-grid{
display:grid;
grid-template-columns:1fr!important;
gap:32px!important;
}
.product-card{
padding:0!important;
overflow:hidden;
}
.product-image{
background:#faf8f5;
padding:18px;
display:flex;
align-items:center;
justify-content:center;
min-height:420px;
}
.product-image img{
width:100%!important;
height:400px!important;
object-fit:contain!important;
object-position:center center!important;
transform:none!important;
}
.look-card{
grid-template-columns:1fr!important;
gap:24px!important;
}
.look-image{
padding:18px;
background:#faf8f5;
}
.look-image img{
height:420px!important;
object-fit:contain!important;
object-position:center center!important;
transform:none!important;
}
.product-info,.look-info{
padding:24px;
text-align:center;
}
.product-button{
width:100%;
justify-content:center;
}
}

@media (max-width:768px){#LM003,#lm003,.product-card.lm003{display:flex!important;flex-direction:column!important;}#LM003 .product-image,#lm003 .product-image,.product-card.lm003 .product-image{order:1!important;}#LM003 .product-info,#lm003 .product-info,.product-card.lm003 .product-info{order:2!important;}}
.whatsapp-float{background:linear-gradient(135deg,#b88a2f,#d4af37)!important;width:64px!important;height:64px!important;border-radius:50%!important;border:2px solid rgba(255,255,255,.9)!important;box-shadow:0 12px 30px rgba(184,138,47,.35)!important}.whatsapp-float:hover{transform:translateY(-4px) scale(1.05)!important;box-shadow:0 18px 40px rgba(184,138,47,.45)!important}.whatsapp-float svg{fill:#fff!important;width:28px;height:28px}
