@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  --white: #FFFFFF;
  --black: #010001;
  --gray: #bebebe;
  --cream: #FFFef2;
  --magenta: #a10b56;
  --magenta-dark: #8a0a4a;
  --light-blue: #b0fbff;
  --light-yellow: #fffcc9;
  --light-pink: #ffc5d3;
  --pink-soft: #fff0f4;

  --font-serif: 'Cormorant Garamond', 'CMU Serif', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;

  --max-width: 1200px;
  --header-height: 72px;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul { list-style: none; }

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

/* ========== HEADER ========== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}

.logo-text span {
  color: var(--magenta);
}

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

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--magenta);
}

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

.nav a.active {
  color: var(--magenta);
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icons a {
  color: var(--black);
  transition: color 0.2s;
}

.nav-icons a:hover {
  color: var(--magenta);
}

.yt-coming-soon {
  position: relative;
}

.yt-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.yt-tooltip.show {
  opacity: 1;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
  transition: 0.3s;
}

/* ========== HERO ========== */

.hero {
  margin-top: var(--header-height);
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  overflow: hidden;
}

.hero-court-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-court-bg svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding: 80px 0;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--pink-soft);
  color: var(--magenta);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--light-pink);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--magenta);
}

.hero p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero p em {
  color: var(--magenta);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.hero-location {
  font-size: 0.85rem !important;
  color: #555 !important;
  margin-bottom: 28px !important;
  letter-spacing: 0.02em;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 14px 22px;
  font-size: 0.8rem;
}

/* Hero image block */

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-image-block {
  position: relative;
  width: 480px;
  height: 540px;
  flex-shrink: 0;
}

.hero-image-main {
  position: relative;
  z-index: 2;
  width: 340px;
  height: 460px;
  overflow: hidden;
  border-radius: 12px;
  border: 5px solid var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.hero-image-main:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 780px;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.hero-image-accent svg {
  width: 100%;
  height: 100%;
}

.hero-image-secondary {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 200px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  border: 5px solid var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 3;
  transform: rotate(-3deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.hero-image-secondary:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.hero-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== BUTTONS ========== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--magenta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(161, 11, 86, 0.25);
}

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

.btn-outline:hover {
  background: var(--magenta);
  color: var(--white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

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

.btn-hero-primary:hover {
  background: #d4a843;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ========== WAVE DIVIDER ========== */

.wave-divider {
  position: relative;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========== SCATTERED TENNIS BALLS ========== */

.tennis-balls {
  position: relative;
  pointer-events: none;
  height: 0;
  overflow: visible;
  z-index: 2;
}

.tennis-ball {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.55;
  animation: float 6s ease-in-out infinite;
}

.tennis-ball:nth-child(1) {
  top: -50px;
  left: 8%;
  animation-delay: 0s;
  transform: rotate(-15deg);
}

.tennis-ball:nth-child(2) {
  top: -30px;
  left: 25%;
  font-size: 1rem;
  animation-delay: 1.5s;
  transform: rotate(20deg);
}

.tennis-ball:nth-child(3) {
  top: -60px;
  right: 15%;
  font-size: 1.8rem;
  animation-delay: 3s;
  transform: rotate(10deg);
}

.tennis-ball:nth-child(4) {
  top: -25px;
  right: 30%;
  font-size: 1.1rem;
  animation-delay: 4.2s;
  transform: rotate(-25deg);
}

.tennis-ball:nth-child(5) {
  top: -45px;
  left: 50%;
  font-size: 0.9rem;
  animation-delay: 2.3s;
  transform: rotate(35deg);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ========== SECTION COMMON ========== */

.section {
  padding: 100px 0;
}

.section-cream {
  background: var(--cream);
}

.section-pink {
  background: var(--pink-soft);
}

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

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: #777;
  max-width: 520px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 12px;
}

/* ========== BLOG CARDS ========== */

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

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: var(--light-pink);
  position: relative;
  overflow: hidden;
}

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

.blog-card-image .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  opacity: 0.3;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-body h3 {
  color: var(--magenta);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== FEATURED POST ========== */

.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.featured-post-image {
  aspect-ratio: 4 / 3;
  background: var(--light-pink);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.featured-post-image .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.25;
}

.featured-post-content .blog-card-category {
  margin-bottom: 12px;
}

.featured-post-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.featured-post-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ========== BLOG LIST LAYOUT (blog.html) ========== */

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin-top: var(--header-height);
  padding-top: 48px;
}

.blog-main {
  min-width: 0;
}

.blog-page-header {
  margin-bottom: 48px;
}

.blog-page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.blog-page-header p {
  color: #777;
  font-size: 1.05rem;
}

.blog-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-categories button {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid #e0e0e0;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.blog-categories button:hover,
.blog-categories button.active {
  border-color: var(--magenta);
  color: var(--magenta);
  background: var(--pink-soft);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #f0f0f0;
}

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

.blog-list-item-image {
  aspect-ratio: 16 / 11;
  background: var(--light-pink);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.blog-list-item-image .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.25;
}

.blog-list-item-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.blog-list-item:hover .blog-list-item-content h3 {
  color: var(--magenta);
}

.blog-list-item-content p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========== SIDEBAR ========== */

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.sidebar-widget {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.sidebar-newsletter p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.sidebar-newsletter .email-input {
  display: flex;
  gap: 0;
}

.sidebar-newsletter input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-right: none;
  border-radius: 100px 0 0 100px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}

.sidebar-newsletter input:focus {
  border-color: var(--magenta);
}

.sidebar-newsletter button {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: 0 100px 100px 0;
  cursor: pointer;
  transition: background 0.2s;
}

.sidebar-newsletter button:hover {
  background: var(--magenta-dark);
}

.sidebar-trending li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e4df;
}

.sidebar-trending li:last-child {
  border-bottom: none;
}

.sidebar-trending a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.sidebar-trending a:hover {
  color: var(--magenta);
}

.sidebar-trending .trending-meta {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

.sidebar-youtube {
  background: var(--cream);
  border: 1.5px solid var(--light-pink);
}

.sidebar-youtube p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.sidebar-yt-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  margin-bottom: 16px;
  background: var(--pink-soft);
  border-radius: 10px;
}

.sidebar-coming-soon {
  background: linear-gradient(135deg, var(--magenta), #c4186e);
  color: var(--white);
}

.sidebar-coming-soon h4 {
  color: var(--white);
}

.sidebar-coming-soon p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.5;
}

.sidebar-coming-soon .btn {
  background: var(--white);
  color: var(--magenta);
  font-size: 0.78rem;
}

.sidebar-coming-soon .btn:hover {
  background: var(--light-pink);
}

.sidebar-story {
  background: var(--pink-soft);
  border: 1.5px solid var(--light-pink);
}

.sidebar-story h4 {
  color: var(--magenta);
}

.sidebar-story p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.6;
}

.sidebar-story .btn {
  background: var(--magenta);
  color: var(--white);
  font-size: 0.78rem;
  border: none;
}

.sidebar-story .btn:hover {
  background: var(--magenta-dark);
}

/* ========== SINGLE POST ========== */

.post-page {
  margin-top: var(--header-height);
  padding-top: 48px;
}

.post-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.post-header .blog-card-category {
  margin-bottom: 16px;
}

.post-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-header .post-meta {
  font-size: 0.9rem;
  color: var(--gray);
}

.post-hero-image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 56px;
  aspect-ratio: 16 / 9;
  background: var(--light-pink);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.post-hero-image .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.25;
}

.post-content {
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.post-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 48px 0 20px;
}

.post-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 36px 0 16px;
}

.post-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.post-content blockquote {
  border-left: 3px solid var(--magenta);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--pink-soft);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
}

.post-content img {
  border-radius: 12px;
  margin: 32px 0;
}

.post-content ul,
.post-content ol {
  margin: 0 0 24px 24px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.post-content li::marker {
  color: var(--magenta);
}

.post-content strong {
  font-weight: 600;
  color: var(--black);
}

.post-content em {
  font-style: italic;
}

.post-content a {
  color: var(--magenta);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.post-content a:hover {
  color: var(--magenta-dark);
}

.post-content figure {
  margin: 36px 0;
}

.post-content figure img {
  width: 100%;
  border-radius: 12px;
  margin: 0;
}

.post-content figcaption {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.post-content .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.post-content .image-grid img {
  margin: 0;
  aspect-ratio: 1;
  object-fit: cover;
}

.post-content hr {
  border: none;
  height: 1px;
  background: #e8e4df;
  margin: 48px 0;
}

/* ========== SOCIAL SECTION ========== */

.social-section {
  padding: 100px 0;
}

.social-section .section-header {
  margin-bottom: 16px;
}

.social-handles {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.social-handles a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--magenta);
  padding: 8px 20px;
  border: 1.5px solid var(--light-pink);
  border-radius: 100px;
  transition: all 0.2s;
}

.social-handles a:hover {
  background: var(--pink-soft);
  border-color: var(--magenta);
}

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

.social-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}

.social-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--light-pink);
  background: var(--cream);
  color: var(--magenta);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--pink-soft);
  border-color: var(--magenta);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.social-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.social-embed {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: var(--pink-soft);
}

.social-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.social-embed blockquote {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.social-embed .instagram-media {
  width: 100% !important;
}

.social-card-title {
  margin-top: 16px;
  font-family: 'CMU Serif', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-style: normal;
  color: var(--black);
  text-align: center;
  line-height: 1.2;
}

.social-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--pink-soft);
  border: 2px dashed var(--light-pink);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
}

