/*
Theme Name: Orellie
Theme URI: https://orellie.nz
Author: Website Factory
Author URI: https://infynt.com
Description: A premium, modern WordPress + WooCommerce theme for the Orellie luxury earrings brand. Handcrafted polymer clay earrings designed in Aotearoa New Zealand.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: orellie
Tags: e-commerce, woocommerce, custom-header, custom-menu, featured-images, full-width-template

WooCommerce: 9.0+
*/

/* ═══════════════════════════════════════════════
   ORELLIE DESIGN SYSTEM
   Signature Pink: #fb6593
   ═══════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand */
  --orellie-pink: #fb6593;
  --orellie-pink-light: #fda4bf;
  --orellie-pink-bg: #ffe4e6;
  --orellie-pink-hover: #e8587f;
  --orellie-pink-shadow: rgba(251, 101, 147, 0.2);
  --orellie-pink-glow: rgba(251, 101, 147, 0.4);

  /* Neutrals */
  --bg: #fffcfd;
  --bg-secondary: #fdf2f4;
  --foreground: #222222;
  --muted: #71717a;
  --border: #e4e4e7;
  --card: #ffffff;
  --destructive: #ef4444;

  /* Typography */
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --section-py: 6rem;
  --section-py-lg: 8rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--foreground);
}

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

.text-primary {
  color: var(--orellie-pink);
}

.text-muted {
  color: var(--muted);
}

.text-foreground {
  color: var(--foreground);
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.uppercase {
  text-transform: uppercase;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: var(--radius-full);
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orellie-pink);
  color: #ffffff;
  box-shadow: 0 8px 30px var(--orellie-pink-shadow);
}

.btn-primary:hover {
  background: var(--orellie-pink-hover);
  box-shadow: 0 12px 40px var(--orellie-pink-glow);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  border-color: var(--orellie-pink);
  color: var(--orellie-pink);
  background: rgba(251, 101, 147, 0.05);
}

.btn-lg {
  padding: 0.875rem 2.5rem;
  font-size: 1rem;
  height: 3rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

/* Shimmer animation on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-150%) skewX(-20deg);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(150%) skewX(-20deg);
}

/* ── Badge / Pill ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(251, 101, 147, 0.2);
  background: rgba(251, 101, 147, 0.05);
  padding: 0.375rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orellie-pink);
}

.badge svg,
.badge img {
  width: 1rem;
  height: 1rem;
}

/* ═══════════════════════════════════════════════
   HEADER / NAVBAR
   ═══════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(228, 228, 231, 0.5);
  background: rgba(255, 252, 253, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: top 0.3s ease;
}

/* Fix overlap with WordPress admin bar */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--foreground);
  transition: color 0.3s;
}

.site-logo:hover {
  color: var(--orellie-pink);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop a {
  transition: color 0.3s;
}

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

.nav-desktop .nav-cta {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--orellie-pink);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 8px 30px var(--orellie-pink-shadow);
  transition: all 0.3s;
}

.nav-desktop .nav-cta:hover {
  background: var(--orellie-pink-hover);
}

.cart-icon {
  position: relative;
  padding: 0.5rem;
  border-radius: var(--radius-full);
  transition: background 0.3s;
}

.cart-icon:hover {
  background: var(--bg-secondary);
}

.cart-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--foreground);
  fill: none;
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--orellie-pink);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px var(--orellie-pink-shadow);
}

/* Mobile hamburger */
.hamburger {
  display: flex;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-full);
  transition: background 0.3s;
}

.hamburger:hover {
  background: var(--bg-secondary);
}

.hamburger svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--foreground);
  fill: none;
  stroke-width: 1.5;
}

.mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border-top: 1px solid rgba(228, 228, 231, 0.5);
  background: rgba(255, 252, 253, 0.95);
  backdrop-filter: blur(20px);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background 0.3s;
}

.mobile-menu a:hover {
  background: var(--bg-secondary);
}

.mobile-menu .nav-cta-mobile {
  margin: 0.5rem 1rem 0;
  padding: 0.75rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-full);
  background: var(--orellie-pink);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 30px var(--orellie-pink-shadow);
}

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

  .mobile-controls {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════
   HERO SECTION (front-page.php)
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   SPLIT HERO SECTION
   ═══════════════════════════════════════════════ */

.video-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.video-hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% center;
  /* Push model/face to the absolute right edge */
}

.video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, var(--bg) 25%, transparent 100%);
  /* Ultra-tight gradient for maximum video exposure */
  z-index: 2;
}

