/* ==========================================================================
   Dida Tattoo - Main Stylesheet
   Mobile-first responsive design
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */

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

html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-regular);
  line-height: var(--line-height-base);
  color: var(--gray-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-black);
  line-height: var(--line-height-heading);
  color: var(--color-black);
}

/* --------------------------------------------------------------------------
   2. UTILITIES
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

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

.section-padding {
  padding: 50px 0;
}

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  transition: var(--transition-base);
  text-align: center;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   4. HEADER
   -------------------------------------------------------------------------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: 20px 0;
  transition: var(--transition-base);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.is-sticky {
  position: fixed;
  background: var(--color-white);
  box-shadow: var(--shadow-header);
  padding: 10px 0;
}

.site-header.is-sticky .logo-link {
  color: var(--color-black);
}

.site-header.is-sticky .nav-link {
  color: var(--color-black);
}

.site-header.is-sticky .nav-link:hover,
.site-header.is-sticky .nav-link.active {
  color: var(--color-accent);
}

.site-header.is-sticky .social-icons-header a {
  color: var(--color-black);
}

.site-header.is-sticky .social-icons-header a:hover {
  color: var(--color-accent);
}

.site-header.is-sticky .menu-toggle span {
  background: var(--color-black);
}

/* Header no-hero (paginas internas sin hero fullscreen) */
.site-header.header-dark {
  position: relative;
  background: var(--color-black);
}

.site-header.header-dark.is-sticky {
  position: fixed;
  background: var(--color-white);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
}

.logo-link {
  font-size: 24px;
  font-weight: var(--font-black);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-link:hover {
  color: var(--color-accent);
}

.logo-img {
  max-height: 50px;
  width: auto;
}

/* Navigation */
.main-navigation {
  display: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

/* Social Icons Header */
.social-icons-header {
  display: none;
  align-items: center;
  gap: 20px;
}

.social-icons-header a {
  color: var(--color-white);
  font-size: 18px;
  transition: var(--transition-base);
  padding: 5px;
}

.social-icons-header a:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

/* Social Icons wrapper from helper function */
.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: calc(var(--z-mobile-menu) + 1);
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
}

.site-header.is-sticky .menu-toggle span {
  background: var(--color-black);
}

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

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

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

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: var(--z-overlay);
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: var(--color-black);
  z-index: var(--z-mobile-menu);
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
  padding: 80px 30px 40px;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu .mobile-nav-menu {
  margin-bottom: 40px;
}

.mobile-menu .mobile-nav-link {
  display: block;
  padding: 15px 0;
  font-size: 18px;
  font-weight: var(--font-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-base);
}

.mobile-menu .mobile-nav-link:hover,
.mobile-menu .mobile-nav-link.active {
  color: var(--color-accent);
  padding-left: 10px;
}

.mobile-menu .mobile-social {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.mobile-menu .mobile-social a {
  color: var(--color-white);
  font-size: 20px;
  transition: var(--transition-base);
}

.mobile-menu .mobile-social a:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-section--full {
  height: 70vh;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;

}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 0 var(--container-padding);
  max-width: 800px;
}

.hero-title {
  font-size: 36px;
  font-weight: var(--font-black);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: var(--font-regular);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-cta {
  margin-bottom: 30px;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-circle);
  color: var(--color-white);
  font-size: 18px;
  transition: var(--transition-base);
}

.hero-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

/* Page Hero (internal pages) */
.page-hero {
  position: relative;
  height: 40vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-black);
  overflow: hidden;
}

.page-hero .hero-bg {
  opacity: 0.5;
}

.page-hero .hero-content {
  color: var(--color-white);
}

.page-hero .hero-title {
  font-size: 30px;
  margin-bottom: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 15px 0;
  font-size: var(--font-small);
  color: var(--gray-medium);
  background: var(--bg-light);
}

