/*
Theme Name: YE-IN Minhwa Artist
Theme URI: https://yeinminhwa.com
Author: YE-IN
Description: Custom WordPress theme for Korean Minhwa Artist YE-IN
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: yein
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;600;700&family=Nanum+Myeongjo:wght@400;700&display=swap');

:root {
  --black: #000000;
  --dark: #171717;
  --white: #ffffff;
  --white-80: rgba(255,255,255,0.8);
  --white-60: rgba(255,255,255,0.6);
  --white-50: rgba(255,255,255,0.5);
  --white-40: rgba(255,255,255,0.4);
  --white-30: rgba(255,255,255,0.3);
  --white-25: rgba(255,255,255,0.25);
  --white-10: rgba(255,255,255,0.1);
  --font-en: 'Abhaya Libre', serif;
  --font-kr: 'Nanum Myeongjo', serif;
  --max-width: 1216px;
  --side-padding: 77px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-en);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--white-10);
  padding: 0 var(--side-padding);
  background: transparent;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-logo .logo-en {
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 4.5px;
  color: var(--white);
}

.site-logo .logo-kr {
  font-family: var(--font-kr);
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 3.6px;
  color: var(--white-40);
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 64px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.nav-link .nav-en {
  font-family: var(--font-en);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2.8px;
  color: var(--white-30);
}

.nav-link .nav-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3px;
  color: var(--white-30);
}

.nav-link:hover .nav-en,
.nav-link:hover .nav-kr,
.nav-link.active .nav-en,
.nav-link.active .nav-kr {
  color: var(--white);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 963px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

/* ===== PAGE TITLE ===== */
.page-title-section {
  text-align: center;
  padding: 180px 0 60px;
}

.page-title-section h1 {
  font-family: var(--font-en);
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 9.6px;
  font-weight: 400;
  color: var(--white);
}

.page-title-section .subtitle {
  font-family: var(--font-kr);
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 4.2px;
  color: var(--white-50);
  margin-top: 12px;
}

/* ===== FEATURED WORKS (HOME) ===== */
.featured-works {
  padding: 100px 0 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.section-heading h2 {
  font-family: var(--font-en);
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 7.2px;
  font-weight: 400;
  color: var(--white);
}

.section-heading .subtitle {
  font-family: var(--font-kr);
  font-size: 20px;
  letter-spacing: 4.2px;
  color: var(--white-50);
  margin-top: 20px;
}

/* Main artwork */
.main-artwork {
  max-width: 956px;
  margin: 0 auto 40px;
}

.main-artwork .artwork-image-wrap {
  overflow: hidden;
  aspect-ratio: 956 / 684;
}

.main-artwork .artwork-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.8);
  transform-origin: center 35%;
}

.artwork-title {
  text-align: center;
  margin-top: 40px;
}

.artwork-title h3 {
  font-family: var(--font-en);
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 6px;
  font-weight: 400;
  color: var(--white);
}

.artwork-title .title-kr {
  font-family: var(--font-kr);
  font-size: 16.8px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

/* Sub artworks grid */
.sub-artworks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 67px;
  max-width: 955px;
  margin: 80px auto;
}

.sub-artwork-card .artwork-image {
  width: 100%;
  aspect-ratio: 444 / 668;
  background: #d9d9d9;
  overflow: hidden;
}

.sub-artwork-card .artwork-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-artwork-card h3 {
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 2px;
  font-weight: 400;
  color: var(--white);
  margin-top: 31px;
}