.video-hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.video-hero__content {
  max-width: 480px;
  /* Tighter text column */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.video-hero__content h1 {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.video-hero__content h1 .accent {
  color: var(--orellie-pink);
  font-style: italic;
  font-weight: 300;
}

.video-hero__desc {
  font-size: clamp(0.9rem, 3vw, 1.125rem);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 350px;
}

.video-hero__badge {
  background: rgba(251, 101, 147, 0.1);
  color: var(--orellie-pink);
  border: 1px solid rgba(251, 101, 147, 0.2);
  margin-bottom: 1.5rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
    width: auto;
  }
}

@media (max-width: 1023px) {
  .video-hero {
    min-height: 70vh;
  }

  .video-hero__overlay {
    background: linear-gradient(to right, var(--bg) 0%, var(--bg) 20%, transparent 100%);
    /* Ultra-tight mobile gradient */
  }

  .video-hero__content {
    max-width: 180px;
    /* Absolute minimum text width for face visibility */
  }

  .video-hero__content h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .video-hero {
    min-height: 90vh;
    padding: 0;
  }

  .video-hero__container {
    /* Remove grid to allow text to naturally sit on the left */
    display: block;
  }

  .video-hero__content {
    max-width: 600px;
    padding: 4rem 0;
  }

  .video-hero__media video {
    object-position: 50% center; /* Consistent with mobile success */
  }

  .video-hero__overlay {
    background: linear-gradient(to right, var(--bg) 0%, var(--bg) 40%, transparent 100%);
  }
}

/* ═══════════════════════════════════════════════
   FEATURES SECTION (3 numbered blocks)
   ═══════════════════════════════════════════════ */

.features {
  background: var(--bg-secondary);
  padding: var(--section-py) 0;
}

.features .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.features__image {
  display: flex;
  justify-content: center;
}

.features__image-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 400px;
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

.features__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(251, 101, 147, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orellie-pink);
  transition: all 0.3s;
  margin-top: 0.25rem;
}

.feature-item:hover .feature-number {
  background: var(--orellie-pink);
  color: #ffffff;
}

.feature-item h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.feature-item p {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .features {
    padding: var(--section-py-lg) 0;
  }

  .features .container {
    grid-template-columns: 1fr 1fr;
  }

  .features__image-wrap {
    height: 500px;
  }

  .features__image {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════
   SIGNATURE / PRODUCT GRID
   ═══════════════════════════════════════════════ */

.signature-grid {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.signature-grid__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.signature-grid__header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.signature-grid__header p {
  font-size: 1.125rem;
  color: var(--muted);
  font-weight: 300;
}

.signature-grid__header .view-all-desktop {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2rem;
}

/* Product Card */
.product-card {
  position: relative;
  cursor: pointer;
}

.product-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--bg-secondary);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease-out;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(251, 101, 147, 0);
  transition: background 0.5s;
}

.product-card:hover .product-card__image::after {
  background: rgba(251, 101, 147, 0.05);
}

/* Sale / stock badges */
.product-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  z-index: 2;
}

.product-badge {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.product-badge--sale {
  background: var(--orellie-pink);
  color: #fff;
  box-shadow: 0 2px 8px var(--orellie-pink-shadow);
}

.product-badge--low-stock {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 101, 147, 0.3);
  color: var(--orellie-pink);
}

/* Quick view pill */
.product-card__quickview {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .product-card__quickview {
  opacity: 1;
  transform: translateY(0);
}

.product-card__quickview span {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--foreground);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Product info row */
.product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-card__name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  letter-spacing: 0.025em;
  transition: color 0.3s;
}

.product-card:hover .product-card__name {
  color: var(--orellie-pink);
}

.product-card__category {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.25rem;
}

.product-card__price {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  flex-shrink: 0;
}

.product-card__price-original {
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: 0.125rem;
  text-align: right;
}

/* Mobile view-all button */
.signature-grid__mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .signature-grid__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .signature-grid__header .view-all-desktop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.3s;
    background: none;
    border: none;
  }

  .signature-grid__header .view-all-desktop:hover {
    color: var(--orellie-pink);
  }

  .signature-grid__mobile-cta {
    display: none;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }

  .signature-grid {
    padding: var(--section-py-lg) 0;
  }
}

/* ═══════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════ */

.cta-banner {
  background: var(--bg-secondary);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   TRUST SIGNALS
   ═══════════════════════════════════════════════ */

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.site-footer {
  background: var(--foreground);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

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

.footer-brand .site-logo {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--orellie-pink);
  background: rgba(251, 101, 147, 0.1);
  color: var(--orellie-pink);
}

.footer-social svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ═══════════════════════════════════════════════ */

/* Shop page */
.woocommerce-page .site-main {
  padding-top: 6rem;
}

.woocommerce .woocommerce-result-count {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
}

.woocommerce .woocommerce-ordering select {
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 2rem 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  background: var(--bg);
  appearance: none;
  cursor: pointer;
}

/* Product grid — WooCommerce native */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-2xl);
  margin-bottom: 1rem;
  transition: transform 0.7s ease-out;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.03);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 500;
  padding: 0 !important;
  color: var(--foreground);
  transition: color 0.3s;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
  color: var(--orellie-pink);
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--foreground) !important;
}

