/* ========================================
   THE SAVVY FOOT - Global Styles
   ======================================== */

:root {
  --primary: #4a4a4a;
  --accent: #c9a0a0;
  --accent-soft: #d4b5b5;
  --cream: #faf9f7;
  --warm-white: #fffefb;
  --text: #4a4a4a;
  --text-light: #7a7a7a;
  --gradient-1: linear-gradient(135deg, #c9a0a0 0%, #d4b5b5 50%, #e0c5c5 100%);
  --gradient-2: linear-gradient(180deg, #faf9f7 0%, #fff 100%);
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 40px rgba(201,160,160,0.2);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Background Elements
   ======================================== */

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--gradient-2);
  z-index: -2;
}

.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

.bg-blob-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.bg-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-soft);
  bottom: 20%;
  left: -100px;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========================================
   Navigation
   ======================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--cream);
  border: 1px solid #e8e4e0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

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

.nav-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.social-icon:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Outfit', sans-serif;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 20px rgba(201, 160, 160, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 160, 160, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.1);
}

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

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
}

.hero-content {
  max-width: 650px;
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary);
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero h1 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-image {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.hero-image-container {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gradient-1);
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat {
  padding: 1rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ========================================
   Page Headers
   ======================================== */

.page-header {
  padding: 10rem 4rem 4rem;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Section Styles
   ======================================== */

section {
  padding: 6rem 4rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ========================================
   Products
   ======================================== */

.products-section {
  background: white;
  border-radius: var(--radius);
  margin: 0 2rem;
  box-shadow: var(--shadow-soft);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-image {
  width: 100%;
  height: 200px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

a.product-image:hover img {
  transform: scale(1.1);
}

.product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-image img[src=""], 
.product-image img:not([src]),
.product-image img[onerror] {
  display: none;
}

.product-image {
  background: white;
  position: relative;
}

.product-image::after {
  content: attr(data-category);
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  display: none;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.product-link:hover {
  gap: 0.75rem;
}

/* Categories Filter */
.categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid rgba(0,0,0,0.1);
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ========================================
   Blog
   ======================================== */

.blog-section {
  background: var(--gradient-2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.blog-image {
  height: 220px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Single Blog Post */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.blog-post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.blog-post-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
}

.blog-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 2rem 0 1rem;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.blog-post-content a {
  color: var(--accent);
  text-decoration: underline;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
}

/* ========================================
   Newsletter
   ======================================== */

.newsletter-section {
  background: var(--primary);
  border-radius: var(--radius);
  margin: 0 2rem;
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.1;
}

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 1rem;
}

.newsletter-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
}

.newsletter-form button {
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  background: var(--gradient-1);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* ========================================
   About Section
   ======================================== */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-main {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.about-badge-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.credentials {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.credential-icon {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.credential-text {
  font-size: 0.9rem;
}

.credential-text strong {
  display: block;
  color: var(--primary);
}

.credential-text span {
  color: var(--text-light);
}

/* ========================================
   Footer
   ======================================== */

footer {
  background: var(--primary);
  color: white;
  padding: 4rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

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

/* Affiliate Disclosure */
.disclosure {
  text-align: center;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* ========================================
   Responsive
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  nav {
    padding: 1rem 2rem;
  }

  .hero {
    flex-direction: column;
    padding: 7rem 2rem 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin-top: 3rem;
  }

  section {
    padding: 4rem 2rem;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-socials {
    gap: 0.5rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .hero {
    padding: 6rem 1.5rem 2rem;
    min-height: auto;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image-container {
    padding: 1.5rem;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .products-section,
  .newsletter-section {
    margin: 0 1rem;
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .product-image {
    height: 180px;
  }

  .product-name {
    font-size: 1.2rem;
  }

  .product-desc {
    font-size: 0.9rem;
  }

  .categories {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .category-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

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

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-title {
    font-size: 1.2rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }

  .about-section {
    gap: 2rem;
  }

  .about-content h2 {
    font-size: 1.75rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .about-badge {
    bottom: -10px;
    right: 10px;
    padding: 1rem 1.5rem;
  }

  .about-badge-number {
    font-size: 1.5rem;
  }

  .credentials {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-section {
    padding: 3rem 1.5rem;
  }

  .newsletter-section h2 {
    font-size: 1.75rem;
  }

  .newsletter-section p {
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0.75rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    padding: 1rem;
  }

  footer {
    padding: 3rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-title {
    margin-bottom: 1rem;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
  }

  .disclosure {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .page-header {
    padding: 7rem 1.5rem 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  /* Blog post page */
  .blog-post {
    padding: 6rem 1.5rem 3rem;
  }

  .blog-post-header h1 {
    font-size: 1.75rem;
  }

  .blog-post-meta {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .blog-post-content {
    font-size: 1rem;
  }

  .blog-post-content h2 {
    font-size: 1.5rem;
  }

  .blog-post-content h3 {
    font-size: 1.2rem;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .nav-socials {
    gap: 0.25rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon svg {
    width: 14px;
    height: 14px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .products-section,
  .newsletter-section {
    margin: 0 0.5rem;
    padding: 1.5rem 1rem;
  }

  .product-card {
    padding: 1.25rem;
  }
}

/* ==================== */
/* GET READY FOR SPRING */
/* ==================== */

.spring-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.spring-banner {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e1bee7 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.spring-banner::before {
  content: '🌷🌸🌼';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 2rem;
  opacity: 0.6;
}

.spring-banner::after {
  content: '🌻🌺🌹';
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  font-size: 2rem;
  opacity: 0.6;
}

.spring-tag {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.spring-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.spring-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.spring-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.spring-product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.spring-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(201, 160, 160, 0.25);
}

.spring-product-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

a.spring-product-image:hover {
  transform: scale(1.02);
}

a.spring-product-image:hover img {
  transform: scale(1.05);
}

.spring-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.spring-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.spring-product-info {
  padding: 1.25rem;
  text-align: center;
}

.spring-product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.spring-product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.spring-product-info .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
}

/* Spring section responsive */
@media (max-width: 1024px) {
  .spring-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .spring-section {
    padding: 2rem 1rem;
  }

  .spring-banner {
    padding: 2rem 1.5rem;
  }

  .spring-banner::before,
  .spring-banner::after {
    font-size: 1.5rem;
  }

  .spring-products {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spring-product-image {
    height: 180px;
  }
}

/* ==================== */
/* EMAIL POPUP MODAL    */
/* ==================== */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.popup-close:hover {
  color: var(--text);
}

.popup-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.popup-content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.popup-content > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup-form input {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.popup-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.popup-form .btn {
  width: 100%;
}

.popup-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* ==================== */
/* SHOE QUIZ MODAL      */
/* ==================== */

.quiz-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-overlay.active .quiz-content {
  transform: scale(1) translateY(0);
}

.quiz-progress {
  height: 4px;
  background: #e5e5e5;
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 4px;
  width: 20%;
  transition: width 0.4s ease;
}

.quiz-step {
  display: none;
  text-align: center;
}

.quiz-step.active {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.quiz-step h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.quiz-step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.quiz-step > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f8f8f8;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-size: 1rem;
  color: var(--text);
}

.quiz-option:hover {
  background: #f0f0f0;
  border-color: var(--accent-soft);
}

.quiz-option.selected {
  background: linear-gradient(135deg, rgba(201, 160, 160, 0.15), rgba(212, 181, 181, 0.15));
  border-color: var(--accent);
}

.quiz-option-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.quiz-results-intro {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.quiz-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quiz-result-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f8f8;
  border-radius: 12px;
  text-align: left;
}

.quiz-result-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
}

.quiz-result-info {
  flex: 1;
}

.quiz-result-info h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.quiz-result-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem !important;
  font-size: 0.8rem !important;
}

.quiz-cta {
  padding-top: 1rem;
  border-top: 1px solid #e5e5e5;
}

.quiz-cta p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* ==================== */
/* FLOATING QUIZ BUTTON */
/* ==================== */

.quiz-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--accent), #b88a8a);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 160, 160, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 0.95rem;
  font-weight: 600;
}

.quiz-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 160, 160, 0.5);
}

.quiz-trigger-icon {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .popup-content,
  .quiz-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .quiz-result-card {
    flex-direction: column;
    text-align: center;
  }

  .quiz-result-card img {
    width: 100px;
    height: 100px;
  }

  .quiz-trigger {
    bottom: 1rem;
    right: 1rem;
    padding: 0.875rem 1.25rem;
    font-size: 0.85rem;
  }

  .quiz-trigger-text {
    display: none;
  }

  .quiz-trigger-icon {
    font-size: 1.5rem;
  }
}

/* ==================== */
/* INSTAGRAM FEED       */
/* ==================== */

.instagram-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.instagram-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

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

.instagram-placeholder p {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0,0,0,0.6);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item:hover .instagram-placeholder {
  transform: scale(1.05);
}

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

@media (max-width: 600px) {
  .instagram-section {
    padding: 2rem 1rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .instagram-placeholder span {
    font-size: 2rem;
  }

  .instagram-placeholder p {
    font-size: 0.75rem;
  }
}

/* ==================== */
/* ASK DR. JEN BUTTON   */
/* ==================== */

.ask-drjen-trigger {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
}

.ask-drjen-btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 600;
}

.ask-drjen-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.ask-drjen-icon {
  font-size: 1.25rem;
}

.ask-drjen-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 0.5rem;
  margin-bottom: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 200px;
}

.ask-drjen-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ask-drjen-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: var(--text);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease;
  font-size: 0.95rem;
}

.ask-drjen-option:hover {
  background: #f5f5f5;
}

.ask-drjen-option span {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .ask-drjen-trigger {
    bottom: 1rem;
    left: 1rem;
  }

  .ask-drjen-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.85rem;
  }

  .ask-drjen-text {
    display: none;
  }

  .ask-drjen-icon {
    font-size: 1.5rem;
  }

  .ask-drjen-menu {
    min-width: 180px;
  }
}

/* ========================================
   Blog Post Page Styles
   ======================================== */

.blog-post-page {
  padding: 120px 5% 80px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-content {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.post-header {
  padding: 3rem 3rem 2rem;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.post-category-tag {
  display: inline-block;
  background: var(--gradient-1);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.post-body {
  padding: 2.5rem 3rem;
}

.post-body .lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
}

.post-body h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 2rem 0 0.75rem;
  font-weight: 600;
}

.post-body p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: var(--text);
}

.post-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.post-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.post-body .btn {
  margin: 0.5rem 0 1.5rem;
}

.post-cta {
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-sm);
  text-align: center;
  margin: 2.5rem 0;
}

.post-cta h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 0.5rem !important;
}

.post-cta p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 3rem;
  background: var(--cream);
  border-top: 1px solid #f0f0f0;
}

.post-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.post-author p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .blog-post-page {
    padding: 100px 4% 60px;
  }
  
  .post-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .post-body {
    padding: 1.5rem;
  }
  
  .post-author {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
}
