/*
Theme Name: PawfectStudio
Theme URI: https://pawfectstudio.com
Author: PawfectStudio Team
Author URI: https://pawfectstudio.com
Description: A cute, feminine, anime-inspired fursuit e-commerce theme with pink/purple color scheme. WooCommerce-ready with deep Customizer integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pawfectstudio
Tags: e-commerce, colorful, custom-colors, custom-logo, featured-images, translation-ready, woocommerce, two-columns, right-sidebar
*/

/* ===================================================================
   PawfectStudio Design System
   =================================================================== */

:root {
  /* Brand Colors */
  --pink-primary: #F8A4C8;
  --pink-light: #FBCFE0;
  --pink-pale: #FDE8F0;
  /* 可点控件用的深粉：--pink-primary 配白字对比度只有 1.89，远低于 WCAG 要求的 4.5，
     按钮上的字几乎看不清。以下两个色同色相（约 335°）只是加深，配白字分别为 5.9 / 8.1。
     仅用于按钮等可点控件；装饰性粉色表面（页头、渐变）仍用 --pink-primary。 */
  --pink-cta: #C2185B;
  --pink-cta-hover: #A0144B;
  --lavender: #C4B5FD;
  --lavender-light: #DDD6FE;
  --lavender-deep: #A78BFA;
  --purple-accent: #8B5CF6;
  --cream: #FFFBEB;

  /* Text Colors */
  --text-primary: #1F1F2E;
  --text-secondary: #6B6B80;
  --text-muted: #A1A1B5;

  /* Dark surfaces */
  --dark-bg: #2A2A3E;
  --dark-surface: #35354A;

  /* Status */
  --success: #34D399;
  --warning: #FBBF24;
  --danger: #EF4444;
  --black: #0A0A0A;
  --white: #FFFFFF;

  /* Backgrounds */
  --bg-main: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-soft: #FDE8F0;
  --bg-lavender: #DDD6FE;

  /* Borders */
  --border-color: #FDE8F0;
  --border-lavender: #DDD6FE;

  /* Typography */
  --font-heading: 'Quicksand', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-accent: 'Pacifico', cursive;
  --font-size-base: 15px;
  --line-height-base: 1.6;

  /* Spacing & Shape */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
  --container-width: 1280px;
  --section-padding: 80px;
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-category: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-category-hover: 0 8px 28px rgba(248,164,200,0.25);
  --shadow-nav: 0 2px 12px rgba(0,0,0,0.08);
}

/* ===================== Reset & Base ===================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

a {
  color: var(--pink-primary);
  text-decoration: none;
  transition: color 0.3s var(--ease-smooth);
}

a:hover {
  color: var(--lavender-deep);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===================== Layout ===================== */

.container-pawfect {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px) {
  .container-pawfect {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1280px) {
  .container-pawfect {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section-padding {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
}

.section-padding-sm {
  padding-top: 48px;
  padding-bottom: 48px;
}

.bg-soft { background-color: var(--bg-soft); }
.bg-lavender { background-color: var(--bg-lavender); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark-bg); }

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

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--pink-cta);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--pink-cta-hover);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(248,164,200,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--pink-primary);
  padding: 10px 26px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--pink-primary);
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--pink-primary);
  color: #fff;
}

.btn-cta-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--purple-accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.btn-cta-purple:hover {
  background-color: var(--lavender-deep);
  color: #fff;
  box-shadow: 0 6px 24px rgba(139,92,246,0.35);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
}

/* ===================== Section Title ===================== */

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.section-title .title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.section-title .title-line {
  height: 2px;
  background: var(--pink-primary);
  flex: 1;
  max-width: 120px;
}

.section-title .title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title .paw-icon {
  width: 20px;
  height: 20px;
  color: var(--pink-primary);
  margin-bottom: 4px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--pink-primary);
  text-align: center;
  line-height: 1.2;
}