.breadcrumbs a {
  color: var(--gray-medium);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs .separator {
  margin: 0 8px;
}

/* --------------------------------------------------------------------------
   6. WELCOME SECTION
   -------------------------------------------------------------------------- */

.welcome-section {
  padding: 50px 0;
  background: var(--color-white);
  text-align: center;
}

.welcome-section .section-title {
  font-size: 28px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.welcome-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.welcome-content p {
  margin-bottom: 20px;
}

.welcome-highlight {
  font-weight: var(--font-semibold);
  color: var(--color-accent);
  font-size: 18px;
  font-style: italic;
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   7. TWO-COLUMN SECTIONS
   -------------------------------------------------------------------------- */

.two-col-section {
  padding: 50px 0;
}

.two-col-section--alt {
  background: var(--bg-light);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.two-col-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.two-col-content .section-title {
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.two-col-content .section-text {
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.two-col-content .section-text p {
  margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   8. GALLERY GRID (HOME)
   -------------------------------------------------------------------------- */

.gallery-slider-section {
  padding: 50px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.gallery-slider-section .section-title {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* Gallery Home Grid */
.gallery-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.gallery-home-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
}

.gallery-home-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Gallery Slider (Carousel) */
.gallery-slider {
  position: relative;
  overflow: hidden;
  padding: 0 0 40px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-slide {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

.gallery-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 20px));
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-arrow--prev {
  left: 10px;
}

.slider-arrow--next {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 15px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-circle);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-dot.active {
  background: var(--color-accent);
}

/* --------------------------------------------------------------------------
   9. CONTACT SECTION (HOME)
   -------------------------------------------------------------------------- */

.contact-section-home {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.contact-section-home .contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.contact-section-home .contact-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
}

.contact-section-home .container {
  position: relative;
  z-index: 2;
}

.contact-section-home .section-title {
  text-align: center;
  color: var(--color-white);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-info-card {
  color: var(--color-white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-item i {
  font-size: 20px;
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--color-white);
}

.contact-info-item a:hover {
  color: var(--color-accent);
}

.contact-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
}

/* --------------------------------------------------------------------------
   10. CONTACT FORM STYLES (CF7)
   -------------------------------------------------------------------------- */

.wpcf7-form label,
.contact-form-wrapper label {
  display: block;
  color: var(--color-white);
  font-size: 14px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 16px;
  transition: var(--transition-base);
  margin-bottom: 15px;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.15);
}

.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-form input[type="submit"] {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  width: 100%;
}

.wpcf7-form input[type="submit"]:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wpcf7-response-output {
  border-radius: var(--radius-sm) !important;
  padding: 12px !important;
  margin-top: 15px !important;
  font-size: 14px;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
  color: var(--color-error);
}

/* Contact page specific (light background) */
.contact-page .wpcf7-form label {
  color: var(--gray-dark);
}

.contact-page .wpcf7-form input[type="text"],
.contact-page .wpcf7-form input[type="email"],
.contact-page .wpcf7-form input[type="tel"],
.contact-page .wpcf7-form textarea {
  background: var(--color-white);
  border: 1px solid var(--gray-light);
  color: var(--gray-dark);
}

.contact-page .wpcf7-form input:focus,
.contact-page .wpcf7-form textarea:focus {
  border-color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   11. GALLERY PAGE
   -------------------------------------------------------------------------- */

.gallery-page-section {
  padding: 50px 0;
}

.gallery-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 3 / 4;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition-base);
}

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

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

.gallery-load-more {
  text-align: center;
  margin-top: 40px;
}

.gallery-load-more .btn {
  display: inline-block;
  padding: 12px 40px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-load-more .btn:hover {
  background: var(--color-accent-dark, #333);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   12. LIGHTBOX
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.is-active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: var(--transition-base);
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  padding: 15px;
  border-radius: var(--radius-circle);
  transition: var(--transition-base);
}

.lightbox-nav:hover {
  background: var(--color-accent);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: var(--font-small);
}

/* --------------------------------------------------------------------------
   13. CONTACT PAGE
   -------------------------------------------------------------------------- */

.contact-page {
  padding: 50px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.contact-details h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-details-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-details-item i {
  font-size: 18px;
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-details-item a:hover {
  color: var(--color-accent);
}

.contact-hours h4 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  margin-top: 30px;
}

.contact-hours-table {
  width: 100%;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-light);
}

.hours-day {
  font-weight: var(--font-semibold);
}

.contact-page-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-page-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

.contact-form-section h3 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   14. PIERCING TYPES GRID
   -------------------------------------------------------------------------- */

/* Piercing Types — minimal text cards with gold accent bar */
.piercing-types-section {
  padding: 60px 0;
  background: var(--color-white);
}

.piercing-types-heading {
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-black);
}

.piercing-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.piercing-type-card {
  display: flex;
  align-items: stretch;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.piercing-type-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Gold accent bar on the left */
.piercing-type-card-accent {
  width: 4px;
  flex-shrink: 0;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.piercing-type-card:hover .piercing-type-card-accent {
  width: 6px;
}

/* Card content */
.piercing-type-card-body {
  padding: 24px 28px;
}

.piercing-type-card h3 {
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  color: var(--color-black);
}

.piercing-type-card p {
  font-size: var(--font-small);
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. DEFAULT PAGE CONTENT
   -------------------------------------------------------------------------- */

.page-content {
  padding: 50px 0;
  overflow: hidden;
}

.page-content .entry-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Allow galleries and wide blocks to escape the 800px constraint */
.page-content .entry-content > .alignwide,
.page-content .entry-content > .wp-block-gallery {
  max-width: var(--container-max);
  width: calc(100vw - 40px);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-content .entry-content > .alignfull {
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.page-content .entry-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-content .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-content .entry-content p {
  margin-bottom: 20px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.page-content .entry-content img {
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.page-content .entry-content ul,
.page-content .entry-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content .entry-content li {
  margin-bottom: 8px;
  color: var(--gray-medium);
  list-style: disc;
}

.page-content .entry-content ol li {
  list-style: decimal;
}

/* CTA Block */
.cta-block {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-top: 40px;
}

.cta-block h3 {
  margin-bottom: 15px;
}

.cta-block p {
  margin-bottom: 20px;
  color: var(--gray-medium);
}

/* --------------------------------------------------------------------------
   16. SINGLE POST
   -------------------------------------------------------------------------- */

.single-post-content {
  padding: 50px 0;
}

.single-post-content .entry-header {
  text-align: center;
  margin-bottom: 30px;
}

.single-post-content .entry-title {
  font-size: 28px;
}

.single-post-content .entry-meta {
  font-size: var(--font-small);
  color: var(--gray-medium);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 50px 0 0;
}

/* Footer Centered Layout */
.footer-contact-centered {
  text-align: center;
  padding-bottom: 30px;
}

.footer-contact-centered h4 {
  font-size: 12px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.footer-contact-centered p {
  font-size: 15px;
  color: var(--color-white);
  margin-bottom: 5px;
}

.footer-contact-centered a {
  color: var(--color-white);
  transition: var(--transition-base);
}

.footer-contact-centered a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-phones {
  font-size: 18px;
  font-weight: var(--font-semibold);
}

.footer-address {
  font-size: 14px;
  color: var(--gray-light);
}

/* Footer Social Icons - Centered */
.footer-social-centered {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-social-centered a {
  color: var(--color-white);
  font-size: 20px;
  transition: var(--transition-base);
}

.footer-social-centered a:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

/* Footer Legal Links - Centered */
.footer-legal-centered {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-centered h4 {
  font-size: 12px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-bottom: 15px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
}

.footer-legal-links a {
  font-size: 14px;
  color: var(--gray-light);
  transition: var(--transition-base);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-medium);
}

/* --------------------------------------------------------------------------
   18. WHATSAPP FLOATING BUTTON
   -------------------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: var(--z-whatsapp);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: var(--radius-circle);
  color: var(--color-white);
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-base);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   19. 404 PAGE
   -------------------------------------------------------------------------- */

.error-404-section {
  padding: 80px 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404-content .error-code {
  font-size: 100px;
  font-weight: var(--font-black);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.error-404-content h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.error-404-content p {
  font-size: 16px;
  color: var(--gray-medium);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   20. ACF NOTICE
   -------------------------------------------------------------------------- */

.acf-notice {
  background: #FFF3CD;
  border: 1px solid #FFEEBA;
  border-radius: var(--radius-sm);
  padding: 15px 20px;
  margin: 20px 0;
  color: #856404;
  font-size: var(--font-small);
  text-align: center;
}

/* --------------------------------------------------------------------------
   21. WORDPRESS DEFAULTS
   -------------------------------------------------------------------------- */

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--gray-medium);
  padding: 5px 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Navigation links (posts) */
.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid var(--bg-light);
  margin-top: 30px;
}

.post-navigation a {
  color: var(--color-black);
  font-weight: var(--font-semibold);
}

.post-navigation a:hover {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   22. WORDPRESS GUTENBERG BLOCKS
   -------------------------------------------------------------------------- */

/* --- Alignment: Wide & Full --- */
.entry-content .alignwide {
  max-width: var(--container-max);
  width: calc(100vw - 40px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.entry-content .alignfull {
  max-width: none;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* --- WP Block Gallery --- */
.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 20px 0;
  padding: 0;
}

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

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

.wp-block-gallery.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wp-block-gallery.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Modern WP gallery (WP 5.9+) */
.wp-block-gallery.has-nested-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-block-gallery.has-nested-images .wp-block-image {
  flex-grow: 1;
  flex-basis: calc(33.333% - 8px);
  margin: 0;
}

.wp-block-gallery.has-nested-images.columns-1 .wp-block-image {
  flex-basis: 100%;
}

.wp-block-gallery.has-nested-images.columns-2 .wp-block-image {
  flex-basis: calc(50% - 5px);
}

.wp-block-gallery.has-nested-images.columns-3 .wp-block-image {
  flex-basis: calc(33.333% - 8px);
}

.wp-block-gallery.has-nested-images.columns-4 .wp-block-image {
  flex-basis: calc(25% - 8px);
}

/* Gallery items */
.wp-block-gallery .wp-block-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.wp-block-gallery .wp-block-image figure,
.wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}

.wp-block-gallery .wp-block-image img,
.wp-block-gallery .blocks-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wp-block-gallery .wp-block-image:hover img,
.wp-block-gallery .blocks-gallery-item:hover img {
  transform: scale(1.05);
}

/* Gallery caption */
.wp-block-gallery figcaption,
.blocks-gallery-caption {
  font-size: 13px;
  color: var(--gray-medium);
  text-align: center;
  padding: 8px 0;
  width: 100%;
}

/* --- WP Block Image (standalone) --- */
.wp-block-image {
  margin: 20px 0;
}

.wp-block-image figure {
  margin: 0;
}

.wp-block-image img {
  border-radius: var(--radius-md);
  height: auto;
}

.wp-block-image figcaption {
  font-size: 13px;
  color: var(--gray-medium);
  text-align: center;
  padding: 5px 0;
}

/* --- WP Block Columns --- */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}

.wp-block-column {
  flex: 1;
  min-width: 0;
}

/* --- WP Block Group --- */
.wp-block-group {
  margin: 20px 0;
}

.wp-block-group.has-background {
  padding: 20px;
  border-radius: var(--radius-md);
}

/* --- WP Block Cover --- */
.wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  margin: 20px 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  text-align: center;
  padding: 20px;
}

/* --- WP Block Separator --- */
.wp-block-separator {
  border: none;
  border-top: 2px solid var(--bg-light);
  margin: 30px auto;
  max-width: 100px;
}

.wp-block-separator.is-style-wide {
  max-width: 100%;
}

/* --- WP Block Quote --- */
.wp-block-quote {
  border-left: 4px solid var(--color-accent);
  padding: 15px 20px;
  margin: 20px 0;
  font-style: italic;
  color: var(--gray-medium);
}

.wp-block-quote cite {
  display: block;
  font-size: var(--font-small);
  margin-top: 10px;
  font-style: normal;
  font-weight: var(--font-semibold);
}

/* --- WP Block Buttons --- */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.wp-block-button__link {
  display: inline-block;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-pill);
  background: var(--color-black);
  color: var(--color-white);
  transition: var(--transition-base);
  text-align: center;
  text-decoration: none;
}

.wp-block-button__link:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 2px solid var(--color-black);
  color: var(--color-black);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* --- WP Block Media & Text --- */
.wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.wp-block-media-text .wp-block-media-text__content {
  padding: 0 20px;
}

/* --- WP Block Table --- */
.wp-block-table {
  margin: 20px 0;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
  padding: 10px 15px;
  border: 1px solid var(--gray-light);
  text-align: left;
}

.wp-block-table th {
  background: var(--bg-light);
  font-weight: var(--font-semibold);
}

/* --- WP Block List --- */
.wp-block-list {
  margin-bottom: 20px;
  padding-left: 20px;
}

.wp-block-list li {
  margin-bottom: 8px;
  color: var(--gray-medium);
  list-style: disc;
}

/* Mobile: stack Gutenberg blocks */
@media (max-width: 599px) {
  .wp-block-gallery.has-nested-images .wp-block-image {
    flex-basis: 100% !important;
  }

  .wp-block-gallery.columns-2,
  .wp-block-gallery.columns-3,
  .wp-block-gallery.columns-4 {
    grid-template-columns: 1fr;
  }

  .wp-block-columns {
    flex-direction: column;
  }

  .wp-block-media-text {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE - TABLET (768px+)
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  /* Spacing */
  .section-padding {
    padding: 80px 0;
  }

  /* Header */
  .main-navigation {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .social-icons-header {
    display: flex;
  }

  /* Hero */
.hero-bg {
  background-size: cover;
}
  .hero-section {
    height: 90vh;
  }

  .hero-section--full {
    height: 85vh;
  }

  .hero-title {
    font-size: 48px;
    letter-spacing: 6px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .page-hero .hero-title {
    font-size: 40px;
  }

  /* Welcome */
  .welcome-section {
    padding: 80px 0;
  }

  .welcome-section .section-title {
    font-size: 35px;
  }

  .welcome-content {
    font-size: 17px;
  }

  /* Two Column */
  .two-col-section {
    padding: 80px 0;
  }

  .two-col-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .two-col-grid--reverse {
    direction: rtl;
  }

  .two-col-grid--reverse > * {
    direction: ltr;
  }

  .two-col-image img {
    height: 450px;
  }

  .two-col-content .section-title {
    font-size: 30px;
  }

  /* Gallery Home Grid */
  .gallery-slider-section {
    padding: 80px 0;
  }

  .gallery-slider-section .section-title {
    font-size: 35px;
  }

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

  .gallery-home-item img {
    height: 320px;
  }

  .gallery-slide {
    flex: 0 0 50%;
  }

  /* Contact Home */
  .contact-section-home {
    padding: 80px 0;
  }

  .contact-home-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .contact-map iframe {
    height: 250px;
  }

  /* Gallery Page */
  .gallery-page-section {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  /* Contact Page */
  .contact-page {
    padding: 80px 0;
  }

  .contact-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Piercing types */
  .piercing-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Footer */
  .site-footer {
    padding: 60px 0 0;
  }

  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* 404 */
  .error-404-content .error-code {
    font-size: 140px;
  }

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

  /* Page content */
  .page-content {
    padding: 80px 0;
  }

  .page-content .entry-content h2 {
    font-size: 34px;
  }

  /* Gutenberg blocks - tablet */
  .wp-block-gallery.has-nested-images .wp-block-image {
    flex-basis: calc(50% - 5px);
  }

  .wp-block-columns {
    flex-wrap: nowrap;
  }
}

/* --------------------------------------------------------------------------
   24. RESPONSIVE - DESKTOP (1024px+)
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
  /* Hero */
  .hero-section--full {
    height: 100vh;
  }

  .hero-title {
    font-size: 60px;
    letter-spacing: 8px;
  }

  .hero-subtitle {
    font-size: 20px;
    letter-spacing: 5px;
  }

  .page-hero {
    height: 45vh;
    min-height: 300px;
  }

  .page-hero .hero-title {
    font-size: 46px;
  }

  /* Two Column */
  .two-col-grid {
    gap: 60px;
  }

  .two-col-image img {
    height: 500px;
  }

  .two-col-content .section-title {
    font-size: 36px;
  }

  .two-col-content .section-text {
    font-size: 17px;
  }

  /* Gallery Home Grid */
  .gallery-home-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-home-item img {
    height: 350px;
  }

  .gallery-slide {
    flex: 0 0 33.333%;
  }

  /* Gallery Page */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  /* Piercing types */
  .piercing-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Gutenberg blocks - desktop */
  .wp-block-gallery.has-nested-images .wp-block-image {
    flex-basis: calc(33.333% - 8px);
  }

  /* Welcome */
  .welcome-section .section-title {
    font-size: 40px;
  }

  .welcome-content {
    font-size: 18px;
  }

  /* Section titles */
  .gallery-slider-section .section-title,
  .contact-section-home .section-title {
    font-size: 40px;
  }

  /* Contact form wrapper */
  .contact-form-wrapper {
    padding: 40px;
  }
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE - WIDE (1440px+)
   -------------------------------------------------------------------------- */

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

  .hero-title {
    font-size: 70px;
  }
}

/* --------------------------------------------------------------------------
   26. PRINT STYLES
   -------------------------------------------------------------------------- */

@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .hero-social,
  .gallery-slider-section,
  .lightbox {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}

/* --------------------------------------------------------------------------
   27. FAQ SECTION
   -------------------------------------------------------------------------- */

.faq-section {
  padding: var(--spacing-lg) 0;
  background-color: var(--bg-light);
}

.faq-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--color-black);
}

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

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
  border-color: var(--color-accent);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: var(--font-semibold);
  font-size: 1rem;
  color: var(--color-black);
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: '';
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: var(--color-accent);
  font-size: 0.875rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 18px;
  color: var(--gray-medium);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 0.75em;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9375rem;
  }

  .faq-answer {
    padding: 0 16px 14px;
    font-size: 0.9375rem;
  }
}

/* --------------------------------------------------------------------------
   29. TATUAJES PAGE - ARTISTS
   -------------------------------------------------------------------------- */

.artists-section .section-title {
  text-align: center;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.artists-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: var(--gray-medium);
  line-height: 1.8;
}

.artists-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.artist-card + .artist-card {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Artist Card — flat, sin sombras ni bordes (replica web original) */
.artist-card {
  background: transparent;
}

/* Layout 2 columnas (mobile: apilado, tablet+: lado a lado) */
.artist-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Columna izquierda */
.artist-left {
  display: flex;
  flex-direction: column;
}

/* Nombre: grande, centrado, uppercase, extra-bold */
.artist-name {
  font-family: 'Roboto', sans-serif;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* Especialidades como bullet list (replica original) */
.artist-specialties {
  list-style: disc;
  padding-left: 25px;
  margin: 0 0 20px 0;
}

.artist-specialties li {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

/* Foto perfil — rectangular portrait, NO circular */
.artist-photo {
  width: 100%;
  max-width: 400px;
}

.artist-photo img {
  width: 100%;
  height: auto;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

/* Columna derecha */
.artist-right {
  display: flex;
  flex-direction: column;
}

/* Portfolio — grid 2x2 siempre */
.artist-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.artist-portfolio-item {
  overflow: hidden;
  cursor: pointer;
}

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

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

/* "Ver más" — botón/link beige toggle */
.artist-ver-mas {
  font-size: 18px;
  color: rgb(202, 187, 171);
  text-decoration: none;
  margin-top: 12px;
  display: inline-block;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color 0.3s;
}

.artist-ver-mas:hover {
  text-decoration: underline;
  color: rgb(170, 150, 130);
}

/* Extended gallery — expand/collapse animation */
.artist-extended-gallery {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.artist-extended-gallery.is-open {
  max-height: 3000px;
  opacity: 1;
  margin-top: 8px;
}

/* Artista sin portfolio: columna izquierda centrada */
.artist-card--no-portfolio .artist-left {
  max-width: 600px;
}

.artists-cta-section {
  text-align: center;
  padding: 50px 0 0;
}

.artists-cta-section .cta-text {
  font-size: 18px;
  color: var(--gray-medium);
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   30. PIERCING PAGE - ENHANCED
   -------------------------------------------------------------------------- */

.piercing-intro {
  background: var(--color-white);
}

.piercing-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.piercing-intro-content {
  color: var(--gray-medium);
  line-height: 1.8;
  font-size: 16px;
}

.piercing-intro-content h2,
.piercing-intro-content h3 {
  color: var(--color-black);
  margin-bottom: 15px;
}

.piercing-intro-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

/* (piercing-type-card-image styles removed — cards redesigned without images) */

.piercing-cta {
  background: var(--bg-light);
}

/* --- Piercing Gallery --- */
.piercing-gallery {
  background: var(--bg-dark);
}

.piercing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.piercing-gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item.hidden {
  display: none;
}

.piercing-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* --- Responsive: Tablet (768px+) --- */
@media (min-width: 768px) {
  /* Artists: 2 columnas lado a lado */
  .artist-layout {
    flex-direction: row;
    gap: 4%;
    align-items: flex-start;
  }

  .artist-left {
    flex: 1;
  }

  .artist-right {
    flex: 1;
  }

  .artist-name {
    font-size: 42px;
  }

  .artist-photo img {
    min-height: 600px;
  }

  .artist-specialties li {
    font-size: 26px;
  }

  .piercing-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .piercing-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* --- Responsive: Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .artists-section .section-title {
    font-size: 36px;
  }

  .artist-name {
    font-size: 50px;
  }

  .artist-specialties li {
    font-size: 30px;
  }

  .artists-grid {
    gap: 140px;
  }

  .artists-cta-section .cta-text {
    font-size: 20px;
  }

  .piercing-intro-grid {
    gap: 60px;
  }
}

/* --------------------------------------------------------------------------
   28. REDUCED MOTION
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
