:root {
  /* Colors - Minimalist White Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-accent: #f5f5f5;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --accent-color: #000000;
  --border-color: #ececec;

  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  opacity: 0;
}

body.loaded {
  opacity: 1;
}

/* Layout */
.container {
  max-width: 80%;
  margin: 0 auto;
}

/* Gallery Grid - 4 in a row on Desktop */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* Mobile */
  gap: 40px 20px;
  margin-bottom: var(--spacing-xl);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet */
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    /* Desktop: 4 in fila */
    gap: 50px 30px;
  }
}

/* Artwork Card */
.artwork-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.artwork-card:hover {
  transform: translateY(-5px);
}

/* Square Image Wrapper */
.artwork-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Forza il quadrato */
  overflow: hidden;
  background-color: var(--bg-secondary);
  margin-bottom: 15px;
}

.artwork-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Riempie il quadrato senza deformare */
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.artwork-card:hover .artwork-image {
  transform: scale(1.05);
}

.artwork-details-mnl {
  text-align: center;
  /* Centered minimalist look */
  padding: 10px 0;
}

.artwork-meta-mnl {
  font-size: 0.75rem;
  font-weight: 700;
  /* Stronger stampatello */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 2px;
  display: block;
}

.artwork-status-mnl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.artwork-price-mnl {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 5px 0;
  color: var(--text-primary);
}

.product-price-mnl {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}


/* Headers */
.gallery-header {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.gallery-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Search Filter */
.search-container {
  max-width: 350px;
  margin: 0 auto 70px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.search-input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-align: center;
  text-transform: uppercase;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-bottom-color: var(--text-primary);
}

.search-input::placeholder {
  color: #bbb;
  opacity: 0.6;
}

/* Resto del CSS (Header, Footer, Lightbox etc.) rimane invariato rispetto al tuo originale... */

html {
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--font-main);
  font-weight: 700;
  letter-spacing: -0.03em;
  /* Slightly tighter */
  text-transform: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Layout */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
}

section {
  padding: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md) 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

header.scrolled {
  border-bottom-color: var(--border-color);
  padding: var(--spacing-sm) 0;
}

.container.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

.branding-block-hybrid {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
}

.identity-signature-row img {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.identity-info-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-left: 20px;
  /* Force spacing using margin instead of gap */
  margin-top: -3px;
  /* Centering align */
  padding: 0;
}

.identity-meta-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.identity-subtitle {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-secondary);
  /* Back to professional gray */
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  margin: 0;
}

.identity-icon svg {
  vertical-align: middle;
  opacity: 0.6;
}

.branding-block-hybrid:hover {
  opacity: 0.8;
}

.nav-socials-mobile {
  display: none;
  /* Hidden on desktop */
}

.nav-links {
  display: flex;
  gap: 35px;
  /* Confirmed spacing for desktop */
  align-items: center;
  margin-left: auto;
}

.nav-link {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  letter-spacing: 0.3em;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: transparent !important;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: auto;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .container.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
  }

  .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-primary);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    /* Slightly reduced for mobile readability */
    color: var(--text-primary);
    white-space: normal;
    /* Allow wrapping */
    text-align: center;
    max-width: 90%;
    /* Prevent touching edges */
    margin: 0 auto;
  }

  /* Hamburger to X Animation (3 lines) */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}


.hero-mnl {
  padding-top: 180px;
  /* More space to avoid header overlap */
  background-color: var(--bg-primary);
  min-height: 100vh;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 120px;
  /* Increased gap for more elite space */
  align-items: start;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop Styles */
.hero-header-desktop {
  margin-bottom: 0px;
  /* Let children handle their own margins */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-title {
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
  margin: 0;
}

h1.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
}

h3.hero-title {
  font-size: 1.2rem;
  /* Even smaller for more 'fine' look */
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.hero-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-socials a {
  color: var(--text-primary);
  opacity: 0.8;
  transition: var(--transition);
}

.hero-socials a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-content-wrapper {
  position: sticky;
  top: 180px;
  align-self: flex-start;
}

.hero-bio {
  max-width: 480px;
  text-align: left;
}

.hero-bio p {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-align: justify;
}

.read-more-btn {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: none;
  /* Lowercase like mnl */
  padding: 8px 15px;
  border: 1px solid var(--text-primary);
  transition: var(--transition);
  margin-top: 1rem;
}

.read-more-btn:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.hero-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  width: 100%;
}

.hero-about-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 2rem;
}