.section-title .subtitle {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 4px;
}

/* ===================== Announcement Bar ===================== */

.announcement-bar {
  width: 100%;
  height: 40px;
  background: linear-gradient(to right, var(--lavender), var(--lavender-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 50;
}

.announcement-bar p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 0 40px;
}

.announcement-bar p strong {
  font-weight: 700;
}

.announcement-bar .dismiss-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.announcement-bar .dismiss-btn:hover {
  color: #fff;
}

.announcement-bar .dismiss-btn svg {
  width: 20px;
  height: 20px;
}

.announcement-bar.hidden {
  display: none;
}

/* ===================== Navbar ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background-color: var(--pink-primary);
  transition: box-shadow 0.3s var(--ease-smooth);
}

.site-header.scrolled {
  box-shadow: var(--shadow-nav);
}

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

.site-header .logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header .logo-icon {
  width: 28px;
  height: 28px;
  color: #fff;
}

.site-header .logo-text {
  font-family: var(--font-accent);
  font-size: 22px;
  color: #fff;
}

.site-header .logo-img {
  max-height: 48px;
  width: auto;
}

/* Nav container - supports both ul menu and fallback links */
.site-header .nav-links {
  display: none;
  align-items: center;
  gap: 24px;
  position: relative;
}

.site-header .nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.site-header .nav-links ul li {
  position: relative;
}

.site-header .nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.site-header .nav-links a:hover,
.site-header .nav-links a.active {
  opacity: 1;
  color: #fff;
}

.site-header .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 9999px;
}

/* Dropdown arrow indicator */
.site-header .nav-links ul li.menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  opacity: 0.7;
  transition: transform 0.2s;
}

.site-header .nav-links ul li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown menu */
.site-header .nav-links ul ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 12px 0 8px;
  min-width: 220px;
  gap: 0;
  flex-direction: column;
  align-items: stretch;
  margin-top: 0;
  z-index: 100;
}

.site-header .nav-links ul li.menu-item-has-children:hover > ul.sub-menu {
  display: flex;
  animation: dropdown-fade 0.25s var(--ease-out-expo);
}

@keyframes dropdown-fade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.site-header .nav-links ul ul.sub-menu li {
  width: 100%;
}

.site-header .nav-links ul ul.sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
  opacity: 1;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}

.site-header .nav-links ul ul.sub-menu a:hover {
  background: var(--pink-pale);
  color: var(--pink-primary);
}

.site-header .nav-links ul ul.sub-menu a::after {
  display: none;
}

/* Add a small triangle on top of dropdown */
.site-header .nav-links ul ul.sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  z-index: -1;
}

.site-header .header-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}

.site-header .icon-btn:hover {
  transform: scale(1.1);
}

.site-header .icon-btn svg {
  width: 20px;
  height: 20px;
}

.site-header .cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--danger);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header .hamburger {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header .hamburger svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 992px) {
  .site-header .nav-links {
    display: flex;
  }
  .site-header .icon-btn.desktop-only {
    display: flex;
  }
  .site-header .hamburger {
    display: none;
  }
}

.site-header .icon-btn.desktop-only {
  display: none;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.active {
  display: flex;
}

.search-overlay .search-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 90%;
  max-width: 560px;
  box-shadow: var(--shadow-card-hover);
}

.search-overlay .search-box form {
  display: flex;
  gap: 8px;
}

.search-overlay .search-box input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 2px solid var(--border-lavender);
  border-radius: var(--radius);
  font-size: 15px;
}

.search-overlay .search-box input:focus {
  outline: none;
  border-color: var(--pink-primary);
}

.search-overlay .search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ===================== Mobile Drawer ===================== */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  z-index: 70;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer .drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--pink-pale);
}

.mobile-drawer .drawer-header .logo-text {
  font-family: var(--font-accent);
  font-size: 20px;
  color: var(--pink-primary);
}