.social-placeholder span {
  font-size: 2.5rem;
}

.social-placeholder p {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--magenta);
}

.social-placeholder small {
  font-size: 0.75rem;
  color: #999;
}

@media (max-width: 600px) {
  .social-card {
    flex: 0 0 280px;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #f0f0f0;
}

.post-tags a {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--cream);
  border-radius: 100px;
  transition: all 0.2s;
}

.post-tags a:hover {
  background: var(--light-pink);
  color: var(--magenta);
}

/* ========== ABOUT PAGE ========== */

.about-hero {
  margin-top: var(--header-height);
  padding: 80px 0 100px;
  background: var(--cream);
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}

.about-hero h1 em {
  font-style: italic;
  color: var(--magenta);
}

.about-hero p {
  font-size: 1.1rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-hero p + p {
  margin-top: 1.25rem;
}

.about-section {
  padding: 80px 0;
}

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

.about-grid.reverse {
  direction: rtl;
}

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

.about-image {
  aspect-ratio: 4 / 5;
  background: var(--light-pink);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-image .placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.25;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-empty {
  padding: 56px 24px;
  text-align: center;
}

.blog-empty p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--magenta);
}

.values-quote {
  max-width: 820px;
  margin: 32px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1.5;
  color: var(--magenta);
  position: relative;
}