.hero-about-header .hero-title {
  font-size: 20px !important;
  margin: 0;
}

.hero-identity-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.hero-identity-block .hero-title {
  font-size: 17px;
  margin-bottom: 12px;
  /* Added more space between name and subtitle */
}

.hero-identity-block span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
}

.hero-socials-footer {
  display: none;
  gap: 20px;
  align-items: center;
}

.hero-socials-footer a {
  color: var(--text-primary);
  opacity: 0.8;
  transition: var(--transition);
}


/* Global Static Hero Styling */
/* mnl-Style Home Carousel Styling */
.hero-carousel {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  position: relative;
  aspect-ratio: auto;
  /* Let images define height or fix to 100vh? mnl uses full height */
  min-height: 80vh;
  display: block;
  overflow: hidden;
  animation: fadeIn 1.2s ease-out;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.carousel-item.active {
  opacity: 1;
  position: relative;
  /* Allow first item to set height if needed, OR fix container height */
}

.hero-carousel-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

/* Mobile specific elements hidden by default */
.mobile-hero-image,
.mobile-only {
  display: none;
}

/* Responsiveness */
@media (max-width: 992px) {

  .hero-mnl,
  .hero-mnl {
    padding-top: 85px;
    /* Closer to top like mnl */
    padding-left: 0 !important;
    /* Reset .container padding to avoid double margin */
    padding-right: 0 !important;
  }

  /* Compact header on mobile */
  header {
    padding: 1rem 0 !important;
  }

  /* Reduce logo size on mobile */
  .identity-signature-row img {
    height: 28px !important;
  }

  .container {
    width: 100% !important;
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    /* Forced zero gap to eliminate unwanted space */
    padding: 0;
    /* Inherits from .container padding */
  }

  .hero-carousel-meta {
    opacity: 1;
    /* Always show on mobile */
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    padding: 30px 15px 10px;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
  }

  .hero-header-desktop .hero-socials {
    display: none !important;
  }

  .hero-static-image-wrapper {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-bottom: 20px !important;
    /* Balanced mnl gap below image */
  }

  .hero-content-wrapper {
    grid-column: 1;
    grid-row: auto;
    position: static;
    top: auto;
    text-align: justify;
    display: block;
    margin: 0;
    padding: 0 !important;
  }

  .hero-header-desktop,
  .hero-bio {
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-bio p {
    margin: 0 0 15px 0 !important;
    /* Balanced gap between paragraphs */
    text-align: justify !important;
    font-size: 9.5px !important;
    line-height: 1.55 !important;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  .hero-title {
    font-size: 12px !important;
    margin: 0 0 12px 0 !important;
    /* Identical balanced gap below About title */
    letter-spacing: 0.04em;
    font-weight: 700;
    text-transform: none;
    line-height: 1.1;
  }

  .hero-about-header {
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
    /* On mobile they stay together */
    gap: 20px !important;
    margin-bottom: 1.2rem !important;
  }

  .hero-identity-block {
    margin-bottom: 2.5rem !important;
  }

  .hero-identity-block .hero-title {
    font-size: 14px !important;
    /* Smaller name on mobile */
  }

  .hero-identity-block span {
    font-size: 0.5rem !important;
    /* Even smaller subtitle to maintain hierarchy */
    letter-spacing: 0.1em !important;
  }

  .read-more-btn {
    font-size: 8.5px !important;
    padding: 3px 7px;
    margin-top: 0 !important;
    text-transform: none;
  }

  .hero-footer-row {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero-socials-footer {
    display: flex;
  }

  .hero-socials-footer svg {
    width: 18px !important;
    height: 18px !important;
  }

  .identity-info-block {
    display: none;
    /* Hide branding info on mobile header as requested */
  }

  .nav-links {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  /* Mobile Social Icons in Menu */
  .nav-socials-mobile {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    opacity: 0.8;
  }

  .nav-socials-mobile a {
    color: var(--text-primary);
    transition: var(--transition);
  }

  .nav-socials-mobile a:hover {
    opacity: 0.6;
  }

  .hero-carousel {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin-bottom: 2rem;
    min-height: auto;
  }

  .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
  }

  .carousel-item.active {
    opacity: 1;
    position: relative;
    display: flex;
  }

  .hero-carousel-item {
    aspect-ratio: auto;
    height: auto;
  }

  .hero-carousel-item img {
    position: relative;
    width: 100%;
    height: auto;
  }

  .hero-bio p {
    font-size: 1rem;
  }
}

/* Extra compact for phones */
@media (max-width: 480px) {
  header {
    padding: 0.8rem 0 !important;
  }

  .identity-signature-row img {
    height: 24px !important;
  }

  .mobile-menu-toggle {
    width: 20px;
    height: 14px;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns for all mobile/tablet */
  gap: 30px 10px;
  /* Tighter gaps for 2 columns on mobile */
  width: 100%;
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* Desktop: 4 in fila, allow shrinking */
    gap: 50px 20px;
  }
}

.artwork-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
  min-width: 0;
  /* Allow card to shrink in grid */
  width: 100%;
}

.artwork-card:hover {
  transform: translateY(-5px);
}

.artwork-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  /* Forza il quadrato */
  overflow: hidden;
  background-color: var(--bg-secondary);
  margin-bottom: 15px;
}

.artwork-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Riempie il quadrato senza deformare */
  display: block;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.artwork-card:hover .artwork-image {
  transform: scale(1.05);
}


.artwork-details-mnl {
  text-align: left;
  padding: 0;
  overflow-wrap: break-word;
}

.artwork-meta-mnl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: block;
}

.artwork-status-mnl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Contact */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

form {
  margin-top: var(--spacing-md);
  display: grid;
  gap: var(--spacing-sm);
}

input,
textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  font-family: var(--font-main);
  transition: var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: var(--bg-primary);
}