.mobile-drawer .drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-drawer .drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.mobile-drawer .drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s, color 0.2s;
}

.mobile-drawer .drawer-nav a:hover,
.mobile-drawer .drawer-nav a.active {
  color: var(--pink-primary);
  background: var(--pink-pale);
}

.mobile-drawer .drawer-nav a svg {
  width: 20px;
  height: 20px;
}

/* ===================== Hero Banner ===================== */

.hero-banner {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--black);
}

@media (min-width: 768px) {
  .hero-banner {
    height: 500px;
  }
}

.hero-banner .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ken-burns 8s ease-out forwards;
}

@keyframes ken-burns {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-banner .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 60%);
}

.hero-banner .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .hero-banner .hero-content {
    padding-bottom: 64px;
  }
}

.hero-banner h1 {
  font-family: var(--font-accent);
  font-size: clamp(36px, 6vw, 60px);
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
}

.hero-banner .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 24px;
  text-align: center;
}

/* ===================== Category Cards ===================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
  }
}

@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 28px;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card .cat-img-wrap {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-category);
  transition: all 0.35s var(--ease-smooth);
}

.category-card:hover .cat-img-wrap {
  box-shadow: var(--shadow-category-hover);
  transform: scale(1.06);
}

.category-card .cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.category-card:hover .cat-img-wrap img {
  transform: scale(1.05);
}

.category-card .cat-name {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--pink-primary);
  text-align: center;
}

@media (min-width: 768px) {
  .category-card .cat-name {
    font-size: 22px;
  }
}

/* ===================== Filter Tabs ===================== */

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-tabs button {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid var(--pink-primary);
  background: #fff;
  color: var(--pink-primary);
  cursor: pointer;
}

/* Tabs are multi-select, so hover must stay distinct from the selected fill. */
.filter-tabs button:hover {
  background: var(--pink-pale);
  color: var(--pink-primary);
}

.filter-tabs button.active,
.filter-tabs button.active:hover {
  background: var(--pink-primary);
  color: #fff;
}

/* ===================== Product Grid ===================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================== Product Card ===================== */

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

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

.product-card .product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fafafa;
}

.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

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

.product-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s;
  cursor: pointer;
  z-index: 5;
}

.product-card .wishlist-btn:hover {
  transform: scale(1.1);
}

.product-card .wishlist-btn svg {
  width: 16px;
  height: 16px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.product-card .wishlist-btn.active svg {
  color: var(--danger);
  fill: var(--danger);
}

.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
  pointer-events: auto;
}

.product-card .product-overlay .btn-sm {
  pointer-events: auto;
}

.product-card .product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-card .product-title a {
  color: inherit;
}

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

.product-card .product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.product-card .price-current {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.product-card .price-original {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card .sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 5;
}

/* WooCommerce product card markup adjustment */
.woocommerce ul.products li.product .product-card {
  margin: 0;
}

/* ===================== Suitable For You ===================== */

.suitable-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .suitable-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.suitable-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: block;
}

.suitable-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

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

.suitable-card .label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--pink-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s;
}

.suitable-card:hover .label {
  transform: scale(1.02);
}

/* ===================== Promo Cards (Recommended) ===================== */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 992px) {
  .promo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-category);
  transition: all 0.3s var(--ease-smooth);
  display: block;
}

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

.promo-card .promo-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.promo-card .promo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.promo-card:hover .promo-img-wrap img {
  transform: scale(1.05);
}

.promo-card .promo-label {
  height: 48px;
  background: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card .promo-label span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* ===================== Commission CTA ===================== */

.commission-cta {
  padding: 96px 0;
  background: var(--lavender-light);
}

@media (min-width: 768px) {
  .commission-cta {
    padding: 128px 0;
  }
}

.commission-cta .commission-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 992px) {
  .commission-cta .commission-inner {
    flex-direction: row;
    gap: 64px;
  }
}