.woocommerce ul.products li.product .price del {
  color: var(--muted) !important;
  font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
}

/* Add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .checkout .button {
  font-family: var(--font-sans) !important;
  background: var(--orellie-pink) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-full) !important;
  padding: 0.75rem 2rem !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  box-shadow: 0 8px 30px var(--orellie-pink-shadow) !important;
  transition: all 0.3s !important;
  cursor: pointer !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--orellie-pink-hover) !important;
  box-shadow: 0 12px 40px var(--orellie-pink-glow) !important;
  transform: translateY(-1px);
}

/* Alt / outline buttons */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce .checkout-button,
.woocommerce #place_order {
  background: var(--orellie-pink) !important;
  color: #fff !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--orellie-pink-hover) !important;
}

/* ────────────────────────────────────────────────
   ABOUT SECTION
   ──────────────────────────────────────────────── */
.about-section {
  padding: 8rem 0;
  background-color: var(--card);
  overflow: hidden;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.about-section__content {
  max-width: 600px;
}

.about-section__content h2 {
  font-size: 3.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.about-section__text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-section__image {
  position: relative;
}

.image-frame {
  position: relative;
  padding-bottom: 125%; /* 4:5 aspect ratio */
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.image-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-section:hover .image-frame img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .about-section {
    padding: 6rem 0;
  }
  .about-section__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-section__content {
    order: 2;
    text-align: center;
    max-width: 100%;
  }
  .about-section__content .badge {
    margin-left: auto;
    margin-right: auto;
  }
  .about-section__image {
    order: 1;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ────────────────────────────────────────────────
   CONTACT PAGE
   ──────────────────────────────────────────────── */
.contact-page {
  padding: 10rem 0 8rem;
}

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

.contact-header h1 {
  font-size: 4rem;
  margin: 2rem 0;
}

.contact-form {
  background: var(--card);
  padding: 4rem;
  border-radius: 2.5rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.05);
  margin-bottom: 5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--background);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--orellie-pink);
  box-shadow: 0 0 0 4px rgba(255, 126, 179, 0.1);
}

.contact-success {
  text-align: center;
  padding: 6rem 4rem;
  background: var(--card);
  border-radius: 2.5rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-item {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  background: var(--secondary-light);
  border-radius: 2rem;
}

.info-icon {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .form-grid, .contact-info {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2.5rem;
  }
}

/* ────────────────────────────────────────────────
   GIFT CARDS PAGE
   ──────────────────────────────────────────────── */
.gift-cards-page {
  padding: 10rem 0 8rem;
}

.gift-cards-hero {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 6rem;
}

.gift-cards-hero h1 {
  font-size: 4rem;
  margin: 2rem 0;
}

.gift-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
}

.gift-card-preview {
  aspect-ratio: 1.6 / 1;
  background: linear-gradient(135deg, var(--orellie-pink), var(--orellie-pink-hover));
  border-radius: 2rem;
  padding: 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 40px 80px rgba(255, 126, 179, 0.3);
  position: relative;
  overflow: hidden;
}

.gift-card-preview::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: rgba(255,255,255,0.1);
  transform: rotate(30deg);
}

.card-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: -0.02em;
}

.card-amount {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
}

.card-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.gift-cards-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.feature-list {
  margin-bottom: 3rem;
}

.feature-list .feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0;
  background: none;
}

.status-box {
  background: var(--card);
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.status-box p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .gift-cards-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .gift-card-preview {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Sale badge */
.woocommerce span.onsale {
  background: var(--orellie-pink) !important;
  color: #fff !important;
  border-radius: var(--radius-full) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  padding: 0.375rem 0.75rem !important;
  min-height: auto !important;
  min-width: auto !important;
  line-height: 1.4 !important;
}

/* Star ratings */
.woocommerce .star-rating {
  color: var(--orellie-pink) !important;
}

/* Responsive product grid */
@media (min-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }
}

/* ── Single product page ── */
.woocommerce div.product {
  padding-top: 6rem;
}

.woocommerce div.product div.images {
  border-radius: var(--radius-3xl);
  overflow: hidden;
}

.woocommerce div.product div.images img {
  border-radius: var(--radius-3xl);
}

.woocommerce div.product .product_title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.woocommerce div.product p.price {
  font-family: var(--font-sans) !important;
  font-size: 2rem !important;
  font-weight: 600;
  color: var(--foreground) !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Quantity input */
.woocommerce .quantity .qty {
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  width: 5rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 2rem 0 1.5rem !important;
  list-style: none;
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: none !important;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-sans) !important;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted) !important;
  padding: 0.75rem 1rem !important;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--foreground) !important;
  border-bottom-color: var(--orellie-pink);
}