.sub-artwork-card .title-kr {
  font-family: var(--font-kr);
  font-size: 17px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

/* View all button */
.view-all-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 446px;
  height: 97px;
  margin: 100px auto 30px;
  border: 1px solid var(--white-30);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.view-all-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.view-all-btn .btn-en {
  font-family: var(--font-en);
  font-size: 25px;
  letter-spacing: 4px;
  color: var(--white);
}

.view-all-btn .btn-kr {
  font-family: var(--font-kr);
  font-size: 15px;
  color: var(--white-40);
}

/* ===== ARTIST INTRO (HOME) ===== */
.artist-intro {
  display: flex;
  gap: 75px;
  max-width: 955px;
  margin: 60px auto 120px;
  align-items: flex-start;
}

.artist-intro-image {
  width: 460px;
  height: 609px;
  flex-shrink: 0;
  overflow: hidden;
}

.artist-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-intro-text {
  flex: 1;
  height: 609px;
  padding-top: 174px;
  display: flex;
  flex-direction: column;
}

.artist-intro-text .label {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 34px;
}

.artist-intro-text h2 {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 6.8px;
  color: var(--white);
  line-height: 34px;
  margin-top: 9px;
}

.artist-intro-text .label-kr {
  font-family: var(--font-kr);
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.56);
  line-height: 34px;
  margin-top: 16px;
}

.artist-intro-text .desc-en {
  font-family: var(--font-kr);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 43px;
}

.artist-intro-text .desc-kr {
  font-family: var(--font-kr);
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 43px;
}

.learn-more-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 242px;
  height: 72px;
  border: 1px solid var(--white-30);
  margin-top: auto;
  transition: border-color 0.3s, background 0.3s;
}

.learn-more-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.learn-more-btn .btn-en {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--white);
}

.learn-more-btn .btn-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--white-40);
}

/* ===== CONTACT CTA (HOME) ===== */
.contact-cta {
  background: var(--dark);
  padding: 73px 0;
  text-align: center;
}

.contact-cta .cta-en {
  font-family: var(--font-en);
  font-size: 30px;
  letter-spacing: 1px;
  line-height: 26px;
  color: var(--white);
}

.contact-cta .cta-kr {
  font-family: var(--font-kr);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 37px;
  color: var(--white);
  margin-top: 15px;
}

.contact-cta .cta-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 36px;
  margin-top: 30px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  transition: background 0.3s;
}

.contact-cta .cta-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  padding: 0 var(--side-padding);
  margin-top: 77px;
}

.footer-line {
  width: 1140px;
  max-width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 0 auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 53px;
}

.footer-brand .footer-logo {
  font-size: 0;
  line-height: 0;
}

.footer-brand .footer-logo .logo-en {
  font-family: var(--font-en);
  font-size: 40px;
  line-height: 20px;
  letter-spacing: 2.8px;
  color: var(--white);
}

.footer-brand .footer-logo .logo-kr {
  font-family: var(--font-kr);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 2.8px;
  color: var(--white);
  margin-left: 10px;
}

.footer-brand .footer-role {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--white-50);
  margin-top: 20px;
}

.footer-right {
  text-align: right;
}