.commission-cta .commission-images {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 992px) {
  .commission-cta .commission-images {
    width: 55%;
  }
}

.commission-cta .commission-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.commission-cta .commission-text {
  width: 100%;
  text-align: center;
}

@media (min-width: 992px) {
  .commission-cta .commission-text {
    width: 45%;
    text-align: left;
  }
}

.commission-cta .commission-text h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.commission-cta .commission-text p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===================== DIY Supplies ===================== */

.diy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .diy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.diy-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: block;
}

.diy-card .diy-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.diy-card .diy-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.diy-card:hover .diy-img-wrap img {
  transform: scale(1.04);
}

.diy-card .diy-label {
  height: 56px;
  background: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.diy-card:hover .diy-label {
  background: var(--pink-light);
}

.diy-card .diy-label span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

/* ===================== Service Features ===================== */

.service-features .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .service-features .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-item .feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-primary);
  margin-bottom: 12px;
}

.feature-item .feature-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.feature-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===================== Brand Story ===================== */

.brand-story .brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .brand-story .brand-inner {
    flex-direction: row;
    gap: 64px;
  }
}

.brand-story .brand-logo-area {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .brand-story .brand-logo-area {
    width: 45%;
  }
}

.brand-story .brand-logo-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--pink-pale), var(--lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
  text-align: center;
}

@media (min-width: 768px) {
  .brand-story .brand-logo-circle {
    width: 340px;
    height: 340px;
  }
}

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

.brand-story .brand-logo-circle .logo-heart {
  width: 96px;
  height: 96px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-story .brand-logo-circle .logo-heart svg {
  width: 48px;
  height: 48px;
  color: #fff;
}

.brand-story .brand-logo-circle .logo-accent {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--pink-primary);
}

.brand-story .brand-logo-circle .logo-accent.lavender {
  color: var(--lavender-deep);
  display: block;
}

.brand-story .brand-text {
  width: 100%;
}

@media (min-width: 768px) {
  .brand-story .brand-text {
    width: 55%;
  }
}

.brand-story .brand-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.brand-story .brand-text .accent-quote {
  color: var(--pink-primary);
  font-style: italic;
  font-family: var(--font-accent);
  font-size: 18px;
}

/* ===================== Reviews ===================== */

.reviews-carousel {
  position: relative;
}

.reviews-carousel .reviews-track {
  overflow: hidden;
}

.reviews-carousel .reviews-slides {
  display: flex;
  gap: 16px;
  transition: transform 0.5s var(--ease-smooth);
}

@media (min-width: 768px) {
  .reviews-carousel .reviews-slides {
    gap: 24px;
  }
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  border: 1px solid var(--pink-pale);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 992px) {
  .review-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.review-card .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card .review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card .review-user {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

.review-card .verified-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--lavender-deep);
  background: var(--lavender-light);
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 8px;
}

.review-card .paw-rating {
  display: flex;
  gap: 2px;
}

.review-card .paw-rating svg {
  width: 16px;
  height: 16px;
}

.review-card .paw-rating svg.filled {
  color: var(--lavender);
}

.review-card .paw-rating svg.empty {
  color: var(--text-muted);
}

.review-card .review-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s;
}

.reviews-carousel .carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.reviews-carousel .carousel-arrow.prev {
  left: -8px;
}

.reviews-carousel .carousel-arrow.next {
  right: -8px;
}

@media (min-width: 768px) {
  .reviews-carousel .carousel-arrow.prev {
    left: -20px;
  }
  .reviews-carousel .carousel-arrow.next {
    right: -20px;
  }
}

.reviews-carousel .carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-carousel .carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lavender-light);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.reviews-carousel .carousel-dots button.active {
  background: var(--pink-primary);
}

/* ===================== Instagram Gallery ===================== */

.ig-top-bar {
  background: var(--pink-light);
  padding: 16px;
}

.ig-top-bar p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ig-top-bar svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

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

