/* 
 * Lass Design - Móveis de Design
 * Design Philosophy: Minimalismo Premium - Inspirado em Artefacto
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --black: #000000;
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --light-gray: #EBEBEB;
  --mid-gray: #9B9B9B;
  --dark-gray: #1A1A1A;
  --border: #DEDEDE;
  --footer-bg: #0A0A0A;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== LOADING SCREEN ==================== */

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-bar {
  margin-top: 2.5rem;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(0.97);
  }
}

@keyframes loaderSlide {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ==================== HEADER & NAVIGATION ==================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==================== LOGO ==================== */

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  max-width: 195px;
}

.logo img {
  height: 195px;  
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease-in-out; 
}


.logo.scrolled img {
  height: 160px; 
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  transition: var(--transition);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  background-color: #E63946;
}

.nav-links a:hover,
.nav-links a.active {
  color: #E63946;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* ==================== MOBILE MENU BUTTON ==================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn span {
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  border-radius: 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9.25px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9.25px) rotate(-45deg);
}

/* ==================== MOBILE DRAWER ==================== */

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #000;
  z-index: 1001;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-drawer-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 2rem;
  gap: 0.4rem;
}

.mobile-drawer-nav a {
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.mobile-drawer-nav a:hover,
.mobile-drawer-nav a.active {
  color: #fff;
}

/* ==================== OUTLET HIGHLIGHT ==================== */
.nav-outlet-highlight {
  background-color: #E63946 !important;
  color: #fff !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}

.nav-outlet-highlight::after {
  display: none !important;
}

.nav-outlet-highlight:hover {
  background-color: #c92a36 !important;
  transform: translateY(-2px);
}

.mobile-drawer-nav .nav-outlet-highlight {
  background-color: #E63946 !important;
  color: #fff !important;
  border-radius: 4px;
  margin: 0.5rem 1.5rem;
  padding: 0.8rem !important;
}

.mobile-drawer-social {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mobile-drawer-social a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.mobile-drawer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-drawer.active .mobile-drawer-nav a {
  animation: slideInRight 0.4s ease forwards;
  opacity: 0;
}

.mobile-drawer.active .mobile-drawer-nav a:nth-child(1) {
  animation-delay: 0.1s;
}

.mobile-drawer.active .mobile-drawer-nav a:nth-child(2) {
  animation-delay: 0.18s;
}

.mobile-drawer.active .mobile-drawer-nav a:nth-child(3) {
  animation-delay: 0.26s;
}

.mobile-drawer.active .mobile-drawer-nav a:nth-child(4) {
  animation-delay: 0.34s;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .logo img {
    height: 100px;
  }

  .logo.scrolled img {
    height: 85px;
  }
}

@media (min-width: 769px) {

  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-menu-btn {
    display: none !important;
  }
}

/* Notification animations */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--black);
}

.carousel-container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.carousel-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  position: relative;
  display: flex;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: kenburns 22s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.07);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  padding: 5rem 5%;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  max-width: 600px;
  color: var(--white);
  animation: fadeInUp 0.9s ease-out;
  z-index: 2;
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  font-size: 0.65rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.05;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
  color: var(--white);
}

.hero-description {
  font-size: 0.82rem;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.68rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: #E63946;
  color: var(--white);
  border-color: #E63946;
}

/* ==================== CAROUSEL CONTROLS ==================== */

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.9rem;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.carousel-nav:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-50%);
}

.carousel-nav.prev {
  left: 2.5rem;
}

.carousel-nav.next {
  right: 2.5rem;
}

/* ==================== CAROUSEL INDICATORS ==================== */

.carousel-indicators {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  display: flex;
  gap: 0.6rem;
  z-index: 30;
  flex-direction: column;
}

.carousel-indicator {
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  padding: 0;
}

.carousel-indicator.active {
  background-color: var(--white);
  height: 50px;
}

/* ==================== ABOUT SECTION ==================== */

.about-section {
  padding: 8rem 5%;
  background: var(--white);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.about-content p {
  color: var(--mid-gray);
  font-size: 0.88rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==================== SECTION HEADER ==================== */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  font-family: 'Cormorant Garamond', serif;
}

.section-divider {
  width: 40px;
  height: 3px;
  background: #E63946;
  margin: 0 auto 1.2rem;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 0.78rem;
  color: var(--mid-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  max-width: 500px;
  margin: 0 auto;
}

/* ==================== GALLERY SECTION ==================== */

.gallery-section {
  padding: 8rem 5%;
  background: var(--off-white);
}

.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==================== LIGHTBOX ==================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--black);
}

.lightbox-content {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.lightbox-main img {
  max-height: 70vh;
  max-width: 85vw;
  object-fit: contain;
}

.lightbox-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  max-width: 85vw;
}

.lightbox-thumb {
  cursor: pointer;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.lightbox-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.lightbox-thumb.active {
  border-color: var(--white);
}

/* ==================== FEATURED / PRODUCTS SECTION ==================== */

.featured-section {
  padding: 8rem 5%;
  background: var(--white);
}

/* ==================== PRODUCT FILTER ==================== */

.product-filter-container {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.filter-search-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  flex: 0 1 300px;
  background: var(--white);
}

.filter-search-wrapper input {
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-gray);
  width: 100%;
  background: transparent;
}

.filter-search-wrapper input::placeholder {
  color: var(--mid-gray);
}

.filter-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tag {
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
  border-color: var(--black);
  color: var(--black);
  background: var(--white);
}

.filter-tag.active {
  background: var(--black);
  color: var(--white);
}

