/*
Theme Name: My Tiny Crafts
Theme URI: https://mytinycrafts.co.uk
Author: My Tiny Crafts
Author URI: https://mytinycrafts.co.uk
Description: A beautiful, handcrafted WooCommerce theme for My Tiny Crafts - Handmade Jewellery & Accessories. Pastel pink, soft and elegant, built for e-commerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-tiny-crafts
Tags: e-commerce, woocommerce, pastel, handmade, jewellery, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
WC requires at least: 7.0
WC tested up to: 8.5
*/

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&family=Dancing+Script:wght@600&display=swap');

/* === CSS VARIABLES === */
:root {
  --pink-50: #FFF0F5;
  --pink-100: #FFD6E7;
  --pink-200: #FFB3D1;
  --pink-300: #FF8FB8;
  --pink-400: #F4729D;
  --pink-500: #E8517F;
  --pink-600: #C93A63;
  --green-soft: #7BAF78;
  --green-light: #D4EAD2;
  --cream: #FFF8F2;
  --warm-white: #FFFAF7;
  --text-dark: #2C1A22;
  --text-mid: #6B4157;
  --text-light: #A07090;
  --coral: #F08070;
  --gold: #C9956A;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow-soft: 0 4px 20px rgba(232,81,127,0.10);
  --shadow-md: 0 8px 32px rgba(232,81,127,0.14);
  --shadow-lg: 0 16px 48px rgba(232,81,127,0.16);
  --transition: 0.22s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: var(--pink-500); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pink-600); }

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

ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }

p { margin-bottom: 1rem; color: var(--text-mid); font-weight: 300; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* === BUTTONS === */
.btn, button.btn, input[type="submit"], .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.2px;
}

.btn-primary, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--pink-500) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius-xl) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 13px 28px !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
}

.btn-primary:hover, .woocommerce a.button:hover, .woocommerce button.button:hover {
  background: var(--pink-600) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}

.btn-outline {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--pink-300) !important;
}

.btn-outline:hover {
  border-color: var(--pink-500) !important;
  color: var(--pink-500);
  transform: translateY(-1px);
}

/* === TOP BAR === */
.top-bar {
  background: var(--pink-500);
  color: white;
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.4px;
}

.top-bar a { color: white; text-decoration: underline; }

/* === HEADER === */
#masthead {
  background: white;
  border-bottom: 1px solid var(--pink-100);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(232,81,127,0.07);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.site-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-branding img.custom-logo {
  height: 60px;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--pink-200);
  object-fit: cover;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  margin: 0;
}

.site-description {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
}

/* Nav */
#primary-navigation ul {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}

#primary-navigation ul li a {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

#primary-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--pink-400);
  transition: width var(--transition);
}

#primary-navigation ul li a:hover { color: var(--pink-500); }
#primary-navigation ul li a:hover::after,
#primary-navigation ul li.current-menu-item > a::after { width: 100%; }
#primary-navigation ul li.current-menu-item > a { color: var(--pink-500); }

/* Dropdown */
#primary-navigation ul li { position: relative; }
#primary-navigation ul li ul {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 10px 0;
  min-width: 180px;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0;
  z-index: 100;
}

#primary-navigation ul li:hover > ul { display: flex; }
#primary-navigation ul li ul li a { padding: 9px 20px; display: block; font-size: 13px; }
#primary-navigation ul li ul li a::after { display: none; }

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
}

.header-icon-btn:hover {
  background: var(--pink-50);
  color: var(--pink-500);
}

.header-icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; }

.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--pink-500);
  color: white;
  font-size: 9px;
  font-weight: 600;
  border-radius: 50%;
  width: 15px; height: 15px;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-mid);
  padding: 6px;
}

/* === ANNOUNCEMENT STRIP === */
.announcement-strip {
  background: var(--pink-50);
  border-bottom: 1px solid var(--pink-100);
  padding: 10px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 50px;
  animation: scrollStrip 25s linear infinite;
  width: max-content;
}

.strip-track:hover { animation-play-state: paused; }

@keyframes scrollStrip {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  white-space: nowrap;
  font-weight: 300;
}

.strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink-300);
  flex-shrink: 0;
}

/* === HERO === */
.hero-section {
  background: linear-gradient(135deg, var(--pink-50) 0%, #FFF0E8 50%, var(--green-light) 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: var(--pink-100);
  opacity: 0.35;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 8%;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--pink-100);
  color: var(--pink-600);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.13;
  margin-bottom: 22px;
}

.hero-title em {
  font-style: italic;
  color: var(--pink-500);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 34px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-logo-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--pink-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: floatUp 4s ease-in-out infinite;
}

.hero-logo-circle img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  border-radius: 50%;
}

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

.float-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  white-space: nowrap;
}

.float-badge strong { color: var(--pink-500); }
.float-badge.b1 { top: 24px; right: -10px; }
.float-badge.b2 { bottom: 44px; left: -30px; }
.float-badge.b3 { top: 50%; right: -44px; transform: translateY(-50%); }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 52px; }

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink-400);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === CATEGORIES === */
.categories-section {
  background: var(--pink-50);
  border-top: 1px solid var(--pink-100);
  border-bottom: 1px solid var(--pink-100);
  padding: 44px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--pink-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
}

