body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background: white;
  position: relative;
  box-sizing: border-box
}

* {
  box-sizing: border-box;
}


@font-face {
  font-family: 'sjregular';
  src: url('/leiaseyelashes/fonts/sj.woff2') format('woff2'),
    url('/leiaseyelashes/fonts/sj.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'sjhregular';
  src: url('/leiaseyelashes/fonts/sjh.woff2') format('woff2'),
    url('/leiaseyelashes/fonts/sjh.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


header {
  background-color: black;
  color: #fff;
  padding: 20px;
}

main {
  padding: 0;
  background: white;
  color: black;
}

footer {
  background-color: black;
  color: #fff;
  padding: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  footer {
    font-size: 0.8rem;
  }
}


.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 999;
}

.fixed-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}

.fixed-nav a:hover {
  background-color: #fff;
  color: #FF7A01;
}

.fixed-nav .logo a:hover {
  background-color: transparent;
}

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

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: auto;
}

.logo span {
  font-family: sjregular;
  margin-left: 10px;
  font-size: medium;
  color: #fff;
  transition: color 0.2s;
}

.logo:hover span {
  color: #FF7A01;
}

.menu-items {
  display: flex;
  justify-content: flex-end;
}

.menu-option {
  display: flex;
}

.midnav {
  margin-left: auto;
  margin-right: auto;
}

.right {
  margin-left: auto;
}

.maincoverimage {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 859px;
  animation: changeBackground 33s infinite;
}

