/*
Theme Name: Hello Kitty Pants
Theme URI: https://hellokittypants.com
Author: HelloKittyPants
Author URI: https://hellokittypants.com
Description: A lightweight, SEO-optimized theme for Hello Kitty Pants - the ultimate destination for kawaii pajama pants.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hellokittypants
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images

Hello Kitty Pants Theme - Built for speed and conversions.
*/

:root {
  --color-primary: #D4538A;
  --color-secondary: #E8A0B8;
  --color-accent: #FF1493;
  --color-background: #FFF5F8;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-success: #4CAF50;
  --color-error: #F44336;
  --color-border: #eee;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1em;
}

ul, ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

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

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Header */
.site-header {
  background: var(--color-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-branding,
.site-branding a,
.site-logo,
.custom-logo-link {
  display: inline-block !important;
  max-width: 150px !important;
  max-height: 60px !important;
  overflow: hidden !important;
}

.site-logo img,
.site-branding img,
.custom-logo,
.site-branding .custom-logo-link img,
.header-inner img,
img.custom-logo,
img.wp-image-24 {
  height: 60px !important;
  width: auto !important;
  max-height: 60px !important;
  max-width: 150px !important;
  object-fit: contain !important;
}

.site-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Navigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

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

/* Cart Icon */
.cart-icon {
  position: relative;
  font-size: 1.5rem;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text);
}

/* ========================================
   HERO SECTION - FULL SCREEN SPLIT
   ======================================== */

.hero-section {
  min-height: 100vh;
  max-height: 900px;
  display: flex;
}

.hero-container {
  display: flex;
  width: 100%;
  min-height: 100vh;
  max-height: 900px;
}

/* Left Side - Content */
.hero-content {
  width: 50%;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFEBF0 100%);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-section .hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  max-width: 480px;
  margin: 0 0 32px 0;
}

/* Hero Price Block */
.hero-section .hero-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-price-current {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
}

.hero-price-original {
  font-size: 24px;
  color: #767676;
  text-decoration: line-through;
}

.hero-price-badge {
  background: #22c55e;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

/* Hero CTA Button */
.hero-cta {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 40px;
  width: fit-content;
}

.hero-cta:hover {
  background: #ff4da6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 105, 180, 0.5);
}

/* Hero Trust Badges */
.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.hero-trust-item svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  flex-shrink: 0;
}

/* Right Side - Image */
.hero-image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

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

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 235, 240, 0.5) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe0eb 0%, #ffcce0 100%);
}

.hero-image-placeholder svg {
  width: 120px;
  height: 120px;
  stroke: #D4538A;
  opacity: 0.3;
}

/* Hero Animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: heroFadeInUp 0.6s ease forwards;
  opacity: 0;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-section .hero-subtitle { animation-delay: 0.3s; }
.hero-section .hero-price { animation-delay: 0.4s; }
.hero-cta { animation-delay: 0.5s; }
.hero-trust-badges { animation-delay: 0.6s; }

/* Hero Responsive - Tablet */
@media (max-width: 1024px) {
  .hero-content {
    padding: 60px 40px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-price-current {
    font-size: 36px;
  }
}

/* Hero Responsive - Mobile */
@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    max-height: none;
  }

  .hero-container {
    flex-direction: column-reverse;
    min-height: auto;
    max-height: none;
  }

  .hero-content {
    width: 100%;
    padding: 50px 24px;
    text-align: center;
    align-items: center;
  }

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

  .hero-title {
    font-size: 32px;
    text-align: center;
  }

  .hero-section .hero-subtitle {
    text-align: center;
    max-width: 100%;
  }

  .hero-section .hero-price {
    justify-content: center;
  }

  .hero-price-current {
    font-size: 32px;
  }

  .hero-price-original {
    font-size: 20px;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }

  .hero-trust-badges {
    align-items: center;
  }

  .hero-image {
    width: 100%;
    height: 50vh;
    min-height: 300px;
  }

  .hero-image::before {
    display: none;
  }
}

/* Legacy Trust Badges (for other pages) */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-success);
  fill: none;
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card-content {
  padding: 1.5rem;
}

.product-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-price-original {
  text-decoration: line-through;
  color: var(--color-text-light);
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

/* Sections */
.section {
  padding: 4rem 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--color-text-light);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--color-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--color-primary);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--color-text-light);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: 4rem 1rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col a {
  color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.payment-icons img {
  height: 30px;
  opacity: 0.7;
}

/* Blog Posts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  padding: 1rem 0 3rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,105,180,0.12);
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.blog-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.blog-card-title a {
  color: var(--color-text);
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--color-primary);
}

.blog-card-excerpt {
  color: var(--color-text-light);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
  flex: 1;
}

.blog-card-readmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.blog-card-readmore:hover {
  color: var(--color-accent);
}

/* Archive header */
.archive-header {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.archive-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.archive-description {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

/* Blog responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 580px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .blog-card-content {
    padding: 1rem 1.25rem 1.25rem;
  }
}
/* WooCommerce Overrides */
.woocommerce-page .site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  transition: all var(--transition) !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  background-color: var(--color-accent) !important;
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
  background-color: var(--color-accent) !important;
}

/* Single product layout is handled by woocommerce.css */

.woocommerce div.product .woocommerce-tabs {
  margin-top: 3rem;
}

/* Size Selector */
.variations select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  width: 100%;
  max-width: 300px;
}

/* Quantity */
.woocommerce .quantity .qty {
  padding: 0.75rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  width: 80px;
  text-align: center;
}

/* Reviews */
.woocommerce #reviews {
  margin-top: 3rem;
}

