/** Shopify CDN: Minification failed

Line 25:0 All "@import" rules must come first

**/
/* =========================================
   EMPORIO ITALIA - ABOUT PAGE STYLES
   ========================================= */

/* Variables */
:root {
  --emporio-primary: #63061E;
  --emporio-primary-light: #8a1a3a;
  --emporio-cream: #FAF7F2;
  --emporio-gold: #C9A962;
  --emporio-green: #1D6F42;
  --emporio-red: #CE2B37;
  --emporio-text: #2C2C2C;
  --emporio-text-light: #5A5A5A;
  --emporio-font-display: 'Cormorant Garamond', Georgia, serif;
  --emporio-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Container */
.emporio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================
   HERO SECTION
   ========================================= */
.emporio-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.emporio-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.emporio-hero__content {
  text-align: center;
  z-index: 1;
  padding: 2rem;
  animation: emporioFadeInUp 1s ease-out;
}

.emporio-hero__logo {
  width: 180px;
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.emporio-hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.emporio-hero__line {
  width: 60px;
  height: 2px;
  background: var(--emporio-gold);
}

.emporio-hero__flag {
  display: flex;
  gap: 3px;
}

.emporio-hero__flag-green,
.emporio-hero__flag-white,
.emporio-hero__flag-red {
  width: 8px;
  height: 24px;
  border-radius: 2px;
}

.emporio-hero__flag-green { background: var(--emporio-green); }
.emporio-hero__flag-white { background: #ffffff; }
.emporio-hero__flag-red { background: var(--emporio-red); }

.emporio-hero__tagline {
  font-family: var(--emporio-font-display);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================
   STORY SECTION
   ========================================= */
.emporio-story {
  padding: 6rem 0;
  background-color: var(--emporio-cream);
}

.emporio-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.emporio-story__title {
  font-family: var(--emporio-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--emporio-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.emporio-story__paragraph {
  font-family: var(--emporio-font-body);
  font-size: 1rem;
  color: var(--emporio-text-light);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.emporio-story__highlight {
  font-family: var(--emporio-font-display);
  font-size: 1.3rem;
  color: var(--emporio-primary);
  font-style: italic;
  border-left: 3px solid var(--emporio-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

.emporio-story__image-wrapper {
  position: relative;
}

.emporio-story__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--emporio-primary);
}

.emporio-story__image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--emporio-gold);
  border-left: 3px solid var(--emporio-gold);
  z-index: 1;
}

.emporio-story__image-placeholder {
  width: 100%;
  height: 500px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* =========================================
   VALUES SECTION
   ========================================= */
.emporio-values {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.emporio-values::before {
  content: '"';
  font-family: var(--emporio-font-display);
  font-size: 400px;
  position: absolute;
  top: -100px;
  right: 5%;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
}

.emporio-values__header {
  text-align: center;
  margin-bottom: 4rem;
}

.emporio-values__title {
  font-family: var(--emporio-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #ffffff;
  font-weight: 400;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

.emporio-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.emporio-value-card {
  text-align: center;
  padding: 2rem;
}

.emporio-value-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.emporio-value-card__title {
  font-family: var(--emporio-font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.emporio-value-card__description {
  font-family: var(--emporio-font-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

/* =========================================
   SHOWROOM SECTION
   ========================================= */
.emporio-showroom {
  padding: 6rem 0;
}

.emporio-showroom__header {
  text-align: center;
  margin-bottom: 2rem;
}

.emporio-showroom__title {
  font-family: var(--emporio-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.emporio-showroom__subtitle {
  font-family: var(--emporio-font-display);
  font-size: 1.2rem;
  color: var(--emporio-text-light);
  font-style: italic;
}

.emporio-showroom__intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.emporio-showroom__intro p {
  font-family: var(--emporio-font-body);
  font-size: 1.05rem;
  color: var(--emporio-text-light);
  font-weight: 300;
  line-height: 1.8;
}

.emporio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.emporio-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.emporio-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.emporio-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.emporio-gallery__item:hover .emporio-gallery__image {
  transform: scale(1.05);
}

.emporio-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(99, 6, 30, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.emporio-gallery__item:hover::after {
  opacity: 1;
}

.emporio-gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   LOCATION SECTION
   ========================================= */
.emporio-location {
  padding: 5rem 0;
  background-color: var(--emporio-cream);
}

.emporio-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.emporio-location__title {
  font-family: var(--emporio-font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
  font-weight: 500;
}

.emporio-location__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.emporio-location__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.emporio-location__icon {
  font-size: 1.5rem;
}

.emporio-location__text {
  font-family: var(--emporio-font-body);
  font-size: 1rem;
  color: var(--emporio-text-light);
  font-weight: 300;
  line-height: 1.6;
}

.emporio-location__text strong {
  display: block;
  color: var(--emporio-text);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.emporio-location__cta {
  color: #ffffff;
  padding: 3rem;
  text-align: center;
  border-radius: 8px;
}

.emporio-location__cta-title {
  font-family: var(--emporio-font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.emporio-location__cta-text {
  font-family: var(--emporio-font-body);
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 300;
}

.emporio-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  color: var(--emporio-primary);
  text-decoration: none;
  font-family: var(--emporio-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.emporio-btn:hover {
  background: #ffffff !important;
  transform: translateY(-2px);
}

/* =========================================
   CLOSING SECTION
   ========================================= */
.emporio-closing {
  padding: 6rem 0;
  text-align: center;
}

.emporio-closing__content {
  max-width: 700px;
  margin: 0 auto;
}

.emporio-closing__signature {
  font-family: var(--emporio-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.emporio-closing__flag {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 2rem;
}

.emporio-closing__flag-green,
.emporio-closing__flag-white,
.emporio-closing__flag-red {
  width: 40px;
  height: 6px;
  border-radius: 3px;
}

.emporio-closing__flag-green { background: var(--emporio-green); }
.emporio-closing__flag-white { background: #e0e0e0; }
.emporio-closing__flag-red { background: var(--emporio-red); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes emporioFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 968px) {
  .emporio-story__grid,
  .emporio-location__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .emporio-story__image-wrapper {
    order: -1;
  }

  .emporio-story__image {
    height: 400px;
    box-shadow: 10px 10px 0 var(--emporio-primary);
  }

  .emporio-values__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .emporio-gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .emporio-hero {
    min-height: 60vh;
  }

  .emporio-hero__logo {
    width: 140px;
  }

  .emporio-story,
  .emporio-showroom,
  .emporio-closing {
    padding: 4rem 0;
  }

  .emporio-container {
    padding: 0 1.5rem;
  }

  .emporio-gallery {
    grid-template-columns: 1fr;
  }

  .emporio-gallery__item--large {
    grid-column: span 1;
  }

  .emporio-gallery__item {
    aspect-ratio: 4/3;
  }

  .emporio-location__cta {
    padding: 2rem;
  }

  .emporio-story__image-wrapper::before {
    display: none;
  }
}