button {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--accent-color);
  color: var(--bg-primary);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
}

button:hover {
  background: #333;
}

/* Featured Gallery specific */
.gallery-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--spacing-lg);
}

.view-all-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--text-primary);
  padding-bottom: 5px;
}

/* Catalog Filters & Search */
.filters-bar {
  margin-bottom: var(--spacing-xl);
  display: flex;
  justify-content: center;
}

.search-sort-form {
  display: flex;
  gap: 30px;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-input-wrapper input {
  width: 100%;
  padding: 12px 40px 12px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 300;
  transition: var(--transition);
}

.search-input-wrapper input:focus {
  outline: none;
  border-bottom-color: var(--text-primary);
}

.search-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-secondary);
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
}

.search-btn:hover {
  opacity: 1;
}

.sort-wrapper select {
  padding: 10px 25px 10px 0;
  border: none;
  border-bottom: 1px solid var(--border-color);
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 10 10'%3E%3Cpath d='M0 3l5 5 5-5z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.sort-wrapper select:focus {
  outline: none;
  border-bottom-color: var(--text-primary);
  color: var(--text-primary);
}

@media (max-width: 600px) {
  .search-sort-form {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.page-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Hero Carousel (Slideshow) */
.hero-carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 80vh;
  /* Increased height for desktop to fit vertical art */
  max-height: 850px;
  background: var(--bg-primary);
  /* Blend with background */
  border: none;
  /* Removed border to avoid "box" look with contain */
}

.hero-carousel {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-carousel-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center to avoid huge gaps */
}

.hero-artwork-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.hero-carousel-meta {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  text-align: left;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  /* Modified background opacity */
  padding: 40px 20px 15px;
}

.hero-carousel-item:hover .hero-carousel-meta {
  opacity: 1;
}

.hero-carousel-meta span {
  font-size: 0.65rem;
  /* Ultra fine */
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--text-primary);
  padding: 0;
  background: none;
  backdrop-filter: none;
}

.hero-carousel-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Shows ONLY the whole image */
  display: block;
}