.footer-nav {
  font-family: var(--font-kr);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav a {
  margin-left: 24px;
  transition: opacity 0.3s;
}

.footer-nav a:first-child { margin-left: 0; }
.footer-nav a:hover { opacity: 0.7; }

.footer-copyright {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white-40);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.artist-profile {
  position: relative;
  max-width: 1100px;
  margin: 150px auto;
  text-align: center;
}

.artist-profile .profile-image {
  width: 522px;
  height: 742px;
  margin: 0 auto;
  overflow: hidden;
}

.artist-profile .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-profile .profile-label {
  font-family: var(--font-en);
  font-size: 15.6px;
  letter-spacing: 2.6px;
  color: var(--white);
  margin-top: 36px;
}

.artist-profile .profile-name {
  font-family: var(--font-en);
  font-size: 48.75px;
  font-weight: 700;
  letter-spacing: 7.5px;
  color: var(--white);
  margin-top: 8px;
}

.artist-profile .profile-name-kr {
  font-family: var(--font-kr);
  font-size: 15.6px;
  letter-spacing: 4.68px;
  color: var(--white-50);
  margin-top: 8px;
}

.artist-profile .profile-desc-en {
  font-family: var(--font-en);
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.artist-profile .profile-desc-kr {
  font-family: var(--font-kr);
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 1.4px;
  color: var(--white);
  margin-top: 20px;
}

/* Artist Bio Section */
.artist-bio-heading {
  text-align: center;
  padding: 30px 0 40px;
}

.artist-bio-heading h2 {
  font-family: var(--font-en);
  font-size: 30px;
  letter-spacing: 6px;
  font-weight: 400;
  color: var(--white);
}

.artist-bio-heading .subtitle {
  font-family: var(--font-kr);
  font-size: 15px;
  letter-spacing: 3.6px;
  color: var(--white-50);
  margin-top: 12px;
}

.bio-columns {
  max-width: 954px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 66px;
}

.bio-row {
  display: flex;
  justify-content: space-between;
}

.bio-row .col-en {
  width: 457px;
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 1px;
  color: var(--white);
}

.bio-row .col-kr {
  width: 457px;
  font-family: var(--font-kr);
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 1px;
  color: var(--white-80);
}

/* About images */
.about-images-section {
  position: relative;
  max-width: 954px;
  margin: 80px auto 120px;
  height: 1192px;
}

.about-img-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 680px;
  height: 419px;
  background: #5e5e5e;
}

.about-img-bottom {
  position: absolute;
  right: 0;
  top: 483px;
  width: 497px;
  height: 709px;
  background: #5e5e5e;
}

/* ===== WORKS PAGE ===== */
.works-section {
  max-width: 1144px;
  margin: 0 auto;
  padding: 0 20px 120px;
}

.works-grid {
  display: grid;
  grid-template-columns: 543fr 543fr;
  gap: 121px 58px;
  margin-top: 60px;
}

.work-card {
  display: block;
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card .card-image {
  width: 100%;
  aspect-ratio: 543 / 441;
  background: #d9d9d9;
  overflow: hidden;
}

.work-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center 35%;
  object-position: center top;
  transform: scale(1.8);
  transition: transform 0.5s;
}

.work-card:hover .card-image img {
  transform: scale(1.85);
}

.work-card .card-info {
  margin-top: 38px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-card .card-title {
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 23px;
  letter-spacing: 3px;
  font-weight: 400;
  color: var(--white);
}

.work-card .card-title-kr {
  font-family: var(--font-kr);
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 3px;
  color: var(--white);
}

.work-card .card-size {
  font-family: var(--font-kr);
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 3px;
  color: var(--white);
}

/* ===== WORK DETAIL PAGE (Figma Works2) ===== */

/* Hero: full-width image right below header */
.work-detail-hero {
  height: 780px;
  overflow: hidden;
  margin: 121px 150px 0;
}

.work-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title block */
.work-detail-title {
  max-width: 954px;
  margin: 53px auto 0;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-detail-title .work-year {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 9.6px;
  color: var(--white-60);
}

.work-detail-title .work-name {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 9.6px;
  color: var(--white);
}

.work-detail-title .work-name-kr {
  font-family: var(--font-kr);
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 5px;
  color: var(--white-60);
}

/* Meta row */
.work-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 954px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.meta-col-left {
  text-align: left;
}

.meta-col-left .meta-material {
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 21px;
  letter-spacing: 2px;
  color: var(--white);
}

.meta-col-left .meta-material-kr {
  font-family: var(--font-kr);
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 1px;
  color: var(--white-60);
  margin-top: 12px;
}

.meta-col-left .meta-size {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--white);
  margin-top: 36px;
  text-align: left;
}

.meta-divider {
  width: 1px;
  height: 80px;
  background: var(--white-25);
}

.meta-col-right {
  text-align: center;
}

.meta-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.meta-price-label {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white-50);
}

.meta-col-right .meta-price {
  font-family: var(--font-kr);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

.meta-inquire-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1px solid var(--white-30);
  padding: 18px 44px;
  transition: border-color 0.3s, background 0.3s;
}

.meta-inquire-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.meta-inquire-btn .btn-en {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white);
}