.category-icon {
  font-size: 38px;
  display: block;
  margin-bottom: 12px;
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 600;
}

.category-count {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
}

/* === PRODUCTS GRID === */
.products-section { padding: 80px 0; }

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

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

/* WooCommerce product card override */
.woocommerce ul.products li.product,
.product-card {
  background: white !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  border: 1px solid var(--pink-100) !important;
  transition: all var(--transition) !important;
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
}

.woocommerce ul.products li.product:hover,
.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-md) !important;
  border-color: var(--pink-200) !important;
}

.woocommerce ul.products li.product a img,
.product-card .product-thumb {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

.product-thumb-wrap {
  height: 220px;
  background: var(--pink-50);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-badge-wrap {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.product-badge {
  font-size: 10px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  background: var(--pink-500);
  color: white;
}

.product-badge.sale { background: var(--coral); }
.product-badge.new-in { background: var(--green-soft); }

.wishlist-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: white;
  border-radius: 50%;
  border: 1px solid var(--pink-100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
  font-size: 14px;
}

.wishlist-btn:hover {
  background: var(--pink-50);
  border-color: var(--pink-300);
}

.product-info {
  padding: 18px 20px 20px;
}

.product-stars {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-stars span { color: var(--text-light); font-size: 10px; font-weight: 300; }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-name {
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  margin-bottom: 6px !important;
  padding: 0 !important;
  line-height: 1.3 !important;
}

.product-desc {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.woocommerce ul.products li.product .price,
.product-price {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--pink-500) !important;
}

.woocommerce ul.products li.product .price del,
.product-price .old {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-weight: 300 !important;
  margin-right: 5px;
}

.add-to-cart-btn,
.woocommerce ul.products li.product .button {
  background: var(--pink-100) !important;
  color: var(--pink-600) !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  font-family: 'DM Sans', sans-serif !important;
  text-decoration: none !important;
}

.add-to-cart-btn:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--pink-500) !important;
  color: white !important;
}

/* === FEATURES BAR === */
.features-bar {
  background: var(--text-dark);
  padding: 44px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.feature-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.feature-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-200);
  margin-bottom: 5px;
  font-family: 'DM Sans', sans-serif;
}

.feature-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.5;
}

/* === OUR STORY === */
.story-section {
  background: linear-gradient(135deg, #FFF8F2 0%, var(--green-light) 100%);
  padding: 80px 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.story-visual { position: relative; display: flex; justify-content: center; }

.story-logo-main {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--pink-200);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

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

.story-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-100);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.story-card-float.s1 { bottom: -20px; right: 10px; width: 120px; height: 120px; z-index: 2; }
.story-card-float.s2 { top: -10px; left: 10px; width: 110px; height: 110px; z-index: 2; }
.story-card-float .fi { font-size: 34px; }
.story-card-float p { font-size: 10px; color: var(--text-light); font-weight: 300; margin: 6px 0 0; }

.story-text .section-label { text-align: left; }
.story-text .section-title { text-align: left; line-height: 1.2; margin-bottom: 20px; }
.story-text .section-title em { font-style: italic; color: var(--pink-500); }

.story-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

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

.stat-box {
  text-align: center;
  padding: 16px 10px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-100);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--pink-500);
  display: block;
}

.stat-lbl {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--cream); padding: 80px 0; }

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--pink-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 68px;
  color: var(--pink-100);
  line-height: 1;
  pointer-events: none;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pink-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-size: 13px; font-weight: 500; color: var(--text-dark); display: block; }
.author-loc { font-size: 11px; color: var(--text-light); font-weight: 300; display: block; }

/* === NEWSLETTER === */
.newsletter-section {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -100px; left: -40px;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  bottom: -80px; right: 12%;
}

.newsletter-inner { position: relative; z-index: 1; }

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.newsletter-section p { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 300; margin-bottom: 30px; }

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  padding: 15px 24px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  color: var(--text-dark);
}

.newsletter-form button {
  background: var(--text-dark);
  color: white;
  border: none;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: #1a0e14; }

/* === FOOTER === */
#colophon {
  background: var(--text-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: 2px solid var(--pink-400);
  object-fit: cover;
}

.footer-brand-logo .ft-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  display: block;
}

.footer-brand-logo .ft-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
}

.footer-about {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

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

.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}

.social-btn:hover { background: var(--pink-500); }

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: white;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a { color: var(--pink-300); text-decoration: none; }
.footer-bottom a:hover { color: var(--pink-200); }

.footer-pay-icons { display: flex; gap: 8px; align-items: center; }

/* === WOOCOMMERCE OVERRIDES === */

/* Cart page */
.woocommerce-cart .woocommerce { padding: 60px 0; }

.woocommerce table.shop_table {
  border: 1px solid var(--pink-100) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
}

.woocommerce table.shop_table th {
  background: var(--pink-50) !important;
  color: var(--text-mid) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid var(--pink-100) !important;
}