.woocommerce div.product .woocommerce-tabs .panel {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Cart page ── */
.woocommerce-cart .woocommerce table.cart {
  border: none !important;
  border-collapse: separate;
  border-spacing: 0;
}

.woocommerce table.cart td {
  border-top: 1px solid var(--border) !important;
  padding: 1.5rem 1rem !important;
  vertical-align: middle;
  font-family: var(--font-sans);
}

.woocommerce table.cart th {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 1rem !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

/* ── Checkout ── */
.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper textarea,
.woocommerce-checkout select {
  font-family: var(--font-sans) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.875rem !important;
  transition: border-color 0.3s !important;
}

.woocommerce-checkout .woocommerce-input-wrapper input:focus,
.woocommerce-checkout .woocommerce-input-wrapper textarea:focus {
  border-color: var(--orellie-pink) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(251, 101, 147, 0.1) !important;
}

.woocommerce form .form-row label {
  font-family: var(--font-sans) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: var(--foreground) !important;
}

/* ── Breadcrumbs ── */
.woocommerce .woocommerce-breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--muted);
  transition: color 0.3s;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--orellie-pink);
}

/* ── Notices ── */
.woocommerce .woocommerce-message {
  border-top-color: var(--orellie-pink) !important;
  font-family: var(--font-sans);
}

.woocommerce .woocommerce-message::before {
  color: var(--orellie-pink) !important;
}

.woocommerce .woocommerce-info {
  border-top-color: var(--orellie-pink) !important;
}

/* ── Pagination ── */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  font-family: var(--font-sans);
  border-radius: var(--radius-full) !important;
  border: 1px solid var(--border) !important;
  padding: 0.5rem 0.875rem !important;
  margin: 0 0.125rem;
  font-size: 0.8125rem;
  transition: all 0.3s;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--orellie-pink) !important;
  border-color: var(--orellie-pink) !important;
  color: #fff !important;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--orellie-pink) !important;
  color: var(--orellie-pink) !important;
  background: transparent !important;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.7s ease forwards;
}

.animate-fadeInUp-delay-1 {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.animate-fadeInUp-delay-2 {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.animate-fadeInUp-delay-3 {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-fadeInUp-delay-4 {
  animation: fadeInUp 0.7s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Help Pages & Legal ── */
.page-header {
  padding: 8rem 0 5rem;
  background: var(--bg-secondary);
  text-align: center;
  margin-bottom: 5rem;
}

.page-header__content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.page-header__line {
  width: 60px;
  height: 2px;
  background: var(--orellie-pink);
  margin: 0 auto;
}

.page-content {
  max-width: 800px;
  margin: 0 auto 8rem;
}

.entry-content {
  font-family: var(--font-sans);
  color: var(--foreground);
  line-height: 1.8;
  font-size: 1.125rem;
}

.entry-content h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin: 0 0 2rem;
}

.entry-content h2 {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  margin: 3.5rem 0 1.5rem;
  color: var(--foreground);
}

.entry-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--foreground);
}

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

.entry-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.entry-content li {
  margin-bottom: 0.75rem;
  list-style: disc;
}

.entry-content hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 4rem 0;
}

/* ────────────────────────────────────────────────
   SOCIAL CONNECT SECTION
   ──────────────────────────────────────────────── */
.social-connect {
  padding: 4rem 0;
  background: var(--background);
  border-top: 1px solid var(--border);
}

.social-buttons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: white !important;
  text-decoration: none !important;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.social-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.social-btn__icon svg {
  width: 100%;
  height: 100%;
}

/* Instagram Colors */
.social-btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook Colors */
.social-btn--facebook {
  background: #1877F2;
}

/* TikTok Colors */
.social-btn--tiktok {
  background: #000000;
  position: relative;
  overflow: hidden;
}

.social-btn--tiktok::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ff0050 0%, #00f2ea 100%);
  opacity: 0.2;
}

@media (max-width: 1024px) {
  .social-buttons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .social-btn {
    padding: 1.5rem;
  }
}

html {
  scroll-behavior: smooth !important;
}

/* Anchor offsets for fixed header */
#about {
  scroll-margin-top: 120px;
}