/* ========================================
   Josefine H Skincare — Stylesheet
   Elegant & Professional Design
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f3ede6;
  --color-text: #3a3330;
  --color-text-light: #7a706a;
  --color-accent: #b8967a;
  --color-accent-dark: #9a7a60;
  --color-accent-light: #d4bfad;
  --color-white: #ffffff;
  --color-cream: #f9f5f0;
  --color-border: #e8e0d8;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --nav-height: 80px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  height: var(--nav-height);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  height: 70px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  transition: opacity 0.4s ease;
}

.nav-logo-white {
  display: block;
}

.nav-logo-dark {
  display: none;
}

.navbar.scrolled .nav-logo-white {
  display: none;
}

.navbar.scrolled .nav-logo-dark {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--color-text-light);
}

.nav-link:hover {
  color: var(--color-white);
}

.navbar.scrolled .nav-link:hover {
  color: var(--color-accent-dark);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  padding: 8px 20px;
  margin-left: 8px;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-cta {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
  background: var(--color-text);
}

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

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

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

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/hero-bg.svg') center center / cover no-repeat;
  background-color: #8a7568;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(58, 48, 42, 0.45) 0%,
    rgba(58, 48, 42, 0.55) 50%,
    rgba(58, 48, 42, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 24px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.hero-divider {
  width: 50px;
  height: 1px;
  background: var(--color-accent-light);
  margin: 0 auto 24px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent-dark);
  border: 1px solid var(--color-accent);
}

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

/* --- Section --- */
.section {
  padding: 100px 0;
}

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

.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.title-divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 0 auto 20px;
}

.section-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- About --- */
.section-about {
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.about-image-frame {
  position: relative;
}

.about-image-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--color-accent-light);
  z-index: 0;
}

.about-image-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-image-placeholder span {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-white);
  opacity: 0.6;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.about-text .btn {
  margin-top: 12px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.credential-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-accent-dark);
  background: var(--color-cream);
  border: 1px solid var(--color-accent-light);
  border-radius: 20px;
}

/* --- Featured Treatment --- */
.featured-treatment {
  margin-bottom: 48px;
}

.featured-treatment-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg-alt) 100%);
  border: 1px solid var(--color-accent-light);
  border-radius: 16px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}

.featured-text {
  flex: 1;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}

.featured-description {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.featured-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  color: var(--color-accent-light);
}

@media (max-width: 768px) {
  .featured-treatment-inner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .featured-icon {
    display: none;
  }
  .featured-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
}

/* --- Services --- */
.section-services {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--color-white);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
}

.service-card:hover {
  border-color: var(--color-accent-light);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--color-accent);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 14px;
}

.service-description {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  transition: letter-spacing 0.3s ease;
}

.service-link:hover {
  letter-spacing: 0.18em;
  color: var(--color-accent);
}

/* --- Trust banner --- */
.trust-banner {
  background: var(--color-text);
  padding: 20px 0;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-text {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.trust-divider {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.trust-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent-light);
  transition: color 0.3s ease;
}

.trust-link:hover {
  color: var(--color-white);
}

/* --- FAQ --- */
.section-faq {
  background: var(--color-white);
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-question:hover {
  color: var(--color-accent-dark);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.8;
}

.faq-answer a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Booking --- */
.section-booking {
  background: var(--color-bg-alt);
}

.booking-embed {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.booking-embed iframe {
  display: block;
  width: 100%;
  height: 800px;
  border: none;
}

/* --- Price List --- */
.section-pricelist {
  background: var(--color-bg-alt);
}

.price-category {
  max-width: 800px;
  margin: 0 auto 40px;
}

.price-category-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-accent-light);
  margin-bottom: 0;
}

.price-category-note {
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 8px;
}

.price-list {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item:hover {
  background: var(--color-cream);
}

.price-item-info {
  flex: 1;
  min-width: 0;
}

.price-item-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}

.price-item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.price-item-meta {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin: 2px 0 0;
}

.price-item-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: 16px;
}

.price-item-price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.price-item-book {
  display: inline-block;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}

.price-item-book:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

.pricelist-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 8px;
}

.pricelist-footer p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }
  .price-item-right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
  .price-category-title {
    font-size: 1.2rem;
  }
}

/* --- Products / NeoStrata --- */
.section-products {
  background: var(--color-white);
}

.products-content {
  max-width: 700px;
  margin: 0 auto;
}

.product-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.product-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

.product-feature h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}

.product-feature p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.products-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 12px;
  font-weight: 300;
}

.products-guide-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

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

/* --- Contact --- */
.section-contact {
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--color-accent-light);
}

.contact-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  color: var(--color-accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.6;
}

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

/* Map */
.map-container {
  width: 100%;
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.map-container iframe {
  display: block;
}

/* --- Footer --- */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 32px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

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

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-accent-light);
  color: var(--color-accent-light);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

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

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer-regulatory {
  margin-top: 8px;
  opacity: 0.6;
  font-size: 0.65rem !important;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card.fade-in:nth-child(2) { transition-delay: 0.12s; }
.service-card.fade-in:nth-child(3) { transition-delay: 0.24s; }

.contact-card.fade-in:nth-child(2) { transition-delay: 0.08s; }
.contact-card.fade-in:nth-child(3) { transition-delay: 0.16s; }
.contact-card.fade-in:nth-child(4) { transition-delay: 0.24s; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--color-white);
    padding: 100px 40px 40px;
    gap: 4px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--color-text-light);
    padding: 12px 0;
    font-size: 0.82rem;
  }

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

  .nav-cta {
    margin-left: 0;
    margin-top: 12px;
    text-align: center;
    border-color: var(--color-accent);
    color: var(--color-accent-dark);
  }

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

  .nav-toggle.active span {
    background: var(--color-text);
  }

  .section {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 28px;
  }
}