@media (min-width: 768px) {
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .ig-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.ig-item:hover img {
  transform: scale(1.05);
}

.ig-item .ig-user {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
}

.ig-item .ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(248,164,200,0.2);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

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

.ig-item .ig-overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
  transition: transform 0.3s;
}

.ig-item:hover .ig-overlay svg {
  transform: scale(1);
}

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

.site-footer {
  background: var(--dark-bg);
  color: #fff;
  padding-top: 64px;
  padding-bottom: 32px;
}

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

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

@media (min-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-footer .footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.site-footer .footer-brand .footer-logo svg {
  width: 32px;
  height: 32px;
  color: var(--pink-primary);
}

.site-footer .footer-brand .footer-logo .logo-text {
  font-family: var(--font-accent);
  font-size: 20px;
  color: #fff;
}

.site-footer .footer-brand .footer-contact {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.site-footer .footer-brand .footer-contact svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.site-footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.site-footer .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s;
}

.site-footer .footer-social a:hover {
  background: var(--pink-primary);
  color: #fff;
}

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

.site-footer .footer-col h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 16px;
}

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

.site-footer .footer-col ul li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s;
}

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

.site-footer .footer-newsletter {
  border-top: 1px solid var(--dark-surface);
  padding-top: 32px;
  margin-bottom: 24px;
}

.site-footer .footer-newsletter .newsletter-inner {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.site-footer .footer-newsletter p {
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.site-footer .footer-newsletter form {
  display: flex;
  gap: 8px;
}

.site-footer .footer-newsletter input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: var(--dark-surface);
  color: #fff;
  border: 1px solid var(--dark-surface);
  font-size: 14px;
}

.site-footer .footer-newsletter input::placeholder {
  color: var(--text-muted);
}

.site-footer .footer-newsletter input:focus {
  outline: none;
  border-color: var(--pink-primary);
}

.site-footer .footer-bottom {
  border-top: 1px solid var(--dark-surface);
  padding-top: 24px;
  text-align: center;
}

.site-footer .footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

/* ===================== Back to Top ===================== */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card-hover);
  cursor: pointer;
  transition: transform 0.2s;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: scale(1.1);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

/* ===================== Floating Social ===================== */

.floating-social {
  position: fixed;
  bottom: 90px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-social.left {
  left: 20px;
}

.floating-social.right {
  right: 20px;
}

.floating-social .fs-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
  position: relative;
}

.floating-social .fs-btn:hover {
  transform: scale(1.1);
}

.floating-social .fs-btn svg {
  width: 24px;
  height: 24px;
}

.floating-social .fs-btn .fs-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-bg);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.floating-social.left .fs-btn .fs-tooltip {
  right: 100%;
  margin-right: 12px;
}

.floating-social.right .fs-btn .fs-tooltip {
  left: 100%;
  margin-left: 12px;
  right: auto;
}

.floating-social .fs-btn:hover .fs-tooltip {
  opacity: 1;
}

/* WeChat QR popup */
.wechat-qr-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
}

.wechat-qr-popup.active {
  display: flex;
}

.wechat-qr-popup .qr-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  max-width: 320px;
}

.wechat-qr-popup .qr-box img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.wechat-qr-popup .qr-box h3 {
  margin-bottom: 8px;
}

.wechat-qr-popup .qr-box p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.wechat-qr-popup .qr-close {
  background: var(--pink-pale);
  color: var(--pink-primary);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
}

/* ===================== Page Hero ===================== */

.page-hero {
  position: relative;
  height: 250px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    height: 300px;
  }
}

.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

.page-hero.gradient {
  background: linear-gradient(to bottom right, var(--pink-primary), var(--lavender));
}

/* ===================== Breadcrumb ===================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
}

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

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

.breadcrumb .current {
  color: var(--text-primary);
}

/* ===================== Shop / Archive Layout ===================== */

.shop-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 992px) {
  .shop-layout {
    flex-direction: row;
  }
}