/* Product Page */
.product-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-gallery {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: var(--bg-secondary);
}

.carousel-container {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.product-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: var(--transition);
}

.product-gallery:hover .carousel-nav {
  opacity: 1;
}

.carousel-arrow {
  width: 60px;
  height: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.8);
}

.carousel-arrow.disabled {
  display: none;
}

.carousel-dots {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* --- PRODUCT PAGE mnl STYLE --- */
.product-page-main {
  padding-top: 130px;
  /* Reduced from 180px */
  padding-bottom: 60px;
  opacity: 0;
  animation: fadeIn 1s forwards;
}

.product-title-mnl {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--text-primary);
  display: block;
}

.product-header-mobile {
  display: none;
  /* Hidden on desktop */
}

/* Desktop: Title aligned with photo in the info column */
/* Price removed */
.product-info-mnl .product-title-mnl {
  text-align: left;
  margin-bottom: 20px !important;
}

@media (max-width: 992px) {
  .product-header-mobile {
    display: block;
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }

  .product-info-mnl .product-title-mnl.desktop-only {
    display: none;
  }
}

.product-layout-mnl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .product-layout-mnl {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-page-main {
    padding-top: 110px;
    /* Slightly higher for mobile */
  }
}

@media (max-width: 600px) {
  .product-container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .product-header-full {
    margin-bottom: 0px !important;
  }

  .product-title-mnl {
    margin-bottom: 5px !important;
    /* Extremely tight */
    font-size: 1.6rem;
  }

  .product-layout-mnl {
    gap: 10px !important;
    /* Tighter gap between rows on mobile */
  }
}

/* Carousel Swipe */
.product-visuals {
  position: relative;
  width: 100%;
}