@keyframes changeBackground {
  0% {
    background-image: url("../images/main-cover.webp");
  }

  45% {
    background-image: url("../images/main-cover.webp");
  }

  48% {
    background-image: url("../images/mapa.webp");
  }

  93% {
    background-image: url("../images/mapa.webp");
  }

  96% {
    background-image: url("../images/main-cover.webp");
  }

  100% {
    background-image: url("../images/main-cover.webp");
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  @keyframes changeBackground {
    0% {
      background-image: url("../images/main-cover-tablet.webp");
    }

    45% {
      background-image: url("../images/main-cover-tablet.webp");
    }

    48% {
      background-image: url("../images/mapa-tablet.webp");
    }

    93% {
      background-image: url("../images/mapa-tablet.webp");
    }

    96% {
      background-image: url("../images/main-cover-tablet.webp");
    }

    100% {
      background-image: url("../images/main-cover-tablet.webp");
    }
  }
}

@media (max-width: 767px) {
  @keyframes changeBackground {
    0% {
      background-image: url("../images/main-cover-mob.webp");
    }

    45% {
      background-image: url("../images/main-cover-mob.webp");
    }

    48% {
      background-image: url("../images/mapa-mob.webp");
    }

    93% {
      background-image: url("../images/mapa-mob.webp");
    }

    96% {
      background-image: url("../images/main-cover-mob.webp");
    }

    100% {
      background-image: url("../images/main-cover-mob.webp");
    }
  }
}



.maincovertext {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 33%;
}

.maincovertext p {
  display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fixed-nav a {
    font-size: 9px;
  }

  .maincovertext {
    left: 35%;
    max-width: 50%;
    padding: 10px;
    font-size: small;
  }

  .logo img {
    width: 250px;
    height: 61px;
  }
}

@media (max-width: 767px) {
  .maincovertext {
    left: 35%;
    max-width: 60%;
    padding: 10px;
    font-size: small;
  }
}

.subrayado {
  text-decoration: underline;
}

.negritas {
  font-weight: bold;
}

.italico {
  font-style: italic;
}


input {
  border: none;
}

@media (max-width: 767px) {
  .fixed-nav {
    justify-content: space-between;
  }

  .menu-items {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .menu-items.active {
    transform: translateY(0);
  }

  .menu-option {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }

  .midnav,
  .right {
    margin: 0;
  }

  .menu-items a {
    font-size: 24px;
    margin: 10px 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
  }

  .hamburger span {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.4s;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.leias-text {
  font-family: sjregular;
}

.center-text {
  text-align: center;
  font-weight: normal;
}

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

.letraschicas {
  font-size: small;
  cursor: pointer;
  text-align: left;
}

footer a {
  text-decoration: none;
  color: gray;
}

.productos {
  text-align: center;
}

.productos img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.interactive-container {
  width: 95%;
  margin: 0 auto;
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .interactive-container {
    padding: 10px;
    height: auto;
  }
}


.button-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

button {
  background-color: #4CAF50;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #3e8e41;
}

button.active {
  background-color: #8e44ad;
}

.content-container {
  height: calc(100% - 60px);
  overflow-y: hidden;
}

.content {
  display: none;
  padding: 10px;
}

.content.active {
  display: block;
}


.interactive-container {
  width: 95%;
  margin: 0 auto;
  height: auto;
  /* Change from fixed height to auto */
  min-height: 450px;
  /* Set a minimum height */
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}


.button-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.button-container span {
  margin-right: 20px;
  cursor: pointer;
}

.button-container span.active {
  color: #8e44ad;
}

.content-container {
  height: calc(100% - 60px);
  overflow-y: auto;
}

.content-container {
  flex-grow: 1;
  overflow-y: auto;
  /* Allow vertical scrolling if content exceeds container */
}

.content {
  display: none;
  padding: 20px;
}

.content.active {
  display: block;
}

#content1 {
  height: auto;
  min-height: 400px;
  /* Adjust this value as needed */
  padding: 20px;
  box-sizing: border-box;
}


.envios {
  text-align: center;
}


.shipping-logo {
  max-width: 100px;
  height: auto;
  margin: 10px;
}



/* Responsive styles */
@media (max-width: 767px) {

  .interactive-container {
    width: 90%;
  }

  .shipping-logo {
    max-width: 60px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {

  .shipping-logo {
    max-width: 80px;
  }
}

.image-gallery {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0 40px;
  margin-top: 20px;
}

.gallery-container {
  display: flex;
  transition: transform 0.3s ease-in-out;
  min-height: 300px;
  /* Adjust as needed */
}

.gallery-item {
  flex: 0 0 auto;
  width: 200px;
  margin-right: 20px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  /* Adjust this value as needed */
  object-fit: contain;
}


.gallery-item p {
  margin-top: 10px;
  font-size: 14px;
}


.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  /* Add this line */
}

.nav-button.prev {
  left: 0;
}

.nav-button.next {
  right: 0;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #ff7a01;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.nav-button.prev {
  left: 5px;
}

.nav-button.next {
  right: 5px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 200px;
  margin-right: 20px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
}

.gallery-item p {
  margin-top: 10px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .interactive-container {
    padding: 10px;
    height: auto;
  }

  #content1 {
    min-height: 300px;
  }

  .gallery-item {
    width: 150px;
  }

  .gallery-item img {
    max-height: 150px;
  }
}

@media (max-width: 767px) {
  .logo img {
    width: 85%;
    height: 85%;
  }
}

.titles {
  font-weight: normal;
  color: #fff;
}

.just {
  text-align: justify;

}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-title {
  display: block;
  font-size: 1.5em;
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  color: #333;
}

/* Split Hero Section */
.hero-split {
  display: flex;
  width: 100%;
  min-height: 600px;
}

.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: white;
  text-align: center;
}

.hero-tienda {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/main-cover.webp');
  background-size: cover;
  background-position: center;
}

.hero-comunidad {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/mapa.webp');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 500px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.hero-content h2 {
  font-family: 'sjregular', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #FF7A01;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FF7A01;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #e56c00;
}

/* Dynamic Product Preview Section */
.product-preview-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-heading {
  text-align: center;
  font-family: 'sjregular', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info {
  padding: 20px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FF7A01;
  margin-bottom: 15px;
}

.product-button {
  display: inline-block;
  padding: 8px 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.product-button:hover {
  background-color: #555;
}

.view-all-products {
  text-align: center;
  margin-top: 40px;
}

.view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  border: 2px solid #FF7A01;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-button:hover {
  background-color: #FF7A01;
  color: white;
}

/* Studio CTA Section */
.studio-cta-section {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/blisters.webp');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.studio-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.studio-cta-content h2 {
  font-family: 'sjregular', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #FF7A01;
}

.studio-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FF7A01;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e56c00;
}

/* Dual Email Section */
.dual-email-section {
  display: flex;
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.email-column {
  flex: 1;
  padding: 30px;
  text-align: center;
}

.buyers-column {
  background-color: #f0f0f0;
  border-right: 1px solid #ddd;
}

.professionals-column {
  background-color: #e9e9e9;
}

.email-column h3 {
  font-family: 'sjregular', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.email-column p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

.dual-newsletter-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.dual-newsletter-form input[type="email"] {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.dual-newsletter-form .subscribe-btn {
  padding: 12px;
  background-color: #FF7A01;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dual-newsletter-form .subscribe-btn:hover {
  background-color: #e56c00;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .hero-split {
    flex-direction: column;
  }

  .hero-section {
    min-height: 350px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .studio-cta-content h2 {
    font-size: 1.8rem;
  }

  .dual-email-section {
    flex-direction: column;
  }

  .buyers-column {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-content h2 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Premium SEO Section Styles */
.premium-seo-section {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 20px;
	font-family: 'Montserrat', sans-serif;
}
.premium-seo-container {
	background: linear-gradient(145deg, #ffffff, #fafafa);
	padding: 3rem 4rem;
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 1);
	border: 1px solid rgba(255, 122, 1, 0.1);
	position: relative;
	overflow: hidden;
}
.premium-seo-container::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; height: 5px;
	background: linear-gradient(90deg, #FF7A01, #ffad66);
}
.premium-seo-title {
	font-family: 'sjregular', sans-serif;
	font-size: 2.8rem;
	color: #FF7A01;
	margin-bottom: 1.5rem;
	letter-spacing: 1px;
	text-align: center;
	font-weight: normal;
}
.premium-seo-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 1.5rem;
	text-align: justify;
}
.premium-seo-text strong {
	color: #111;
	font-weight: 700;
	border-bottom: 2px solid rgba(255, 122, 1, 0.3);
}
.premium-faq-wrapper {
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #eaeaea;
}
.premium-faq-title {
	font-family: 'sjregular', sans-serif;
	font-size: 2.2rem;
	color: #222;
	margin-bottom: 2rem;
	text-align: center;
	font-weight: normal;
}
.premium-faq-item {
	background: #fff;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	margin-bottom: 1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	border: 1px solid #f0f0f0;
}
.premium-faq-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 25px rgba(255, 122, 1, 0.1);
	border-color: rgba(255, 122, 1, 0.2);
}
.premium-faq-question {
	font-weight: 700;
	font-size: 1.2rem;
	color: #111;
	margin-bottom: 0.8rem;
	display: flex;
	align-items: center;
}
.premium-faq-question::before {
	content: '✦';
	color: #FF7A01;
	margin-right: 12px;
	font-size: 1.3rem;
}
.premium-faq-answer {
	line-height: 1.6;
	color: #555;
	margin-left: 2.2rem;
	font-size: 1.05rem;
}
@media (max-width: 768px) {
	.premium-seo-container { padding: 2rem 1.5rem; }
	.premium-seo-title { font-size: 2.2rem; }
	.premium-faq-answer { margin-left: 0; margin-top: 10px; }
	.premium-faq-question::before { display: none; }
}