.shop-sidebar {
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .shop-sidebar {
    width: 256px;
  }
}

.shop-sidebar .filter-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--pink-pale);
  margin-bottom: 24px;
}

.shop-sidebar .filter-widget h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}

.shop-sidebar .filter-widget h4 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  margin-top: 16px;
}

.shop-sidebar .filter-widget h4:first-of-type {
  margin-top: 0;
}

.shop-sidebar .filter-list button {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}

.shop-sidebar .filter-list button:hover {
  background: var(--pink-pale);
}

.shop-sidebar .filter-list button.active {
  background: var(--pink-pale);
  color: var(--pink-primary);
  font-weight: 600;
}

.shop-main {
  flex: 1;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-toolbar .product-count {
  font-size: 14px;
  color: var(--text-secondary);
}

.shop-toolbar .sort-select-wrap {
  position: relative;
}

.shop-toolbar .sort-select {
  appearance: none;
  background: #fff;
  border: 1px solid var(--pink-pale);
  border-radius: var(--radius-pill);
  padding: 8px 32px 8px 16px;
  font-size: 14px;
  color: var(--text-primary);
  cursor: pointer;
}

.shop-toolbar .sort-select:focus {
  outline: none;
  border-color: var(--pink-primary);
}

.shop-toolbar .sort-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--text-secondary);
  pointer-events: none;
}

.shop-toolbar .filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--pink-pale);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  cursor: pointer;
  background: #fff;
}

@media (min-width: 992px) {
  .shop-toolbar .filter-toggle {
    display: none;
  }
}

.shop-sidebar.mobile-hidden {
  display: none;
}

@media (min-width: 992px) {
  .shop-sidebar.mobile-hidden {
    display: block;
  }
}

/* ===================== Single Product ===================== */

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}

@media (min-width: 992px) {
  .single-product-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-gallery .main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fafafa;
  margin-bottom: 16px;
}

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

.product-gallery .thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.product-gallery .thumbs button {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}

.product-gallery .thumbs button.active {
  border-color: var(--pink-primary);
}

.product-gallery .thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary .product-badge {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.product-summary h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.product-summary .star-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}

.product-summary .star-rating svg {
  width: 16px;
  height: 16px;
  fill: var(--warning);
  color: var(--warning);
}

.product-summary .star-rating .rating-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.product-summary .price {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.product-summary .product-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.quantity-selector label {
  font-weight: 600;
  color: var(--text-primary);
}

.quantity-selector .qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--pink-pale);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.quantity-selector .qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.2s;
}

.quantity-selector .qty-btn:hover {
  background: var(--pink-pale);
}

.quantity-selector .qty-value {
  width: 48px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.product-features-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-features-mini .pf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px;
  background: var(--pink-pale);
  border-radius: var(--radius);
}

.product-features-mini .pf-item svg {
  width: 20px;
  height: 20px;
  color: var(--pink-primary);
  margin-bottom: 4px;
}

.product-features-mini .pf-item span {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Product tabs */
.product-tabs {
  margin-bottom: 64px;
}

.product-tabs .tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--pink-pale);
  margin-bottom: 24px;
}

.product-tabs .tab-btn {
  padding: 12px 24px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  background: none;
  border: none;
  text-transform: capitalize;
  transition: color 0.2s;
}

.product-tabs .tab-btn:hover {
  color: var(--text-primary);
}

.product-tabs .tab-btn.active {
  color: var(--pink-primary);
}

.product-tabs .tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--pink-primary);
}

.product-tabs .tab-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

.product-tabs .tab-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.product-tabs .tab-content ul li {
  margin-bottom: 4px;
}

/* Related products */
.related-products h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ===================== About Page ===================== */

.about-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-hero {
    height: 400px;
  }
}

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

.about-hero .about-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.about-hero .about-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.about-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: #fff;
  margin-bottom: 8px;
}

