/* ==========================================================================
   뷰리플한의원 - 피부재생 레이저 클리닉 스타일시트
   ========================================================================== */

/* 1. CSS Variables & Design Tokens */
:root {
  /* Brand Colors */
  --bg-main: #FAF2ED;       /* Warm Ivory (Primary background) */
  --bg-card: #FDFBF7;       /* Off-white Cream (Secondary background / card fill) */
  --text-main: #402F34;     /* Deep Mahogany (Primary typography / brand accent) */
  --text-muted: #8C7B75;    /* Muted Taupe (Secondary typography) */
  --accent-gold: #D4C5B9;   /* Soft Gold/Copper (Borders / dividers / icons) */
  --accent-coral: #E8D8D0;  /* Muted Rose/Coral (Hover state backgrounds / light fills) */
  --white: #FFFFFF;
  
  /* Layout Options */
  --container-max-width: 1200px;
  --header-height: 80px;
  
  /* Fonts */
  --font-serif: 'Noto Serif KR', Georgia, serif;
  --font-sans: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  --font-eng: 'Outfit', sans-serif;
  
  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Box Shadows */
  --shadow-sm: 0 4px 12px rgba(64, 47, 52, 0.03);
  --shadow-md: 0 10px 30px rgba(64, 47, 52, 0.06);
  --shadow-lg: 0 20px 40px rgba(64, 47, 52, 0.1);
}

/* 2. Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

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

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

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

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

.font-serif {
  font-family: var(--font-serif);
}

.font-eng {
  font-family: var(--font-eng);
}

/* Common Section Styles */
.section-header {
  margin-bottom: 50px;
}

.section-eng-title {
  font-family: var(--font-eng);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.bg-cream {
  background-color: var(--bg-card);
}

.divider {
  width: 50px;
  height: 1.5px;
  background-color: var(--accent-gold);
  margin: 25px auto;
}

/* 3. Header & Navigation */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(250, 242, 237, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1.5px solid rgba(212, 197, 185, 0.3);
  transition: var(--transition-fast);
}

#main-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 242, 237, 0.98);
}

.header-container {
  width: 90%;
  max-width: var(--container-max-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  height: 44px;
  display: block;
}

.header-logo img {
  height: 100%;
  width: auto;
}

#main-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

#main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  padding: 8px 4px;
  position: relative;
}

#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

#main-nav a:hover::after,
#main-nav a.active::after {
  width: 100%;
}

#main-nav a.nav-contact-btn {
  background-color: var(--text-main);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

#main-nav a.nav-contact-btn::after {
  display: none;
}

#main-nav a.nav-contact-btn:hover {
  background-color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}

/* Hamburger Menu button */
#mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

#mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 1px;
  transition: var(--transition-fast);
}

/* 4. Hero Section */
.round-hero {
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 50px;
}