.values-quote::before {
  content: '\201C';
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 0.05em;
  opacity: 0.55;
}

.values-quote::after {
  content: '\201D';
  font-size: 2.4em;
  line-height: 0;
  vertical-align: -0.55em;
  margin-left: 0.02em;
  opacity: 0.55;
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}

.value-card .value-icon {
  width: 56px;
  height: 56px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}

.value-card .value-icon svg {
  width: 26px;
  height: 26px;
  color: var(--magenta);
}

.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

/* ========== NEWSLETTER SECTION ========== */

.newsletter-section {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.newsletter-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.newsletter-section p {
  color: #777;
  margin-bottom: 32px;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 16px 20px;
  border: 1.5px solid #e0e0e0;
  border-right: none;
  border-radius: 100px 0 0 100px;
  outline: none;
  background: var(--white);
  transition: border-color 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--magenta);
}

.newsletter-form button {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: 0 100px 100px 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--magenta-dark);
}

.newsletter-line {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #888;
}

.newsletter-line a {
  color: var(--magenta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.newsletter-line a:hover {
  color: var(--magenta-dark);
}

/* ========== COMING SOON BANNER ========== */

.coming-soon-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--magenta), #c4186e);
  text-align: center;
  color: var(--white);
}

.coming-soon-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.coming-soon-banner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-banner .btn {
  background: var(--white);
  color: var(--magenta);
}

.coming-soon-banner .btn:hover {
  background: var(--light-pink);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ========== SHOP COMING SOON ========== */

.shop-coming-soon {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 120px 0 80px;
}

.shop-coming-soon h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--magenta);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.shop-coming-soon p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== MOODBOARD STYLER ========== */

.styler-wrapper {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  min-height: 440px;
}

.styler-pieces {
  width: 280px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-height: 460px;
  overflow-y: auto;
}

.styler-pieces-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--magenta);
  margin-bottom: 4px;
  text-align: center;
}

.styler-pieces-hint {
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: #b3a3ae;
  margin-bottom: 18px;
}

.styler-category {
  margin-bottom: 20px;
}

.styler-cat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.styler-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.styler-item {
  background: #f1edf3;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 6px 8px;
  text-align: center;
  cursor: grab;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.styler-item:hover {
  border-color: var(--magenta);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(161, 11, 86, 0.12);
}

.styler-item:active {
  cursor: grabbing;
  transform: scale(0.95);
}

.styler-item svg,
.styler-item img {
  width: 60px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 6px;
  display: block;
}

.styler-item img {
  filter: drop-shadow(0 0 1.5px rgba(0, 0, 0, 0.35));
}

.styler-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #555;
  display: block;
}