.product-carousel-swipe {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-carousel-swipe::-webkit-scrollbar {
  display: none;
}

.swipe-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  position: relative;
  overflow: hidden;
  /* Robust Square Ratio */
  aspect-ratio: 1 / 1 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

.swipe-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.carousel-thumbnails-mnl {
  display: flex;
  margin-top: 20px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.thumb-mnl {
  width: 45px;
  height: 45px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.thumb-mnl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-mnl.active {
  border: 1px solid #000;
}

/* Specs & Information (Refined Fine Style) */
.product-specs-mnl {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
}

.product-specs-mnl li {
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: #1a1a1a !important;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-weight: 400;
  opacity: 1 !important;
}

.product-specs-mnl li::before {
  content: "•";
  margin-right: 12px;
  color: #000;
  font-size: 1.1rem;
}

/* Status Section (Refined) */
.product-status-o zy {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
  color: var(--text-secondary);
}

.product-status-mnl {
  margin-bottom: 50px;
}

.status-badge-mnl {
  display: block;
  width: 100%;
  padding: 20px;
  /* Matching btn-mnl-fill */
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
  font-size: 0.75rem;
  /* Matching btn-mnl-fill */
  font-weight: 700;
  letter-spacing: 0.25em;
  /* Matching btn-mnl-fill */
  text-transform: uppercase;
  text-align: center;
  box-sizing: border-box;
}

.status-badge-mnl.sold-out {
  opacity: 0.5;
  /* More visible transparency */
}

.product-status-mnl span.available {
  color: #1a1a1a;
}

.product-status-mnl span.sold-out {
  color: #c0392b;
}

/* Accordions (Tendine) Style from User Image */
.product-accordions-mnl {
  border-bottom: 1px solid #d3cdc5;
  margin-bottom: 50px;
}

.accordion-item-mnl {
  border-top: 1px solid #d3cdc5;
}

.accordion-header-mnl {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.85rem;
  text-transform: none;
  /* Changed from uppercase to match 'fine' look */
  letter-spacing: 0.02em;
  color: #000;
  font-weight: 400;
  text-align: left;
  transition: var(--transition);
}

.accordion-header-mnl:hover {
  opacity: 0.7;
  background: transparent !important;
  /* Ensure no dark background from global styles */
}

.accordion-header-mnl .icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: #000;
  /* Ensuring minimalist black plus icon */
}

.accordion-content-mnl {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.4s ease;
}

.accordion-item-mnl.active .accordion-content-mnl {
  max-height: 2000px;
  padding-bottom: 30px;
}

.accordion-content-mnl p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

/* CTA & Back Navigation */
.product-cta-mnl {
  margin-bottom: 40px;
}

.btn-mnl-fill {
  width: 100%;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
  padding: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: var(--transition);
}

.btn-mnl-fill:hover {
  background: transparent;
  color: var(--text-primary);
}

.back-link-mnl {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  margin-top: 20px;
}

.back-link-mnl:hover {
  color: var(--text-primary);
  transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* --- Lightbox --- */
html.lightbox-open,
body.lightbox-open {
  overflow: hidden !important;
  height: 100vh !important;
}

.lightbox {
  display: none;
  /* Keep hidden by default */
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
  cursor: default;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}

/* Ensure centering even when zoomed */
.lightbox.is-zoomed {
  display: flex !important;
  align-items: center;
  justify-content: center;
}


.lightbox-content,
.lb-img {
  display: block;
  width: min(80vh, 90vw);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  z-index: 2005;
  animation: lightboxFadeIn 0.3s ease-out forwards;
  cursor: zoom-in;
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}

.lightbox-content.zoomed,
.lb-img.zoomed {
  transform: scale(2.5);
  cursor: zoom-out;
}

@media (max-width: 768px) {

  .lightbox-content.zoomed,
  .lb-img.zoomed {
    transform: scale(1.8);
  }
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #000;
  width: 40px;
  height: 80px;
  cursor: pointer;
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}

.lightbox-arrow svg {
  width: 14px;
  height: 28px;
  stroke: #000;
  stroke-width: 1px;
}

.prev-arrow {
  left: 80px;
}

.next-arrow {
  right: 80px;
}

.lightbox-arrow:hover {
  opacity: 0.6;
}

.lightbox-dots-container {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2020;
}

.lightbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e1e1e1;
  /* Light grey for inactive */
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.lightbox-dot.active {
  background: rgb(51, 51, 51);
  /* Dark grey for active */
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: #000;
  font-size: 32px;
  line-height: 32px;
  font-weight: 200;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.lightbox-close:hover {
  opacity: 0.6;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
  .prev-arrow {
    left: 20px;
  }

  .next-arrow {
    right: 20px;
  }

  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-dots-container {
    bottom: 20px;
  }
}


.product-carousel-swipe img {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

/* Floating WhatsApp Button (Minimalist) */
.whatsapp-float-wrapper {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float-minimal {
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-float-wrapper:hover .whatsapp-float-minimal {
  transform: scale(1.1) translateY(-3px);
  background-color: #000;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.whatsapp-float-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.whatsapp-float-wrapper:hover .whatsapp-float-label {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.whatsapp-float-minimal svg {
  width: 24px;
  height: 24px;
  stroke: none;
}

@media (max-width: 768px) {
  .whatsapp-float-wrapper {
    bottom: 20px;
    right: 20px;
    gap: 6px;
  }

  .whatsapp-float-minimal {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float-label {
    font-size: 10px;
  }
}

/* Footer Section */
.main-footer {
  padding: var(--spacing-lg) 0 var(--spacing-md);
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  font-size: 0.65rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.4rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-copyright {
  font-size: 0.6rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

@media (max-width: 480px) {
  .footer-legal {
    gap: 15px;
  }
}