.filter-select {
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-gray);
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  min-width: 180px;
}

/* ==================== PRODUCTS GRID ==================== */

.products-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}

.product-card {
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.product-card-catalog {
  background: var(--off-white);
}

.product-image-wrapper,
.product-catalog-img-wrapper {
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}

.product-image,
.product-catalog-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.7s ease;
  display: block;
}

.product-catalog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.product-card:hover .product-catalog-overlay {
  background: rgba(0, 0, 0, 0.22);
}

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

.product-catalog-zoom {
  background: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 0.85rem;
}

.product-card:hover .product-catalog-zoom {
  opacity: 1;
  transform: scale(1);
}

.product-catalog-footer {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.product-catalog-ref {
  font-size: 0.65rem;
  color: var(--mid-gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.product-catalog-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark-gray);
  padding: 0.45rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.product-catalog-whatsapp:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ==================== LOAD MORE ==================== */

.load-more-container {
  max-width: 1400px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.products-counter {
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--black);
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--black);
  font-size: 0.68rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.load-more-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* ==================== NO PRODUCTS MESSAGE ==================== */

.no-products-msg {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid-gray);
}

.no-products-msg p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* ==================== PRODUCT LIGHTBOX ==================== */

.product-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-lightbox-content {
  position: relative;
  max-width: 80vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.product-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
}

.product-lightbox-close:hover {
  background: white;
  color: black;
}

.product-lightbox-img {
  max-height: 70vh;
  max-width: 80vw;
  object-fit: contain;
}

.product-lightbox-actions {
  display: flex;
  justify-content: center;
}

.product-lightbox-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 0.75rem 1.75rem;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.product-lightbox-whatsapp:hover {
  background: white;
  color: black;
  border-color: white;
}

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

.page-hero {
  height: 65vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 4rem 5%;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.page-hero-subtitle {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* ==================== HERO PAGE OUTLET ==================== */

.page-hero-outlet {
  height: 100vh;
  min-height: 600px;
}

.hero.page-hero-outlet .hero-content {
  justify-content: center;
  text-align: center;
}

.hero.page-hero-outlet .hero-text {
  max-width: 800px;
  margin: 0 auto;
}

/* ==================== FAQ SECTION ==================== */

.faq-section {
  padding: 8rem 5%;
  background: var(--off-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 1.8rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

.faq-question span {
  flex: 1;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--mid-gray);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.8rem;
}

.faq-answer p {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.9;
  font-family: 'Montserrat', sans-serif;
}

/* ==================== BLOG / INSTAGRAM SECTION ==================== */

.blog-section {
  padding: 8rem 5%;
  background: var(--white);
}

.blog-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

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

.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.blog-card:hover .blog-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.blog-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0.6rem 1.2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.blog-card:hover .blog-link {
  opacity: 1;
  transform: translateY(0);
}

.blog-link:hover {
  background: var(--white);
  color: var(--black);
}

.blog-content {
  padding: 1rem 0;
}

.blog-caption {
  font-size: 0.75rem;
  color: var(--mid-gray);
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

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

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

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

footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 5% 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s ease;
}

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

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-divider p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ==================== MISSION SECTION (SEM HOVER) ==================== */

.mission-section {
  padding: 8rem 5%;
  background: var(--black);
  color: var(--white);
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.mission-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mission-content p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', sans-serif;
}

.mission-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.title-underline {
  width: 40px;
  height: 1px;
  background: var(--white);
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .mission-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==================== VALUES SECTION ==================== */

.values-section {
  padding: 8rem 5%;
  background: var(--white);
}

.values-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.value-card h3 {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.2rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.9;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== PAGE HERO (historia) ==================== */

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

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

.product-price-outlet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.2rem;
  background: var(--white);
}

.old-price {
  font-size: 0.75rem;
  text-decoration: line-through;
  color: var(--mid-gray);
  font-family: 'Montserrat', sans-serif;
}

.new-price {
  font-size: 0.9rem;
  color: var(--dark-gray);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.product-price-regular {
  font-size: 0.75rem;
  color: var(--mid-gray);
  font-family: 'Montserrat', sans-serif;
  padding: 0.3rem 0;
  letter-spacing: 0.5px;
}

/* ==================== PRODUCT NAME TAG ==================== */

.product-name-tag {
  font-size: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-gray);
  text-align: center;
  padding: 0.8rem 1rem 0;
  font-weight: 500;
}

/* ==================== HERO PRODUCT BG ==================== */

.hero-product-bg img {
  animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-product-overlay {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      transparent 100%);
}

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

/* ==================== RESPONSIVE GLOBAL ==================== */

@media (max-width: 768px) {
  .hero-content {
    padding: 4rem 5%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .carousel-nav {
    display: none;
  }

  .carousel-indicators {
    right: 50%;
    transform: translateX(50%);
    bottom: 1.5rem;
    flex-direction: row;
  }

  .carousel-indicator {
    width: 30px;
    height: 1px;
  }

  .carousel-indicator.active {
    width: 50px;
    height: 1px;
  }

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

  .about-section,
  .gallery-section,
  .featured-section,
  .faq-section,
  .blog-section,
  .mission-section,
  .values-section {
    padding: 4rem 5%;
  }
}

/* ==================== DISCOUNT BADGE ==================== */

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  z-index: 5;
  font-weight: 500;
}

/* ==================== CUSTOM AOS BLUR ANIMATION ==================== */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px) !important;
  filter: blur(10px) !important;
  transition-property: transform, opacity, filter !important;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0) !important;
  filter: blur(0px) !important;
}