.styler-canvas-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.styler-canvas {
  flex: 1;
  min-height: 420px;
  background: var(--white);
  border-radius: 16px;
  border: 3px dashed rgba(161, 11, 86, 0.15);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.styler-canvas.drag-over {
  border-color: var(--magenta);
  background: rgba(255, 240, 244, 0.5);
}

.grid-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.quad-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: rgba(161, 11, 86, 0.28);
  z-index: 0;
  pointer-events: none;
}

.quad-tl { left: 32%; top: 33%; }
.quad-tr { left: 61%; top: 33%; }
.quad-bl { left: 32%; top: 70%; }
.quad-br { left: 61%; top: 70%; }

.court-tagline {
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  color: rgba(161, 11, 86, 0.42);
  z-index: 1;
  pointer-events: none;
}

.mannequin {
  position: absolute;
  left: 50%;
  top: 58px;
  transform: translateX(-50%);
  width: 175px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.mannequin svg {
  width: 100%;
  height: auto;
  display: block;
}

.styler-canvas-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.styler-canvas-hint span {
  font-size: 0.9rem;
  color: #bba9b5;
  font-style: italic;
}

.styler-canvas-hint.hidden {
  display: none;
}

.styler-canvas .canvas-piece {
  position: absolute;
  z-index: 3;
  cursor: move;
  touch-action: none;
}

.styler-canvas .canvas-piece img,
.styler-canvas .canvas-piece svg {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.14));
}

.styler-canvas .canvas-piece .piece-resize {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 2px solid var(--magenta);
  border-radius: 50%;
  cursor: nwse-resize;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}

.styler-canvas .canvas-piece:hover .piece-resize {
  opacity: 1;
}

.styler-canvas .canvas-piece .piece-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}

.styler-canvas .canvas-piece:hover .piece-remove {
  opacity: 1;
}

.styler-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 768px) {
  .styler-wrapper {
    flex-direction: column;
  }

  .styler-pieces {
    width: 100%;
    max-height: none;
  }

  .styler-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .styler-canvas {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .styler-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== COMMUNITY LOOKS ========== */

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.community-look {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.community-look:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(161, 11, 86, 0.12);
}

.community-look-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.community-look-image svg,
.community-look-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.community-look-info {
  padding: 14px 16px;
}

.community-look-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 2px;
}

.community-look-by {
  font-size: 0.75rem;
  color: #999;
}

.community-look-yours {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 3px dashed rgba(161, 11, 86, 0.15);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.community-look-yours:hover {
  border-color: var(--magenta);
  background: var(--pink-soft);
}

.community-yours-icon {
  font-size: 2.5rem;
  color: var(--magenta);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}

.community-yours-text {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

@media (max-width: 768px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .community-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ========== SHARE MODAL ========== */

.share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.share-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.share-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.share-modal-close:hover {
  color: var(--magenta);
}

.share-modal h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--magenta);
  margin-bottom: 8px;
}

.share-modal p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.share-modal-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.share-modal-input:focus {
  outline: none;
  border-color: var(--magenta);
}

.share-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* ========== SHARED LOOK PREVIEWS ========== */

.community-shared-preview {
  aspect-ratio: 1;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.community-shared-preview .shared-piece {
  position: absolute;
  width: 28%;
}

.community-shared-preview .shared-piece svg,
.community-shared-preview .shared-piece img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
}

.community-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #b9a7b3;
  font-style: italic;
  padding: 40px 0;
}

.community-look {
  position: relative;
}

.community-look-shared .look-delete {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(161, 11, 86, 0.85);
  color: var(--white);
  border: none;
  font-size: 15px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 5;
}

.community-look-shared:hover .look-delete {
  opacity: 1;
}

.community-look-shared .look-delete:hover {
  background: var(--magenta);
}

.community-shared-watermark {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  background: rgba(161, 11, 86, 0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: rgba(161, 11, 86, 0.5);
  font-family: var(--font-sans);
}

.community-shared-watermark span:first-child {
  font-weight: 500;
  color: var(--magenta);
}

/* ========== FOOTER ========== */

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer .logo img {
  filter: none;
}

.footer .logo-text {
  color: var(--white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--light-pink);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========== MOBILE NAV ========== */

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  transition: color 0.2s;
}

.mobile-nav a:hover {
  color: var(--magenta);
}

/* ========== ANIMATIONS ========== */

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

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

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-grid {
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .nav, .nav-icons {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 70vh;
  }

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

  .hero-collage {
    display: none;
  }

  .hero .container {
    display: block;
  }

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

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
  }

  .featured-post {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid.reverse {
    direction: ltr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input {
    border-right: 1.5px solid #e0e0e0;
    border-radius: 100px;
  }

  .newsletter-form button {
    border-radius: 100px;
  }
}