.meta-inquire-btn .btn-kr {
  font-family: var(--font-kr);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--white);
}

/* Work description */
.work-detail-desc {
  max-width: 954px;
  margin: 100px auto 0;
  padding: 0 20px;
  text-align: center;
}

.work-detail-desc .desc-en {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 40px;
}

.work-detail-desc .desc-kr {
  font-family: var(--font-kr);
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 40px;
}

/* Display examples */
.work-detail-display {
  max-width: 1162px;
  margin: 100px auto 0;
  padding: 0 20px;
  text-align: center;
}

.work-detail-display h2 {
  font-family: var(--font-en);
  font-size: 30px;
  letter-spacing: 6px;
  font-weight: 400;
  color: var(--white);
}

.work-detail-display .display-subtitle {
  font-family: var(--font-kr);
  font-size: 15px;
  letter-spacing: 3.6px;
  color: var(--white-50);
  margin-top: 12px;
  margin-bottom: 50px;
}

.work-detail-display .display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 31px;
}

.work-detail-display .display-placeholder {
  aspect-ratio: 462 / 573;
  background: #d9d9d9;
}

.work-detail-display .display-cap-en {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 1px;
  color: var(--white);
  max-width: 954px;
  margin: 40px auto 0;
}

.work-detail-display .display-cap-kr {
  font-family: var(--font-kr);
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: var(--white);
  max-width: 954px;
  margin: 14px auto 0;
}

/* Bottom CTA */
.work-detail-cta {
  text-align: center;
  margin: 80px 0 120px;
}

.work-detail-cta .meta-inquire-btn {
  display: inline-flex;
  width: 307px;
  height: 82px;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  display: flex;
  justify-content: space-between;
  max-width: 1216px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 80px;
}

.contact-info {
  flex: 1;
  max-width: 385px;
}

.contact-info h2 {
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 22.75px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info .info-en {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 14px;
}

.contact-info .info-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.contact-detail img {
  width: 27px;
  height: 27px;
}

.contact-detail span {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}

/* Contact Form */
.contact-form-wrap {
  width: 497px;
  flex-shrink: 0;
  background: var(--dark);
  padding: 33px 50px 46px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.form-label .label-en {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}

.form-label .label-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white-60);
}

.form-input,
.form-textarea {
  width: 100%;
  height: 50px;
  background: transparent;
  border: 1px solid var(--white-25);
  color: var(--white);
  font-family: var(--font-kr);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--white-50);
}

.form-textarea {
  height: 191px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  height: 71px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  transition: opacity 0.3s;
}

.form-submit:hover {
  opacity: 0.9;
}

.form-submit .btn-en {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--black);
}

.form-submit .btn-kr {
  font-family: var(--font-kr);
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.6);
}

/* ===== CF7 Form Styling ===== */
.contact-form-wrap .wpcf7 {
  width: 100%;
}

.contact-form-wrap .wpcf7-form .form-group {
  margin-bottom: 24px;
}

.contact-form-wrap .wpcf7-form .form-label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"] {
  width: 100%;
  height: 50px;
  background: transparent;
  border: 1px solid var(--white-25);
  color: var(--white);
  font-family: var(--font-kr);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  height: 191px;
  background: transparent;
  border: 1px solid var(--white-25);
  color: var(--white);
  font-family: var(--font-kr);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s;
}

.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  border-color: var(--white-50);
}

.contact-form-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  height: 71px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--black);
  margin-top: 24px;
  transition: opacity 0.3s;
}

.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  opacity: 0.9;
}

.contact-form-wrap .wpcf7-response-output {
  color: var(--white);
  border-color: var(--white-30) !important;
  margin: 16px 0 0 !important;
  font-family: var(--font-kr);
  font-size: 14px;
}