.about-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
}

.about-story p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  text-align: center;
}

.about-story .story-wrap {
  max-width: 768px;
  margin: 0 auto;
}

/* Stats */
.about-stats {
  padding: 64px 0;
  background: var(--pink-pale);
}

.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .about-stats .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stats .stat-value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 4px;
}

.about-stats .stat-label {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Timeline */
.about-timeline {
  max-width: 640px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item .timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.timeline-item .timeline-line {
  width: 2px;
  flex: 1;
  background: var(--pink-pale);
  margin-top: 8px;
  min-height: 40px;
  margin-left: 23px;
}

.timeline-item:last-child .timeline-line {
  display: none;
}

.timeline-item .timeline-content {
  padding-top: 8px;
}

.timeline-item .timeline-content h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.timeline-item .timeline-content p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Values */
.about-values .values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

@media (min-width: 992px) {
  .about-values .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
}

.value-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.value-card .value-icon svg {
  width: 24px;
  height: 24px;
  color: var(--pink-primary);
}

.value-card h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===================== Contact Page ===================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info .contact-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--pink-pale);
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.contact-info .contact-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info .contact-item .ci-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-info .contact-item h3 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-info .contact-item p {
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-pale);
  padding: 24px;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    padding: 32px;
  }
}

.contact-form-wrap h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 2px solid var(--lavender-light);
  font-size: 14px;
  transition: border-color 0.2s;
  background: #fff;
}

.contact-form textarea {
  height: auto;
  padding: 12px 16px;
  resize: none;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink-primary);
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0;
  text-align: center;
}

.contact-success svg {
  width: 64px;
  height: 64px;
  color: var(--success);
  margin-bottom: 16px;
}

.contact-success h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-success p {
  color: var(--text-secondary);
}

/* ===================== Gallery Page ===================== */