.woocommerce #reviews .star-rating {
  color: #FFD700;
}

/* Cart Page */
.woocommerce-cart-form {
  margin-bottom: 2rem;
}

.woocommerce table.cart {
  border-collapse: collapse;
}

.woocommerce table.cart td,
.woocommerce table.cart th {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
}

/* Checkout */
.woocommerce-checkout {
  max-width: 1000px;
  margin: 0 auto;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  width: 100%;
}

.woocommerce form .form-row input.input-text:focus {
  border-color: var(--color-primary);
  outline: none;
}

/* Responsive */
@media (max-width: 768px) {
  html {
    font-size: 18px;
  }

  /* Mobile header: Logo left, hamburger + cart grouped right */
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .site-branding {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    display: block;
    order: 2;
    margin-left: auto;
  }

  .cart-icon {
    order: 3;
    margin-left: 15px;
  }

  .main-nav {
    order: 4;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow);
    padding: 1rem;
    width: 100%;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--color-border);
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
  }

  .single-product .product {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.hidden { display: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Announcement Bar */
.announcement-bar {
  background: #D4538A !important;
  color: white !important;
  text-align: center;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 700 !important;
}
body:not(.woocommerce-checkout) .announcement-bar .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Social Proof Bar */
.social-proof-bar {
  background: var(--color-primary);
  color: white;
  padding: 12px 0;
  text-align: center;
}
.proof-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  background: var(--color-background);
  padding: 60px 0;
  text-align: center;
}
.testimonials .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.testimonials h2 {
  margin-bottom: 10px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
}
.testimonial-card .stars {
  font-size: 18px;
  margin-bottom: 15px;
  color: #FFD700;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.testimonial-card .customer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .customer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.testimonial-card .customer strong {
  display: block;
}
.testimonial-card .customer span {
  font-size: 13px;
  color: #666;
}

/* Instagram Section */
.instagram-section {
  padding: 60px 0;
  text-align: center;
}
.instagram-section .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 30px 0;
}
.instagram-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Button Outline Style */
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

/* ===========================================
   CRITICAL OVERRIDES - DO NOT REMOVE
   Version: 20260121-fix1
   =========================================== */

/* Container fix */
body:not(.woocommerce-checkout) .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

/* Fix announcement bar */
.announcement-bar {
  background: #D4538A !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding: 12px 10px !important;
  font-size: 14px !important;
}

/* Fix header layout */
.header-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 15px 20px !important;
}
body:not(.woocommerce-checkout) .header-inner {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Fix logo size */
.site-branding {
  max-width: 120px !important;
  flex-shrink: 0 !important;
}
.site-branding a,
.custom-logo-link {
  display: block !important;
  max-width: 120px !important;
}
.site-branding img,
.custom-logo,
.custom-logo-link img,
img.custom-logo {
  height: 50px !important;
  width: auto !important;
  max-width: 120px !important;
  max-height: 50px !important;
  object-fit: contain !important;
}

/* Fix navigation */
.main-nav a,
.main-nav li a,
.main-nav ul li a {
  font-weight: 700 !important;
}

/* TESTIMONIALS GRID - 3 COLUMNS */
.testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  width: 100% !important;
}
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
}

/* INSTAGRAM GRID - 6 COLUMNS */
.instagram-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 10px !important;
  width: 100% !important;
}
@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* FEATURES GRID - 3 COLUMNS */
.features-grid,
.feature-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  width: 100% !important;
}
@media (max-width: 768px) {
  .features-grid,
  .feature-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================
   HOMEPAGE STYLES - UPDATED
   ======================================== */

/* Feature Cards */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.25rem;
  background: var(--color-background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
  fill: none;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.feature-card p {
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Customer Avatar (Testimonials) */
.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4538A 0%, #ff8fc4 100%);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customer-info {
  text-align: left;
}

.customer-info strong {
  display: block;
  color: var(--color-text);
}

.customer-info span {
  font-size: 0.8125rem;
  color: #666;
}

/* Social Section */
.social-section {
  padding: 60px 0;
  text-align: center;
  background: var(--color-background);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  border-radius: 50px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
  color: var(--color-primary);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #D4538A 0%, #ff4da6 100%);
  color: white;
  text-align: center;
  padding: 80px 1rem;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.95;
  font-size: 1.125rem;
}

.btn-white {
  background: white;
  color: var(--color-primary);
  padding: 16px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

/* Trust Badge SVG stroke color fix */
.trust-badge svg {
  stroke: var(--color-success);
  fill: none;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section {
    padding: 60px 1rem;
  }
}

/* ========================================
   TESTIMONIALS WITH PHOTOS
   ======================================== */

.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
}

.testimonial-photo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f9f9f9;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo img {
  transform: scale(1.05);
}

.testimonial-content {
  padding: 25px;
}

.testimonial-content .stars {
  font-size: 18px;
  margin-bottom: 15px;
  color: #FFD700;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--color-text);
}

.testimonial-content .customer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* CHECKOUT FULL WIDTH OVERRIDE */
body.woocommerce-checkout .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.woocommerce-checkout .header-inner {
  max-width: 100% !important;
  width: 100% !important;
  padding: 15px 32px !important;
  margin: 0 !important;
}