/* ===== PayPal Card Fields ===== */
.payment_method_ppcp_card .payment_box {
  display: block !important;
}

#ppcp-card-name,
#ppcp-card-number,
#ppcp-card-exp,
#ppcp-card-cvv {
  min-height: 45px;
  border: 1px solid var(--white-25);
  padding: 8px 12px;
  background: transparent;
  margin-top: 6px;
}

.ppcp-card-field--label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white-60) !important;
}

.ppcp-card-fields--container {
  margin-bottom: 16px;
}

.ppcp-card-field--container {
  margin-bottom: 12px;
}

.wc-ppcp-card-payment-form {
  padding: 10px 0;
}

.wc-saved-payment-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.wc-saved-payment-methods label {
  color: var(--white) !important;
}

/* ===== CHECKOUT PAGE ===== */
.yein-checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 20px 120px;
}

.yein-checkout-header {
  text-align: center;
  margin-bottom: 60px;
}

.yein-checkout-header h1 {
  font-family: var(--font-en);
  font-size: 48px;
  letter-spacing: 9.6px;
  font-weight: 400;
  color: var(--white);
}

.yein-checkout-header .subtitle {
  font-family: var(--font-kr);
  font-size: 20px;
  letter-spacing: 4.2px;
  color: var(--white-50);
  margin-top: 12px;
}

.yein-checkout-columns {
  display: flex;
  gap: 80px;
}

/* Order Summary */
.yein-checkout-summary {
  width: 400px;
  flex-shrink: 0;
}

.yein-checkout-summary h2,
.yein-checkout-billing h2 {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: 3px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--white-10);
  padding-bottom: 16px;
}

.yein-checkout-summary h2 .kr,
.yein-checkout-billing h2 .kr {
  font-family: var(--font-kr);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--white-50);
  margin-left: 8px;
}

.yein-order-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-10);
}

.yein-order-item .item-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  background: #d9d9d9;
}

.yein-order-item .item-name {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}

.yein-order-item .item-price {
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.yein-order-item .item-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0;
}

.yein-order-item .qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--white-25);
}

.yein-order-item .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 16px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.yein-order-item .qty-btn:hover {
  background: rgba(255,255,255,0.1);
}

.yein-order-item .qty-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 32px;
  font-family: var(--font-en);
  font-size: 14px;
  color: var(--white);
  border-left: 1px solid var(--white-25);
  border-right: 1px solid var(--white-25);
}

.yein-order-item .item-remove {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.yein-order-item .item-remove:hover {
  color: #ff6b6b;
}

.yein-order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 10px;
}

.yein-order-total .total-label {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white-50);
}

.yein-order-total .total-amount {
  font-family: var(--font-kr);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
}

/* Billing Details */
.yein-checkout-billing {
  flex: 1;
}

.yein-checkout-billing .payment-heading {
  margin-top: 40px;
}

/* WooCommerce form overrides */
.woocommerce-checkout label {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--white-60) !important;
  margin-bottom: 8px;
  display: block;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  height: 50px;
  background: transparent !important;
  border: 1px solid var(--white-25) !important;
  color: var(--white) !important;
  font-family: var(--font-kr);
  font-size: 14px;
  padding: 12px 16px !important;
  outline: none;
  border-radius: 0 !important;
  -webkit-appearance: none;
}

.woocommerce-checkout select {
  background: var(--dark) !important;
}

/* Select2 dropdown styling */
.select2-container--default .select2-selection--single {
  background: transparent !important;
  border: 1px solid var(--white-25) !important;
  border-radius: 0 !important;
  height: 50px !important;
  color: var(--white) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--white) !important;
  line-height: 50px !important;
  padding-left: 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
}