.gallery-filter-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.gallery-filter-tags button {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  color: var(--pink-primary);
  border: 1px solid var(--pink-primary);
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter-tags button:hover,
.gallery-filter-tags button.active {
  background: var(--pink-primary);
  color: #fff;
}

.gallery-masonry {
  columns: 2;
  column-gap: 16px;
}

@media (min-width: 768px) {
  .gallery-masonry {
    columns: 3;
    column-gap: 16px;
  }
}

@media (min-width: 992px) {
  .gallery-masonry {
    columns: 4;
    column-gap: 16px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  break-inside: avoid;
  display: block;
  width: 100%;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity 0.3s;
}

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

.gallery-item .gallery-overlay .gi-title {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.gallery-item .gallery-overlay .gi-style {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox .lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.lightbox .lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox .lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.lightbox .lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox .lightbox-nav.prev { left: 16px; }
.lightbox .lightbox-nav.next { right: 16px; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

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

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

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

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s var(--ease-smooth);
}

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

.blog-card .blog-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card .blog-meta .blog-date {
  color: var(--pink-primary);
  font-weight: 600;
}

.blog-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card h2 a {
  color: var(--text-primary);
}

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

.blog-card .blog-excerpt {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pink-primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* Single post */
.single-post-content {
  max-width: 768px;
  margin: 0 auto;
}

.single-post-content .post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.single-post-content .post-thumbnail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.single-post-content .post-content {
  line-height: 1.8;
  color: var(--text-secondary);
}

.single-post-content .post-content h2,
.single-post-content .post-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.single-post-content .post-content p {
  margin-bottom: 16px;
}

.single-post-content .post-content img {
  border-radius: var(--radius);
  margin: 16px 0;
}

.single-post-content .post-content blockquote {
  border-left: 4px solid var(--pink-primary);
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--pink-pale);
  transition: all 0.2s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--pink-primary);
  color: #fff;
  border-color: var(--pink-primary);
}

/* 404 */
.error-404 {
  text-align: center;
  padding: 80px 0;
}

.error-404 .error-code {
  font-family: var(--font-accent);
  font-size: 120px;
  color: var(--pink-primary);
  line-height: 1;
}

.error-404 h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.error-404 p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* Search result */
.search-form-inline {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 48px;
}

.search-form-inline input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 2px solid var(--lavender-light);
  border-radius: var(--radius);
  font-size: 14px;
}

.search-form-inline input:focus {
  outline: none;
  border-color: var(--pink-primary);
}

/* ===================== Scroll Reveal ===================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* ===================== WooCommerce Overrides ===================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: var(--radius);
  border: none;
  background: var(--pink-pale);
  border-top-color: var(--pink-primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--pink-primary);
}

.woocommerce-error {
  background: #fef2f2;
  border-top-color: var(--danger);
}

.woocommerce-error::before {
  color: var(--danger);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
}

/* WooCommerce ships a clearfix (::before/::after with display:table) on
   ul.products. In a grid container those pseudos become grid items and eat a
   cell each, shifting every card one column over. */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none;
}

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

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

.woocommerce ul.products li.product {
  margin: 0;
  width: auto;
  float: none;
  text-align: left;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 16px 16px 8px;
  line-height: 1.4;
}

.woocommerce ul.products li.product .price {
  color: var(--text-primary);
  font-weight: 700;
  padding: 0 16px 16px;
}

.woocommerce ul.products li.product .price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 14px;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background-color: var(--pink-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: all 0.3s var(--ease-smooth);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background-color: var(--pink-light);
  color: #fff;
  transform: scale(1.03);
}

.woocommerce ul.products li.product img {
  margin: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.woocommerce span.onsale {
  background: var(--danger);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  min-height: auto;
  min-width: auto;
  line-height: 1.4;
  top: 12px;
  left: 12px;
  z-index: 5;
}

.woocommerce .star-rating {
  color: var(--warning);
}

.woocommerce .star-rating span::before {
  color: var(--warning);
}

.woocommerce div.product .product_title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 30px;
  color: var(--text-primary);
  font-weight: 700;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 18px;
}

.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery img {
  border-radius: var(--radius-lg);
}

.woocommerce .quantity .qty {
  border: 1px solid var(--pink-pale);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  height: 40px;
}

.woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--pink-pale);
  padding-left: 0;
}

.woocommerce-tabs ul.tabs li {
  border: none;
  background: none;
}

.woocommerce-tabs ul.tabs li.active {
  background: none;
  border-bottom: 2px solid var(--pink-primary);
}

.woocommerce-tabs ul.tabs li a {
  color: var(--text-secondary);
  font-weight: 600;
  padding: 12px 24px;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--pink-primary);
}

.woocommerce table.shop_table {
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-pale);
}

.woocommerce table.shop_table th {
  background: var(--pink-pale);
  color: var(--text-primary);
}

.woocommerce-cart-form .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 2px solid var(--lavender-light);
  border-radius: var(--radius);
  padding: 8px 16px;
}

.woocommerce-cart-form .coupon .input-text:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--pink-primary);
  outline: none;
  box-shadow: none;
}

.cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.woocommerce-add-to-cart-loader {
  display: none !important;
}

/* WooCommerce mini-cart */
.woocommerce.widget_shopping_cart .product_list_widget li {
  padding: 12px 0;
  border-bottom: 1px solid var(--pink-pale);
}

.woocommerce.widget_shopping_cart .buttons .button {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}

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

@media (max-width: 991px) {
  .commission-cta .commission-images {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 56px;
  }

  .section-title h2 {
    font-size: 28px;
  }

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

  .reviews-carousel .carousel-arrow {
    width: 32px;
    height: 32px;
  }

  .floating-social {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .product-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .category-grid {
    gap: 16px;
  }

  .promo-grid {
    gap: 12px;
  }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .announcement-bar,
  .back-to-top,
  .floating-social {
    display: none !important;
  }
}