.woocommerce table.shop_table td {
  padding: 16px !important;
  border-bottom: 1px solid var(--pink-50) !important;
  vertical-align: middle !important;
}

.woocommerce-cart-form__cart-item .product-name a {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

.woocommerce .cart_totals {
  background: white;
  border: 1px solid var(--pink-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.woocommerce .cart_totals h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* Checkout */
.woocommerce form .form-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
  display: block;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--pink-100) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: var(--text-dark) !important;
  background: white !important;
  width: 100% !important;
  transition: border-color var(--transition) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--pink-400) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232,81,127,0.08) !important;
}

.woocommerce #payment {
  background: var(--pink-50) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--pink-100) !important;
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  margin-bottom: 12px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: var(--pink-500) !important;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  border-radius: var(--radius-lg) !important;
  border: 1px solid var(--pink-100) !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs .tabs li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
}

.woocommerce div.product .woocommerce-tabs .tabs li.active a { color: var(--pink-500); }

/* Notices */
.woocommerce-message {
  border-top-color: var(--pink-500) !important;
  background: var(--pink-50) !important;
  color: var(--text-mid) !important;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm) !important;
}

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

/* Quantity input */
.woocommerce .quantity .qty {
  border: 1.5px solid var(--pink-100) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: var(--text-dark) !important;
  padding: 8px 12px !important;
  width: 70px !important;
}

/* === SHOP PAGE === */
.woocommerce-shop-banner {
  background: linear-gradient(135deg, var(--pink-50), #FFF0E8);
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--pink-100);
}

.woocommerce-breadcrumb {
  font-size: 13px !important;
  color: var(--text-light) !important;
  margin-bottom: 16px !important;
}

.woocommerce-breadcrumb a { color: var(--pink-400) !important; }

/* WooCommerce layout */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 26px !important;
  float: none !important;
  clear: both !important;
}

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

.woocommerce-result-count {
  font-size: 13px !important;
  color: var(--text-light) !important;
  font-weight: 300 !important;
}

.woocommerce-ordering select {
  border: 1.5px solid var(--pink-100) !important;
  border-radius: var(--radius-sm) !important;
  font-size: 13px !important;
  font-family: 'DM Sans', sans-serif !important;
  color: var(--text-mid) !important;
  padding: 8px 12px !important;
}

/* Sidebar widgets */
.widget_product_categories ul li a {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color var(--transition);
}

.widget_product_categories ul li a:hover { color: var(--pink-500); }

/* === PAGE BANNERS === */
.page-banner {
  background: linear-gradient(135deg, var(--pink-50), #FFF0E8 60%, var(--green-light));
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--pink-100);
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  color: var(--text-dark);
  margin-bottom: 10px;
}

.page-banner p { font-size: 16px; color: var(--text-mid); font-weight: 300; max-width: 520px; margin: 0 auto; }

/* === BLOG === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--pink-100);
  transition: all var(--transition);
}

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

.blog-thumb {
  height: 200px;
  background: var(--pink-50);
  overflow: hidden;
}

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

.blog-info { padding: 20px; }
.blog-meta { font-size: 11px; color: var(--text-light); font-weight: 300; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--pink-500); }
.blog-card p { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1.5px solid var(--pink-100);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  margin-bottom: 14px;
  transition: border-color var(--transition);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink-400);
  box-shadow: 0 0 0 3px rgba(232,81,127,0.07);
}

.contact-form label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.contact-form textarea { height: 140px; resize: vertical; }

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--pink-100);
}

.contact-icon { font-size: 22px; }

.contact-info-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-info-item p { font-size: 14px; color: var(--text-mid); font-weight: 300; margin: 0; }

/* === WISHLIST PAGE === */
.wishlist-section { padding: 60px 0; }

/* === SEARCH === */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,26,34,0.6);
  z-index: 2000;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

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

.search-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
}

.search-box input[type="search"] {
  width: 100%;
  border: 2px solid var(--pink-200);
  border-radius: var(--radius-xl);
  padding: 14px 20px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  outline: none;
}

.search-box input:focus { border-color: var(--pink-400); }

/* === SIDEBAR === */
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.sidebar {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-100);
  overflow: hidden;
}

.sidebar .widget {
  padding: 22px;
  border-bottom: 1px solid var(--pink-50);
}

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

.sidebar .widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

/* === MOBILE === */
@media (max-width: 1024px) {
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .site-header-inner { padding: 12px 20px; }

  #primary-navigation { display: none; }
  #primary-navigation.open { display: block; }
  .mobile-menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-logo-circle { width: 240px; height: 240px; }
  .float-badge.b3 { display: none; }

  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { margin-bottom: 20px; }
  .story-text .section-title { font-size: 28px; }

  .contact-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .products-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .with-sidebar { grid-template-columns: 1fr; }
  .hero-inner { padding: 40px 0; }
  .section-pad { padding: 50px 0; }
}

@media (max-width: 480px) {
  .products-grid-3, .products-grid-4 { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(3, 1fr); }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.mb-40 { margin-bottom: 40px; }
.dancing { font-family: 'Dancing Script', cursive; }