.hero-card {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  background-color: var(--bg-card);
  border-radius: 40px;
  border: 1.5px solid rgba(212, 197, 185, 0.4);
  padding: 90px 7% 80px 7%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text-content {
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.hero-eng-accent {
  font-family: var(--font-eng);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  margin-bottom: 25px;
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 25px;
}

.hero-main-title span {
  position: relative;
  display: inline-block;
}

.hero-main-title span::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: var(--accent-coral);
  z-index: -1;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.hero-tags .tag {
  background-color: var(--white);
  border: 1.5px solid var(--accent-gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.hero-tags .tag:hover {
  transform: translateY(-2px);
  background-color: var(--accent-coral);
  border-color: var(--accent-coral);
}

.hero-cta-btn {
  display: inline-block;
  background-color: var(--text-main);
  color: var(--white);
  font-weight: 600;
  padding: 16px 45px;
  border-radius: 40px;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.hero-cta-btn:hover {
  background-color: var(--text-muted);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-artistic-shape {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  z-index: 1;
}

.hero-artistic-shape svg {
  width: 100%;
  height: 100%;
}

.hero-bottom-badge {
  position: absolute;
  bottom: 25px;
  right: 40px;
  font-family: var(--font-eng);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* 5. Intro Section */
.intro-block {
  padding: 90px 0 80px 0;
}

.intro-category {
  font-family: var(--font-eng);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}

.intro-block .section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.intro-description {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.8;
  color: var(--text-main);
  font-weight: 400;
}

.intro-description strong {
  font-weight: 700;
  color: var(--text-main);
}

/* 6. Process Section */
.process-block {
  padding: 100px 0;
  border-top: 1.5px solid rgba(212, 197, 185, 0.4);
  border-bottom: 1.5px solid rgba(212, 197, 185, 0.4);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-card {
  background-color: var(--bg-main);
  border: 1.5px solid rgba(212, 197, 185, 0.4);
  border-radius: 20px;
  padding: 50px 30px 40px 30px;
  position: relative;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.process-card .card-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(64, 47, 52, 0.08);
}

.process-card .card-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
}

.process-card .card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card .card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 7. Custom Skin Booster Section */
.booster-block {
  padding: 100px 0;
}

.booster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.booster-card {
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 197, 185, 0.3);
  border-radius: 16px;
  padding: 40px 25px 35px 25px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.booster-card:hover {
  background-color: var(--white);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.booster-header {
  margin-bottom: 20px;
}

.booster-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.booster-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.booster-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8. Recommended For Section */
.recommended-block {
  padding: 100px 0;
  border-top: 1.5px solid rgba(212, 197, 185, 0.4);
  border-bottom: 1.5px solid rgba(212, 197, 185, 0.4);
}

.recommended-layout {
  display: flex;
  gap: 80px;
}

.recommended-title-box {
  flex: 0 0 320px;
}

.recommended-title-box .section-title {
  font-size: 2.4rem;
  margin-top: 15px;
}

.recommended-title-box .accent-line {
  width: 60px;
  height: 2px;
  background-color: var(--text-main);
  margin-top: 30px;
}

.recommended-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
}

.recommended-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.recommended-item .rec-num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.2;
}

.recommended-item .rec-text {
  font-size: 0.98rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.55;
}

/* 9. Q&A Accordion Section */
.qna-block {
  padding: 100px 0;
}

.qna-accordion-wrapper {
  max-width: 800px;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background-color: var(--bg-card);
  border: 1.5px solid rgba(212, 197, 185, 0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.accordion-item.active {
  border-color: var(--text-main);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  text-align: left;
}

.qna-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-right: 25px;
}

.accordion-item.active .qna-number {
  color: var(--text-main);
}

.qna-title {
  font-size: 1.1rem;
  font-weight: 700;
  flex: 1;
  color: var(--text-main);
}

.accordion-icon {
  width: 16px;
  height: 16px;
  position: relative;
  transition: var(--transition-fast);
}

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-main);
  transition: var(--transition-fast);
}

/* Horizontal Line */
.accordion-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* Vertical Line */
.accordion-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
  background-color: var(--white);
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* high value to allow contents expansion */
  padding-bottom: 25px;
}

.qna-answer {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  border-top: 1.5px solid rgba(212, 197, 185, 0.2);
  padding-top: 20px;
}

/* 10. Footer & Consultation Form */
#footer-section {
  background-color: var(--text-main);
  color: var(--bg-main);
  padding: 90px 0 80px 0;
  position: relative;
}

.footer-container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 100%;
  filter: brightness(0) invert(1);
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-item .label {
  font-family: var(--font-eng);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(250, 242, 237, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.detail-item .val {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

.detail-item .phone-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hours-item .val p {
  margin-bottom: 12px;
  display: flex;
  gap: 20px;
}

.hours-item .val p span {
  font-weight: 700;
  width: 90px;
  display: inline-block;
  color: rgba(250, 242, 237, 0.7);
}

.hours-item .val p.closed span {
  color: rgba(250, 242, 237, 0.3);
}

.copyright {
  margin-top: 60px;
  font-size: 0.8rem;
  color: rgba(250, 242, 237, 0.3);
}

/* Consultation Form Box */
.footer-form-col .form-box {
  background-color: var(--white);
  border-radius: 24px;
  padding: 45px 35px;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  background-color: var(--bg-main);
  border: 1.5px solid rgba(212, 197, 185, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
  border-color: var(--text-main);
  background-color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

/* Checkbox Style */
.checkbox-group {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.checkbox-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-group .view-policy-btn {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: underline;
  margin-left: auto;
}

/* Error message styling */
.form-group .error-msg {
  display: none;
  font-size: 0.8rem;
  color: #D32F2F;
  font-weight: 500;
}

.form-group.invalid .error-msg {
  display: block;
}

.form-group.invalid input,
.form-group.invalid checkbox {
  border-color: #D32F2F;
}

.submit-btn {
  width: 100%;
  background-color: var(--text-main);
  color: var(--white);
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.submit-btn:hover {
  background-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 11. Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
  font-size: 0.72rem;
  font-weight: 700;
  transition: var(--transition-normal);
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.kakao-btn {
  background-color: #FEE500; /* Kakao Yellow */
  color: #191919;
}

.naver-btn {
  background-color: #03C75A; /* Naver Green */
  color: var(--white);
}

/* 12. Responsive Design (Mobile-First Breakdown) */
@media screen and (max-width: 1024px) {
  .hero-card {
    padding: 70px 6% 60px 6%;
  }
  
  .hero-main-title {
    font-size: 2.8rem;
  }
  
  .hero-artistic-shape {
    width: 380px;
    height: 380px;
  }
  
  .booster-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .recommended-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .recommended-title-box {
    flex: none;
    text-align: center;
  }
  
  .recommended-title-box .accent-line {
    margin: 20px auto 0 auto;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px 60px 20px;
    border-radius: 24px;
  }
  
  .hero-text-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-main-title {
    font-size: 2.1rem;
  }
  
  .hero-artistic-shape {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 280px;
    height: 280px;
    margin-top: 40px;
  }
  
  .hero-bottom-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
    text-align: center;
  }
  
  .hero-tags {
    justify-content: center;
  }
  
  /* Mobile Menu Header Logic */
  #mobile-menu-toggle {
    display: flex;
  }
  
  #main-nav {
    position: fixed;
    top: var(--header-height);
    left: 100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-main);
    z-index: 998;
    transition: var(--transition-normal);
    border-top: 1.5px solid rgba(212, 197, 185, 0.3);
  }
  
  #main-nav.active {
    left: 0;
  }
  
  #main-nav ul {
    flex-direction: column;
    padding: 50px 30px;
    gap: 25px;
    align-items: flex-start;
  }
  
  #main-nav a {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  #main-nav a.nav-contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
  
  /* Toggle Active Animation of Menu Bars */
  #mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  #mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  #mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .intro-block {
    padding: 60px 0;
  }
  
  .intro-description {
    font-size: 1.15rem;
    line-height: 1.7;
  }
  
  .process-block, .booster-block, .recommended-block, .qna-block {
    padding: 60px 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .booster-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .recommended-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .qna-accordion-wrapper {
    margin-top: 40px;
  }
  
  .accordion-header {
    padding: 20px;
  }
  
  .qna-number {
    margin-right: 15px;
  }
  
  .qna-title {
    font-size: 0.98rem;
  }
  
  .accordion-content {
    padding: 0 20px;
  }
  
  .accordion-item.active .accordion-content {
    padding-bottom: 20px;
  }
  
  #footer-section {
    padding: 60px 0;
  }
  
  .footer-form-col .form-box {
    padding: 30px 20px;
  }
  
  .floating-actions {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .floating-btn {
    width: 60px;
    height: 60px;
    font-size: 0.65rem;
  }
}

/* 13. Page-Specific Styles (Lifting Specs Grid) */
.lifting-specs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  background-color: var(--white);
  border: 1.5px solid rgba(212, 197, 185, 0.4);
  border-radius: 12px;
  padding: 20px;
  margin-top: 35px;
  box-shadow: var(--shadow-sm);
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1.5px solid rgba(212, 197, 185, 0.3);
}

.spec-item:last-child {
  border-right: none;
}

.spec-item .label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.spec-item .val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

@media screen and (max-width: 768px) {
  .lifting-specs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 10px;
    padding: 15px;
  }
  
  .spec-item {
    border-right: none;
    padding: 5px 0;
  }
}

/* 14. Extracted Image Formatting Styles */
.hero-image {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  max-width: 40%;
  height: auto;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(212, 197, 185, 0.4);
  transition: var(--transition-normal);
}

.hero-image:hover {
  transform: translateY(-52%) scale(1.02);
  box-shadow: 0 30px 60px rgba(64, 47, 52, 0.15);
}

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

.booster-image, .diagnostics-image {
  max-width: 900px;
  margin: 50px auto 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(212, 197, 185, 0.4);
  transition: var(--transition-normal);
}

.booster-image:hover, .diagnostics-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.booster-image img, .diagnostics-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1024px) {
  .hero-image {
    width: 380px;
  }
}

@media screen and (max-width: 768px) {
  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none !important;
    width: 100%;
    max-width: 380px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .booster-image, .diagnostics-image {
    margin-top: 30px;
    border-radius: 12px;
  }
}


