/** Shopify CDN: Minification failed

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

**/
/* ============================================
   Advanced Dermatology Custom Styles
   ============================================ */

/* ============================================
   Hero Slideshow Section Styles
   ============================================ */
.hero-dermatology {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.hero-dermatology .hero-slides {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.hero-dermatology .hero-slide {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-dermatology .hero-slide.active {
  display: flex;
  opacity: 1;
}

.hero-dermatology .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-dermatology .hero-background-desktop {
  display: block;
}

.hero-dermatology .hero-background-mobile {
  display: none;
}

.hero-dermatology .hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-dermatology .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-dermatology .hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-dermatology .hero-content .page-width {
  width: 100%;
  max-width: var(--page-width);
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0;
}

.hero-dermatology .hero-text-wrapper {
  max-width: 800px;
  width: 100%;
  padding: 30px 0;
}

.hero-dermatology .hero-text-wrapper.text-align-left {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.hero-dermatology .hero-text-wrapper.text-align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero-dermatology .hero-text-wrapper.text-align-right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

@media screen and (min-width: 750px) {
  .hero-dermatology .hero-content {
    align-items: center;
  }
}

.hero-dermatology .hero-heading {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-dermatology .hero-subheading {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-dermatology .hero-button {
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
}

.hero-dermatology .hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #333;
}

.hero-dermatology .hero-nav:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.hero-dermatology .hero-nav-prev { left: 20px; }
.hero-dermatology .hero-nav-next { right: 20px; }

.hero-dermatology .hero-indicators {
  position: absolute;
  bottom: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dermatology .hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dermatology .hero-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-dermatology .hero-indicator.active {
  background: #ffffff;
  width: 30px;
  border-radius: 6px;
}

.hero-dermatology .hero-awards-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 40px 0 30px;
}

.hero-dermatology .hero-awards.text-align-left { text-align: left; }
.hero-dermatology .hero-awards.text-align-center { text-align: center; }
.hero-dermatology .hero-awards.text-align-right { text-align: right; }

.hero-dermatology .awards-text {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-dermatology .awards-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-dermatology .hero-awards.text-align-left .awards-badges { justify-content: flex-start; }
.hero-dermatology .hero-awards.text-align-center .awards-badges { justify-content: center; }
.hero-dermatology .hero-awards.text-align-right .awards-badges { justify-content: flex-end; }

.hero-dermatology .award-badge img {
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@media screen and (max-width: 749px) {
  .hero-dermatology .hero-heading { font-size: 32px; }
  .hero-dermatology .hero-subheading { font-size: 16px; }
  .hero-dermatology .hero-background-desktop { display: none; }
  .hero-dermatology .hero-background-mobile { display: block; }
  .hero-dermatology .hero-content { padding: 0; }
  .hero-dermatology .hero-content .page-width { padding-left: 2rem; padding-right: 2rem; }
  .hero-dermatology .hero-text-wrapper { padding: 20px; }
  .hero-dermatology .hero-slide[data-mobile-position="top"] .hero-content { align-items: flex-start; padding-top: 100px; }
  .hero-dermatology .hero-slide[data-mobile-position="middle"] .hero-content { align-items: center; }
  .hero-dermatology .hero-slide[data-mobile-position="bottom"] .hero-content { align-items: flex-end; padding-bottom: 200px; }
  .hero-dermatology .hero-nav { width: 40px; height: 40px; }
  .hero-dermatology .hero-nav-prev { left: 10px; }
  .hero-dermatology .hero-nav-next { right: 10px; }
  .hero-dermatology .awards-badges { gap: 15px; }
  .hero-dermatology .award-badge img { max-width: 80px; }
  .hero-dermatology .hero-awards-wrapper { padding: 30px 0 20px; }
  .hero-dermatology .hero-indicators { bottom: 140px; }
}

/* ============================================
   Northwestern Partnership Section
   ============================================ */
.northwestern-partnership { text-align: center; }
.northwestern-partnership .northwestern-content { max-width: 900px; margin: 0 auto; }
.northwestern-partnership .northwestern-logo { margin-bottom: 20px; }
.northwestern-partnership .northwestern-logo img { max-width: 100%; height: auto; }
.northwestern-partnership .northwestern-heading { font-size: 24px; font-weight: 600; margin-bottom: 15px; color: #333; }
.northwestern-partnership .northwestern-description { font-size: 16px; line-height: 1.6; color: #666; }

/* ============================================
   Services Grid Section
   ============================================ */
.services-grid-section { text-align: center; }
.services-grid-section .services-main-heading { font-size: 36px; font-weight: 700; margin-bottom: 20px; color: #3d5959; }
.services-grid-section .services-subheading { max-width: 900px; margin: 0 auto 50px; font-size: 18px; line-height: 1.6; color: #3d5959; }
.services-grid-section .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.services-grid-section .service-item { background: #ffffff; padding: 40px 30px; border-radius: 8px; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.services-grid-section .service-item:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.services-grid-section .service-icon { margin-bottom: 20px; }
.services-grid-section .service-icon img { width: 80px; height: auto; }
.services-grid-section .service-title { font-size: 24px; font-weight: 700; margin-bottom: 15px; color: #3d5959; }
.services-grid-section .service-description { font-size: 16px; line-height: 1.6; margin-bottom: 20px; color: #2b4a4a; }
.services-grid-section .service-list { list-style: none; padding: 0; margin: 0 0 25px 0; }
.services-grid-section .service-list li { padding: 8px 0 8px 25px; position: relative; font-size: 15px; color: #2b4a4a; line-height: 1.5; }
.services-grid-section .service-list li:before { content: "•"; position: absolute; left: 0; color: #2b4a4a; font-weight: bold; }
.services-grid-section .service-button { margin-top: 20px; }

@media screen and (max-width: 989px) {
  .services-grid-section .services-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================
   About with Image Section
   ============================================ */
.about-with-image-section .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-with-image-section .about-grid--left { grid-template-areas: "image content"; }
.about-with-image-section .about-grid--left .about-image-wrapper { grid-area: image; }
.about-with-image-section .about-grid--left .about-content { grid-area: content; }
.about-with-image-section .about-grid--right { grid-template-areas: "content image"; }
.about-with-image-section .about-grid--right .about-image-wrapper { grid-area: image; }
.about-with-image-section .about-grid--right .about-content { grid-area: content; }
.about-with-image-section .about-image-wrapper img,
.about-with-image-section .about-image-placeholder { width: 100%; height: auto; border-radius: 8px; }
.about-with-image-section .about-heading { font-size: 32px; font-weight: 700; margin-bottom: 20px; color: #3d5959; line-height: 1.3; }
.about-with-image-section .about-description { font-size: 16px; line-height: 1.7; margin-bottom: 30px; color: #3d5959; }

@media screen and (max-width: 749px) {
  .about-with-image-section .about-grid,
  .about-with-image-section .about-grid--left,
  .about-with-image-section .about-grid--right { grid-template-columns: 1fr; grid-template-areas: "image" "content"; gap: 30px; }
}

/* ============================================
   Skincare Promo Section
   ============================================ */
.skincare-promo-section { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.skincare-promo-section .skincare-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.skincare-promo-section .skincare-background-image { width: 100%; height: 100%; object-fit: cover; }
.skincare-promo-section .skincare-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.skincare-promo-section .skincare-content { position: relative; z-index: 2; padding: 60px 20px; }
.skincare-promo-section .skincare-text-wrapper { max-width: 800px; margin: 0 auto; }
.skincare-promo-section .skincare-text-wrapper.text-left { text-align: left; margin-left: 0; }
.skincare-promo-section .skincare-text-wrapper.text-center { text-align: center; }
.skincare-promo-section .skincare-text-wrapper.text-right { text-align: right; margin-right: 0; }
.skincare-promo-section .skincare-heading { color: #ffffff; font-size: 36px; font-weight: 700; margin-bottom: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.skincare-promo-section .skincare-description { color: #ffffff; font-size: 18px; line-height: 1.6; margin-bottom: 30px; text-shadow: 0 1px 2px rgba(0,0,0,0.3); }

/* ============================================
   Before & After Gallery Section
   ============================================ */
.before-after-gallery-section { text-align: center; }
.before-after-gallery-section .gallery-main-heading { font-size: 36px; font-weight: 700; margin-bottom: 10px; color: #3d5959; }
.before-after-gallery-section .gallery-subheading { font-size: 18px; color: #446666; margin-bottom: 40px; }
.before-after-gallery-section .gallery-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.before-after-gallery-section .gallery-tab { background: transparent; border: 2px solid #466; padding: 12px 30px; border-radius: 30px; cursor: pointer; font-weight: 600; font-size: 14px; color: #666; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.before-after-gallery-section .gallery-tab:hover { border-color: #2b4a4a; color: #2b4a4a; }
.before-after-gallery-section .gallery-tab.active { background: #2b4a4a; border-color: #2b4a4a; color: #ffffff; }
.before-after-gallery-section .gallery-tab-content { display: none; }
.before-after-gallery-section .gallery-tab-content.active { display: block; }
.before-after-gallery-section .gallery-images { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
.before-after-gallery-section .gallery-image-item img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.before-after-gallery-section .gallery-cta { margin-top: 40px; }

/* ============================================
   Team Section
   ============================================ */
.team-section { text-align: center; }
.team-section .team-main-heading { font-size: 36px; font-weight: 700; margin-bottom: 10px; color: #3d5959; }
.team-section .team-subheading { font-size: 14px; color: #cddcdf; margin-bottom: 60px; text-transform: uppercase; letter-spacing: 2px; font-weight: 400; }
.team-section .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px 40px; max-width: 1400px; margin: 0 auto; }
.team-section .team-member { background: #ffffff; border-radius: 20px; padding: 80px 40px 40px; position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease; text-align: left; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.team-section .team-member:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.team-section .team-member-image,
.team-section .team-member-image-placeholder { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; position: absolute; top: -70px; left: 50%; transform: translateX(-50%); border: 6px solid #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.team-section .team-member-image-placeholder { background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.team-section .team-member-content { padding: 0; text-align: center; }
.team-section .team-member-name { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #3d5959; }
.team-section .team-member-title { font-size: 13px; color: #2b4a4a; margin-bottom: 20px; font-weight: 600; line-height: 1.4; }
.team-section .team-member-bio { font-size: 15px; line-height: 1.7; color: #3d5959; text-align: left; }

@media screen and (max-width: 989px) {
  .team-section .team-grid { grid-template-columns: 1fr; gap: 100px 0; }
  .team-section .team-member { padding: 80px 30px 30px; }
}

@media screen and (max-width: 749px) {
  .team-section .team-member-image,
  .team-section .team-member-image-placeholder { width: 120px; height: 120px; top: -60px; }
  .team-section .team-member { padding: 70px 25px 25px; }
  .team-section .team-member-name { font-size: 20px; }
  .team-section .team-member-bio { font-size: 14px; }
}
/* Center last team member when odd count */
.team-section .team-member:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 20px);
}

/* ============================================
   Info & Awards Section
   ============================================ */
.info-awards-section { position: relative; }
.info-awards-section .info-awards-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.info-awards-section .info-awards-bg-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.05; }
.info-awards-section .info-awards-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 50px; }
.info-awards-section .info-awards-text { text-align: left; }
.info-awards-section .info-awards-heading { font-size: 36px; font-weight: 700; margin-bottom: 25px; color: #3d5959; line-height: 1.2; }
.info-awards-section .info-awards-description { font-size: 16px; line-height: 1.7; color: #3d5959; }
.info-awards-section .info-awards-features { padding-top: 10px; }
.info-awards-section .info-awards-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.info-awards-section .info-awards-list li { padding-left: 35px; position: relative; font-size: 17px; color: #3d5959; font-weight: 600; text-align: left; line-height: 1.4; }
.info-awards-section .info-awards-list li:before { content: "✓"; position: absolute; left: 0; color: #48bb78; font-weight: bold; font-size: 22px; top: -2px; }
.info-awards-section .info-awards-badges-wrapper { position: relative; z-index: 1; text-align: center; padding-top: 30px; border-top: 1px solid #e2e8f0; }
.info-awards-section .info-awards-badges { display: flex; justify-content: center; align-items: center; gap: 30px; flex-wrap: wrap; }
.info-awards-section .info-award-badge img { max-width: 120px; height: auto; }

@media screen and (max-width: 989px) {
  .info-awards-section .info-awards-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media screen and (max-width: 749px) {
  .info-awards-section .info-awards-heading { font-size: 28px; }
  .info-awards-section .info-awards-description { font-size: 15px; }
  .info-awards-section .info-awards-list li { font-size: 16px; }
}

/* ============================================
   Contact Info Section
   ============================================ */
.contact-info-section { text-align: center; }
.contact-info-section .contact-heading { font-size: 36px; font-weight: 700; margin-bottom: 15px; color: #3d5959; }
.contact-info-section .contact-subheading { font-size: 18px; color: #666; margin-bottom: 40px; }
.contact-info-section .contact-details { max-width: 600px; margin: 0 auto; }
.contact-info-section .contact-item { padding: 20px; margin-bottom: 15px; background: #f9f9f9; border-radius: 5px; }
.contact-info-section .contact-label { font-weight: 700; color: #333; margin-right: 10px; }
.contact-info-section .contact-value { color: #666; text-decoration: none; }
.contact-info-section .contact-value:hover { color: #007bff; }

/* ============================================
   Hours & Location Section
   ============================================ */
.hours-location-section .hours-location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.hours-location-section .hours-heading,
.hours-location-section .location-heading { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: #3d5959; }
.hours-location-section .hours-table { width: 100%; border-collapse: collapse; }
.hours-location-section .hours-table tr { border-bottom: 1px solid #eee; }
.hours-location-section .hours-table td { padding: 12px 0; font-size: 15px; }
.hours-location-section .hours-day { font-weight: 600; color: #3d5959; }
.hours-location-section .hours-time { color: #666; text-align: right; }
.hours-location-section .location-address { font-size: 16px; line-height: 1.8; color: #666; margin-bottom: 20px; white-space: pre-line; }
.hours-location-section .location-map { margin-top: 20px; }

@media screen and (max-width: 749px) {
  .hours-location-section .hours-location-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   Newsletter Section
   ============================================ */
.newsletter-section { text-align: center; }
.newsletter-section .newsletter-heading { font-size: 32px; font-weight: 700; margin-bottom: 15px; color: #333; }
.newsletter-section .newsletter-subheading { font-size: 16px; color: #666; margin-bottom: 30px; }
.newsletter-section .newsletter-form { max-width: 700px; margin: 0 auto; }
.newsletter-section .newsletter-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 20px; }
.newsletter-section .newsletter-input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 15px; }
.newsletter-section .newsletter-input:focus { outline: none; border-color: #007bff; }
.newsletter-section .newsletter-submit { width: 100%; padding: 12px 30px; }
.newsletter-section .newsletter-privacy { font-size: 13px; color: #999; margin-top: 15px; }
.newsletter-section .newsletter-success { background: #d4edda; color: #155724; padding: 15px; border-radius: 5px; margin-bottom: 20px; }
.newsletter-section .newsletter-errors { background: #f8d7da; color: #721c24; padding: 15px; border-radius: 5px; margin-bottom: 20px; }

/* ============================================
   Responsive Utilities
   ============================================ */
@media screen and (max-width: 749px) {
  .info-awards-section .info-awards-list { grid-template-columns: 1fr; }
  .newsletter-section .newsletter-fields { grid-template-columns: 1fr; }
}


/* ================================================================
   HEADER — Transparent Overlay with Pill Nav, Outline CTAs,
   Social Icons, Cart  |  Matches advanceddermchi.com screenshot
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --derm-header-font: 'Montserrat', var(--font-heading-family), sans-serif;
  --derm-nav-pill-bg: rgba(255, 255, 255, 0.85);
  --derm-nav-pill-bg-hover: rgba(255, 255, 255, 1);
  --derm-nav-pill-text: #395959;
  --derm-nav-pill-text-hover: #2b4545;
  --derm-cta-bg: rgba(255, 255, 255, 0.85);
  --derm-cta-bg-hover: rgba(255, 255, 255, 1);
  --derm-cta-border: rgba(255, 255, 255, 0.85);
  --derm-cta-border-hover: rgba(255, 255, 255, 1);
  --derm-cta-text: #395959;
  --derm-cta-text-hover: #2b4545;
  --derm-icon-color: #ffffff;
  --derm-icon-hover: rgba(255, 255, 255, 0.7);
  --derm-cart-badge-bg: #c9a96e;
  --derm-transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Header Wrapper — transparent, absolute over hero --- */
.section-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent !important;
  border: none !important;
  margin-bottom: 0 !important;
}

.section-header.shopify-section-header-sticky {
  position: fixed;
  background: rgba(30, 30, 30, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.section-header.shopify-section-header-sticky .header {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.header-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.header-wrapper--border-bottom { border-bottom: none !important; }

.header-wrapper.color-scheme-1,
.header-wrapper.color-scheme-2,
.header-wrapper.color-scheme-3,
.header-wrapper[class*="color-"] {
  background: transparent !important;
}

/* --- Header Inner Layout --- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 3rem !important;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.header.page-width {
  max-width: 1400px;
  padding-left: 5rem !important;
  padding-right: 3rem !important;
}

.header__heading { margin: 0; flex-shrink: 0; }
.header__heading-link { display: inline-flex; align-items: center; }

.header__heading-logo {
  max-height: 65px;
  width: auto !important;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.header__heading-link:hover .header__heading-logo { opacity: 0.85; }

/* --- Navigation — White pill buttons, 3×2 grid --- */
.header__inline-menu {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__inline-menu .list-menu--inline {
  display: grid !important;
  grid-template-columns: repeat(3, auto);
  gap: 10px 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap !important;
}

.header__inline-menu .header__menu-item,
.header__inline-menu .list-menu__item--link {
  background: var(--derm-nav-pill-bg);
  color: var(--derm-nav-pill-text) !important;
  font-family: var(--derm-header-font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 26px;
  border-radius: 50px;
  border: none;
  transition: background var(--derm-transition), color var(--derm-transition), box-shadow var(--derm-transition);
  white-space: nowrap;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header__inline-menu .header__menu-item:hover,
.header__inline-menu .list-menu__item--link:hover {
  background: var(--derm-nav-pill-bg-hover);
  color: var(--derm-nav-pill-text-hover) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__inline-menu .header__menu-item.active,
.header__inline-menu .list-menu__item--link[aria-current="page"] {
  background: #ffffff;
  color: #395959 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.header__inline-menu .header__menu-item span,
.header__inline-menu .list-menu__item--link span {
  text-decoration: none !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
}

.header__inline-menu .header__menu-item::after,
.header__inline-menu .list-menu__item--link::after { display: none !important; }

.header__inline-menu .header__menu-item .icon-caret { display: none; }

/* --- Icons Area — CTAs, Social, Cart --- */
.header__icons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* CTA Buttons — stacked vertically */
.header__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
  margin-right: 6px;
}

.header__cta-button,
.header__cta-button.button,
.header__cta-button.button--secondary,
.header__cta-button.button--primary,
.header .header__cta-button,
a.header__cta-button {
  font-family: var(--derm-header-font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 2.2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 11px 28px !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--derm-cta-border) !important;
  background: var(--derm-cta-bg) !important;
  background-color: var(--derm-cta-bg) !important;
  color: var(--derm-cta-text) !important;
  transition: all var(--derm-transition) !important;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.3 !important;
  min-height: unset !important;
  min-width: unset !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
  outline: none !important;
}

/* Kill Dawn's pseudo-element overlays */
.header__cta-button::before,
.header__cta-button::after,
.header__cta-button.button::before,
.header__cta-button.button::after,
.header__cta-button.button--secondary::before,
.header__cta-button.button--secondary::after,
.header__cta-button.button--primary::before,
.header__cta-button.button--primary::after,
a.header__cta-button::before,
a.header__cta-button::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.header__cta-button:hover,
.header__cta-button.button:hover,
a.header__cta-button:hover {
  background: var(--derm-cta-bg-hover) !important;
  background-color: var(--derm-cta-bg-hover) !important;
  border-color: var(--derm-cta-border-hover) !important;
  color: var(--derm-cta-text-hover) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Social Icons — stacked vertically */
.header__social-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--derm-icon-color);
  text-decoration: none;
  transition: color var(--derm-transition), background var(--derm-transition);
}

.header__social-link:hover {
  color: var(--derm-icon-hover);
  background: rgba(255, 255, 255, 0.08);
}

.header__social-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Cart Icon */
.header__icon--cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--derm-icon-color) !important;
  transition: background var(--derm-transition);
  position: relative;
}

.header__icon--cart:hover { background: rgba(255, 255, 255, 0.08); }
.header__icon--cart .svg-wrapper { color: var(--derm-icon-color); }

.header__icon--cart svg,
.header__icon--cart .icon,
.header__icon--cart .icon-cart {
  color: var(--derm-icon-color) !important;
  stroke: var(--derm-icon-color) !important;
  fill: none !important;
  width: 28px;
  height: 28px;
}

.cart-count-bubble {
  position: absolute;
  top: 0; right: -2px;
  background: var(--derm-cart-badge-bg) !important;
  color: #ffffff !important;
  font-family: var(--derm-header-font);
  font-size: 10px;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Account & Search Icons — hidden per design */
.header__icon--account,
.header__icon--account.link {
  display: none !important;
}

.header__search,
.header__icon--search,
details-modal.header__search {
  display: none !important;
}

/* --- Mobile Drawer --- */
header-drawer .header__icon { color: var(--derm-icon-color) !important; }
header-drawer svg,
header-drawer .icon { color: var(--derm-icon-color) !important; fill: var(--derm-icon-color) !important; }

.menu-drawer { background: #ffffff; }

.menu-drawer__navigation .list-menu__item--link {
  font-family: var(--derm-header-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.header__cta-buttons--mobile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.header__cta-buttons--mobile .header__cta-button {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  text-align: center;
  justify-content: center;
  padding: 14px 24px !important;
}

.header__social-icons--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.header__social-icons--mobile .header__social-link {
  width: 42px;
  height: 42px;
  color: #ffffff;
}

/* --- Header Responsive --- */
@media screen and (max-width: 989px) {
  .header { padding: 12px 20px !important; }
  .header__heading-logo { max-height: 40px; }

  .header__inline-menu,
  .header__cta-buttons:not(.header__cta-buttons--mobile),
  .header__social-icons:not(.header__social-icons--mobile) {
    display: none !important;
  }

  .header__cta-buttons { display: none; }
}

@media screen and (min-width: 990px) {
  header-drawer { display: none !important; }
  .header__cta-buttons--mobile,
  .header__social-icons--mobile { display: none !important; }
}

@media screen and (min-width: 1200px) {
  .header__inline-menu .list-menu--inline { gap: 10px 14px; }
  .header__inline-menu .header__menu-item,
  .header__inline-menu .list-menu__item--link { padding: 11px 28px; font-size: 12px; }
}

@media screen and (min-width: 1400px) {
  .header,
  .header.page-width {
    padding-left: 6rem !important;
    padding-right: 4rem !important;
  }
}

/* --- Sticky / Scrolled Overrides --- */
.shopify-section-header-sticky .header__inline-menu .header__menu-item,
.shopify-section-header-sticky .header__inline-menu .list-menu__item--link {
  background: rgba(255, 255, 255, 0.9);
}

.shopify-section-header-sticky .header__cta-button,
.shopify-section-header-sticky a.header__cta-button {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

/* --- Fade-in Animation --- */
@keyframes derm-header-fade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  animation: derm-header-fade 0.6s ease-out both;
}