.select2-dropdown {
  background: var(--dark) !important;
  border: 1px solid var(--white-25) !important;
  border-radius: 0 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background: var(--black) !important;
  border: 1px solid var(--white-25) !important;
  color: var(--white) !important;
  padding: 10px 12px !important;
  font-family: var(--font-kr);
  font-size: 14px;
}

.select2-container--default .select2-results__option {
  color: var(--white) !important;
  padding: 10px 16px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(255,255,255,0.1) !important;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: var(--white-50) !important;
}

.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

.woocommerce-checkout .woocommerce-input-wrapper {
  width: 100%;
}

.woocommerce-checkout #place_order {
  width: 100%;
  height: 72px;
  background: var(--white) !important;
  color: var(--black) !important;
  border: none !important;
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 3px;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 0 !important;
  transition: opacity 0.3s;
}

.woocommerce-checkout #place_order:hover {
  opacity: 0.9;
}

/* Payment methods */
.woocommerce-checkout .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-checkout .wc_payment_method {
  padding: 16px 0;
  border-bottom: 1px solid var(--white-10);
}

.woocommerce-checkout .wc_payment_method label {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--white) !important;
  cursor: pointer;
}

.woocommerce-checkout .payment_box {
  background: var(--dark) !important;
  padding: 20px !important;
  margin-top: 12px;
  color: var(--white-60);
  font-family: var(--font-kr);
  font-size: 14px;
}

.woocommerce-checkout .payment_box::before,
.woocommerce-checkout .payment_box::after {
  display: none !important;
}

/* Hide unnecessary WooCommerce elements */
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout .woocommerce-account-fields {
  display: none;
}

/* Hide PayPal option on checkout - show only credit card */
.wc_payment_method.payment_method_ppcp-gateway {
  display: none !important;
}

/* Hide cart notices and coupon on checkout */
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none !important;
}

/* WooCommerce notices */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-left-color: var(--white-30) !important;
  font-family: var(--font-kr);
  font-size: 14px;
  padding: 16px 20px !important;
  margin-bottom: 20px;
}

.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a {
  color: var(--white) !important;
}

@media (max-width: 768px) {
  .yein-checkout-columns {
    flex-direction: column;
  }
  .yein-checkout-summary {
    width: 100%;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  :root {
    --side-padding: 40px;
  }
  .bio-row { flex-direction: column; gap: 20px; }
  .bio-row .col-en, .bio-row .col-kr { width: 100%; }
  .artist-intro { flex-direction: column; align-items: center; }
  .artist-intro-image { width: 100%; max-width: 460px; }
  .artist-intro-text { padding-top: 40px; }
}

@media (max-width: 960px) {
  .contact-content { flex-direction: column; }
  .contact-form-wrap { width: 100%; }
  .contact-info { max-width: 100%; }
  .work-meta { flex-direction: column; gap: 30px; }
  .work-meta .divider { width: 80px; height: 1px; }
  .sub-artworks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --side-padding: 20px;
  }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: fixed;
    top: 121px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 0;
    backdrop-filter: blur(10px);
  }

  .main-nav.open { display: flex; }

  .site-header { padding: 20px var(--side-padding) 0; }
  .header-inner { height: 70px; }

  .page-title-section { padding: 120px 0 40px; }
  .page-title-section h1 { font-size: 32px; letter-spacing: 6px; }

  .section-heading h2 { font-size: 28px; letter-spacing: 4px; }

  .works-grid { grid-template-columns: 1fr; }

  .view-all-btn { width: 90%; max-width: 446px; }

  .hero { min-height: 500px; }

  .artist-profile .profile-image { width: 100%; max-width: 400px; height: auto; aspect-ratio: 522 / 742; }

  .display-grid { grid-template-columns: 1fr; }

  .work-detail-hero { height: 400px; }
  .work-detail-info .work-name { font-size: 28px; }

  .footer-inner { flex-direction: column; gap: 30px; }
  .footer-right { text-align: left; }
  .footer-nav a:first-child { margin-left: 0; }
}
