/*
Theme Name: PoodleDoodle
Template: hello-elementor
Description: PoodleDoodle Puppies child theme for Elementor Pro. Brand colours, typography, and custom PHP logic.
Version: 1.0.0
Author: PoodleDoodle Puppies
*/

/* ============================================
   BRAND DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ============================================ */
:root {
	/* Colour palette */
	--pdd-gold:         #C8690A;
	--pdd-gold-light:   #F0A945;
	--pdd-deep-brown:   #2C1408;
	--pdd-brown-mid:    #6B3A1F;
	--pdd-cream:        #FDF8F0;
	--pdd-cream-2:      #FAF2E4;
	--pdd-parchment:    #F5E8D0;
	--pdd-text-light:   #9A7558;
	--pdd-available:    #22C55E;
	--pdd-reserved:     #F59E0B;
	--pdd-coming-soon:  #3B82F6;

	/* Typography */
	--pdd-font-heading: 'Cormorant Garamond', Georgia, serif;
	--pdd-font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

	/* Spacing */
	--pdd-section-padding: clamp(60px, 8vw, 100px);
	--pdd-max-width: 1380px;

	/* Components */
	--pdd-btn-radius:  100px;
	--pdd-card-radius: 20px;
	--pdd-card-border: 1px solid rgba(200, 105, 10, 0.18);
	--pdd-card-shadow-hover: 0 12px 40px rgba(200, 105, 10, 0.18);
}

/* ============================================
   GLOBAL RESETS & BASE
   ============================================ */
body {
	background-color: var(--pdd-cream);
	color: var(--pdd-brown-mid);
	font-family: var(--pdd-font-body);
	font-size: 16px;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--pdd-font-heading);
	color: var(--pdd-deep-brown);
	line-height: 1.15;
}

h1 {
	font-size: clamp(44px, 5vw, 76px);
	font-weight: 300;
	letter-spacing: -0.02em;
	line-height: 1.08;
}

h2 {
	font-size: clamp(28px, 3.5vw, 52px);
	font-weight: 400;
}

h3 {
	font-size: clamp(20px, 2vw, 32px);
	font-weight: 400;
}

/* Italic accent in gold — applied to <em> inside headings */
h1 em, h2 em, h3 em {
	font-style: italic;
	color: var(--pdd-gold);
}

/* ============================================
   BUTTONS — BRAND PILL STYLE
   ============================================ */
.pdd-btn,
.elementor-button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
#place_order {
	border-radius: var(--pdd-btn-radius) !important;
	font-family: var(--pdd-font-body) !important;
	font-weight: 500 !important;
	font-size: 14px !important;
	letter-spacing: 0.01em;
	transition: all 0.25s ease;
}

.pdd-btn-primary {
	background: var(--pdd-gold);
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: var(--pdd-btn-radius);
	font-family: var(--pdd-font-body);
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.pdd-btn-primary:hover {
	background: var(--pdd-brown-mid);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(200, 105, 10, 0.3);
}

.pdd-btn-ghost {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.5);
	padding: 13px 27px;
	border-radius: var(--pdd-btn-radius);
	font-family: var(--pdd-font-body);
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s ease;
}

.pdd-btn-ghost:hover {
	border-color: var(--pdd-gold-light);
	color: var(--pdd-gold-light);
}

.pdd-btn-dark {
	background: var(--pdd-deep-brown);
	color: #fff;
	border: none;
	padding: 14px 28px;
	border-radius: var(--pdd-btn-radius);
	font-family: var(--pdd-font-body);
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s ease;
}

.pdd-btn-dark:hover {
	background: var(--pdd-gold);
	color: #fff;
}

/* ============================================
   CARDS — SHARED
   ============================================ */
.pdd-card {
	background: #fff;
	border-radius: var(--pdd-card-radius);
	border: var(--pdd-card-border);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pdd-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--pdd-card-shadow-hover);
	border-color: var(--pdd-gold);
}

/* ============================================
   STATUS BADGES
   ============================================ */
.pdd-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 12px;
	border-radius: 100px;
	font-family: var(--pdd-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.pdd-badge-available {
	background: rgba(34, 197, 94, 0.12);
	color: #15803D;
	border: 1px solid rgba(34, 197, 94, 0.3);
}

.pdd-badge-reserved {
	background: rgba(245, 158, 11, 0.12);
	color: #92400E;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.pdd-badge-coming-soon {
	background: rgba(59, 130, 246, 0.12);
	color: #1E40AF;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.pdd-badge-health {
	background: rgba(34, 197, 94, 0.1);
	color: #15803D;
	border: 1px solid rgba(34, 197, 94, 0.2);
	font-size: 11px;
	padding: 3px 10px;
}

.pdd-badge-award {
	background: var(--pdd-gold);
	color: #fff;
	font-size: 11px;
	padding: 4px 10px;
}

/* ============================================
   TAG PILLS
   ============================================ */
.pdd-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background: rgba(200, 105, 10, 0.08);
	color: var(--pdd-gold);
	border-radius: 100px;
	font-size: 12px;
	font-family: var(--pdd-font-body);
	font-weight: 500;
}

/* ============================================
   PRICE DISPLAY
   ============================================ */
.pdd-price {
	font-family: var(--pdd-font-heading);
	font-size: clamp(21px, 2vw, 32px);
	font-weight: 500;
	color: var(--pdd-gold);
	line-height: 1.2;
}

.pdd-price-deposit {
	font-size: 13px;
	color: var(--pdd-text-light);
	font-family: var(--pdd-font-body);
	font-weight: 400;
}

/* ============================================
   SECTION WRAPPERS
   ============================================ */
.pdd-section {
	padding: var(--pdd-section-padding) 20px;
}

.pdd-section-dark {
	background: var(--pdd-deep-brown);
	color: #fff;
}

.pdd-section-dark h1,
.pdd-section-dark h2,
.pdd-section-dark h3 {
	color: #fff;
}

.pdd-section-cream-2 {
	background: var(--pdd-cream-2);
}

.pdd-inner {
	max-width: var(--pdd-max-width);
	margin: 0 auto;
	width: 100%;
}

/* ============================================
   SECTION LABEL (small caps above headings)
   ============================================ */
.pdd-section-label {
	font-family: var(--pdd-font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pdd-gold);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.pdd-section-label::before {
	content: '';
	width: 30px;
	height: 1px;
	background: var(--pdd-gold);
	display: block;
}

/* ============================================
   GRID SYSTEMS
   ============================================ */
.pdd-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

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

.pdd-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	align-items: center;
}

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

@media (max-width: 640px) {
	.pdd-grid-4,
	.pdd-grid-3,
	.pdd-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================
   PUPPY CARD
   ============================================ */
.pdd-puppy-card {
	background: var(--pdd-cream);
	border-radius: var(--pdd-card-radius);
	border: var(--pdd-card-border);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pdd-puppy-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--pdd-card-shadow-hover);
	border-color: var(--pdd-gold);
}

.pdd-puppy-card__media {
	position: relative;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 80px;
}

.pdd-puppy-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
}

.pdd-puppy-card__body {
	padding: 20px;
}

.pdd-puppy-card__breed {
	font-family: var(--pdd-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pdd-text-light);
	margin-bottom: 4px;
}

.pdd-puppy-card__name {
	font-family: var(--pdd-font-heading);
	font-size: 26px;
	font-weight: 500;
	color: var(--pdd-deep-brown);
	margin: 0 0 14px;
}

.pdd-puppy-card__attrs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 16px;
}

.pdd-puppy-card__attr {
	display: flex;
	flex-direction: column;
}

.pdd-puppy-card__attr-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pdd-text-light);
}

.pdd-puppy-card__attr-value {
	font-size: 13px;
	color: var(--pdd-brown-mid);
	font-weight: 400;
}

.pdd-puppy-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	border-top: 1px solid rgba(200, 105, 10, 0.1);
}

/* ============================================
   BREED CARD
   ============================================ */
.pdd-breed-card {
	border-radius: var(--pdd-card-radius);
	padding: 28px 24px;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	text-decoration: none;
	display: block;
}

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

.pdd-breed-card:hover .pdd-breed-card__emoji {
	transform: scale(1.12);
}

.pdd-breed-card:hover .pdd-breed-card__arrow {
	opacity: 1;
	transform: translateX(0);
}

.pdd-breed-card__emoji {
	font-size: 64px;
	display: block;
	margin-bottom: 16px;
	transition: transform 0.3s ease;
	line-height: 1;
}

.pdd-breed-card__name {
	font-family: var(--pdd-font-heading);
	font-size: 22px;
	font-weight: 500;
	color: var(--pdd-deep-brown);
	margin: 0 0 4px;
}

.pdd-breed-card__subtitle {
	font-size: 12px;
	color: var(--pdd-text-light);
	margin-bottom: 12px;
}

.pdd-breed-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.pdd-breed-card__arrow {
	position: absolute;
	top: 24px;
	right: 24px;
	color: var(--pdd-gold);
	opacity: 0;
	transform: translateX(-8px);
	transition: all 0.3s ease;
	font-size: 18px;
}

/* ============================================
   PARENT DOG CARD
   ============================================ */
.pdd-parent-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--pdd-card-radius);
	padding: 28px;
	position: relative;
	transition: all 0.3s ease;
}

.pdd-parent-card:hover {
	background: rgba(255,255,255,0.08);
	border-color: var(--pdd-gold);
}

.pdd-parent-card__awards {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

.pdd-parent-card__photo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: rgba(200,105,10,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	margin-bottom: 16px;
}

.pdd-parent-card__role {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--pdd-text-light);
}

.pdd-parent-card__name {
	font-family: var(--pdd-font-heading);
	font-size: 28px;
	font-weight: 500;
	color: #fff;
	margin: 4px 0 16px;
}

.pdd-parent-card__health-certs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 20px;
}

/* ============================================
   STATS BAR
   ============================================ */
.pdd-stats-bar {
	display: flex;
	gap: 0;
	border-top: 1px solid rgba(255,255,255,0.1);
}

.pdd-stats-bar__item {
	flex: 1;
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-right: 1px solid rgba(255,255,255,0.1);
	text-align: center;
}

.pdd-stats-bar__item:last-child { border-right: none; }

.pdd-stats-bar__number {
	font-family: var(--pdd-font-heading);
	font-size: 28px;
	font-weight: 500;
	color: var(--pdd-gold-light);
}

.pdd-stats-bar__label {
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	font-weight: 400;
}

/* ============================================
   PAYMENT STAGES
   ============================================ */
.pdd-payment-stage {
	padding: 32px 28px;
	border-radius: var(--pdd-card-radius);
	border: var(--pdd-card-border);
	background: #fff;
	transition: all 0.4s ease;
	cursor: default;
}

.pdd-payment-stage:hover {
	background: var(--pdd-deep-brown);
	border-color: transparent;
}

.pdd-payment-stage:hover .pdd-payment-stage__percent {
	color: var(--pdd-gold-light);
}

.pdd-payment-stage:hover .pdd-payment-stage__label,
.pdd-payment-stage:hover .pdd-payment-stage__desc {
	color: rgba(255,255,255,0.7);
}

.pdd-payment-stage:hover .pdd-payment-stage__title {
	color: #fff;
}

.pdd-payment-stage__percent {
	font-family: var(--pdd-font-heading);
	font-size: 48px;
	font-weight: 300;
	color: var(--pdd-gold);
	line-height: 1;
	margin-bottom: 4px;
	transition: color 0.4s ease;
}

.pdd-payment-stage__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pdd-text-light);
	font-weight: 600;
	transition: color 0.4s ease;
}

.pdd-payment-stage__title {
	font-family: var(--pdd-font-heading);
	font-size: 18px;
	font-weight: 500;
	margin: 14px 0 8px;
	color: var(--pdd-deep-brown);
	transition: color 0.4s ease;
}

.pdd-payment-stage__desc {
	font-size: 14px;
	color: var(--pdd-text-light);
	line-height: 1.6;
	transition: color 0.4s ease;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.pdd-testimonial-card {
	padding: 28px;
	border-radius: var(--pdd-card-radius);
	border: 1px solid rgba(255,255,255,0.08);
	background: rgba(255,255,255,0.03);
}

.pdd-testimonial-card__stars {
	color: var(--pdd-gold);
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 14px;
}

.pdd-testimonial-card__quote {
	font-family: var(--pdd-font-heading);
	font-style: italic;
	font-size: 18px;
	color: rgba(255,255,255,0.9);
	line-height: 1.6;
	margin-bottom: 20px;
}

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

.pdd-testimonial-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--pdd-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--pdd-font-heading);
	font-weight: 500;
	color: #fff;
	font-size: 16px;
	flex-shrink: 0;
}

.pdd-testimonial-card__name {
	font-weight: 500;
	color: #fff;
	font-size: 15px;
}

.pdd-testimonial-card__meta {
	font-size: 12px;
	color: var(--pdd-text-light);
}

/* ============================================
   ADOPTION STEPS TIMELINE
   ============================================ */
.pdd-step {
	display: flex;
	gap: 20px;
	margin-bottom: 28px;
	align-items: flex-start;
}

.pdd-step:last-child { margin-bottom: 0; }

.pdd-step__number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid rgba(200,105,10,0.3);
	background: var(--pdd-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--pdd-font-heading);
	font-weight: 500;
	color: var(--pdd-gold);
	font-size: 18px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.pdd-step:hover .pdd-step__number {
	background: var(--pdd-gold);
	color: #fff;
	border-color: var(--pdd-gold);
}

.pdd-step__title {
	font-family: var(--pdd-font-heading);
	font-size: 20px;
	font-weight: 500;
	color: var(--pdd-deep-brown);
	margin: 0 0 4px;
}

.pdd-step__desc {
	font-size: 14px;
	color: var(--pdd-text-light);
	line-height: 1.6;
}

/* ============================================
   TRANSIT TRACKING TIMELINE
   ============================================ */
.pdd-timeline {
	position: relative;
	padding-left: 36px;
}

.pdd-timeline::before {
	content: '';
	position: absolute;
	left: 11px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: rgba(200,105,10,0.15);
}

.pdd-timeline-step {
	position: relative;
	margin-bottom: 32px;
	padding-left: 20px;
}

.pdd-timeline-step::before {
	content: '';
	position: absolute;
	left: -25px;
	top: 4px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--pdd-parchment);
	border: 2px solid rgba(200,105,10,0.3);
}

.pdd-timeline-step.is-done::before {
	background: var(--pdd-gold);
	border-color: var(--pdd-gold);
}

.pdd-timeline-step.is-current::before {
	background: var(--pdd-gold-light);
	border-color: var(--pdd-gold-light);
	box-shadow: 0 0 0 4px rgba(240, 169, 69, 0.2);
}

.pdd-timeline-step__title {
	font-weight: 500;
	color: var(--pdd-deep-brown);
	margin-bottom: 2px;
}

.pdd-timeline-step__meta {
	font-size: 13px;
	color: var(--pdd-text-light);
}

/* ============================================
   WooCommerce OVERRIDES
   ============================================ */
.woocommerce-page body,
body.woocommerce {
	background: var(--pdd-cream);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
	border-top-color: var(--pdd-gold);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--pdd-gold);
	font-family: var(--pdd-font-heading);
	font-weight: 500;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--pdd-gold);
	color: #fff;
	border-radius: var(--pdd-btn-radius);
	font-family: var(--pdd-font-body);
	font-weight: 500;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--pdd-deep-brown);
}

/* ============================================
   BLOG CARD (Learning Hub)
   ============================================ */
.pdd-blog-card {
	border-radius: var(--pdd-card-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pdd-blog-card__media {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	position: relative;
}

.pdd-blog-card--featured .pdd-blog-card__media {
	height: 280px;
	font-size: 80px;
}

.pdd-blog-card__category {
	position: absolute;
	top: 14px;
	left: 14px;
}

.pdd-blog-card__body {
	padding: 20px;
	background: var(--pdd-cream);
	flex: 1;
}

.pdd-blog-card__title {
	font-family: var(--pdd-font-heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--pdd-deep-brown);
	margin: 0 0 8px;
	line-height: 1.4;
}

.pdd-blog-card--featured .pdd-blog-card__title {
	font-size: 24px;
}

.pdd-blog-card__meta {
	font-size: 12px;
	color: var(--pdd-text-light);
}

/* ============================================
   HERO SECTION
   ============================================ */
.pdd-hero {
	background: var(--pdd-deep-brown);
	position: relative;
	overflow: hidden;
	min-height: 85vh;
	display: flex;
	flex-direction: column;
}

.pdd-hero::before {
	content: '';
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	width: 50%;
	height: 90%;
	background: radial-gradient(ellipse at center, rgba(200,105,10,0.18) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}
.pdd-hero__inner { position: relative; z-index: 1; }

.pdd-hero__inner {
	max-width: var(--pdd-max-width);
	margin: 0 auto;
	padding: 100px 20px 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	flex: 1;
	width: 100%;
}

.pdd-hero__label {
	font-family: var(--pdd-font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--pdd-gold-light);
	margin-bottom: 20px;
}

.pdd-hero__h1 {
	color: #fff;
	margin-bottom: 20px;
}

.pdd-hero__tagline {
	color: rgba(255,255,255,0.7);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 36px;
	max-width: 460px;
}

.pdd-hero__ctas {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.pdd-hero__photo-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pdd-hero__photo {
	width: 100%;
	max-width: 480px;
	height: 520px;
	object-fit: cover;
	object-position: center top;
	border-radius: 280px 280px 200px 200px;
	box-shadow: 0 0 0 6px rgba(200,105,10,0.25), 0 32px 80px rgba(0,0,0,0.5);
	display: block;
}

.pdd-hero__trust-card {
	background: rgba(20,10,4,0.75);
	border: 1px solid rgba(200,105,10,0.3);
	border-radius: 16px;
	padding: 16px 20px;
	backdrop-filter: blur(12px);
	position: absolute;
	bottom: 24px;
	right: -8px;
}

.pdd-hero__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: rgba(255,255,255,0.8);
	margin-bottom: 8px;
}

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

.pdd-hero__trust-item::before {
	content: '•';
	color: var(--pdd-gold-light);
}

/* ============================================
   MOBILE (390px)
   ============================================ */
@media (max-width: 640px) {
	.pdd-hero__inner {
		grid-template-columns: 1fr;
		padding: 80px 20px 40px;
		gap: 40px;
	}

	.pdd-hero__photo {
		height: 320px;
		border-radius: 180px 180px 140px 140px;
	}
	.pdd-hero__trust-card {
		position: static;
		margin-top: 16px;
	}

	.pdd-hero__ctas {
		flex-direction: column;
	}

	.pdd-hero__ctas a,
	.pdd-hero__ctas button {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.pdd-stats-bar {
		overflow-x: auto;
	}

	.pdd-stats-bar__item {
		min-width: 120px;
	}

	.pdd-puppy-card__footer {
		flex-direction: column;
		gap: 12px;
		align-items: stretch;
	}

	.pdd-btn-dark {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

/* ============================================
   TRUST SECTION — info boxes
   ============================================ */
.pdd-info-box {
	background: var(--pdd-parchment);
	border-radius: 14px;
	padding: 24px;
	border-left: 3px solid var(--pdd-gold);
}

.pdd-info-box__title {
	font-family: var(--pdd-font-heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--pdd-deep-brown);
	margin-bottom: 8px;
}

.pdd-info-box__text {
	font-size: 14px;
	color: var(--pdd-brown-mid);
	line-height: 1.6;
}

/* ============================================
   STATS BOX (right side of How It Works)
   ============================================ */
.pdd-stats-box {
	background: var(--pdd-deep-brown);
	border-radius: var(--pdd-card-radius);
	padding: 32px;
	color: #fff;
}

.pdd-stats-box__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.pdd-stats-box__stat-number {
	font-family: var(--pdd-font-heading);
	font-size: 40px;
	font-weight: 300;
	color: var(--pdd-gold-light);
	line-height: 1;
	display: block;
}

.pdd-stats-box__stat-label {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

/* ============================================
   ACCOUNT DASHBOARD
   ============================================ */
.pdd-account-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	max-width: var(--pdd-max-width);
	margin: 0 auto;
	padding: 60px 20px;
}

.pdd-account-sidebar {
	background: var(--pdd-cream-2);
	border-radius: var(--pdd-card-radius);
	padding: 24px;
	height: fit-content;
	border: var(--pdd-card-border);
}

.pdd-account-nav a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 10px;
	color: var(--pdd-brown-mid);
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	transition: all 0.2s ease;
	margin-bottom: 4px;
}

.pdd-account-nav a:hover,
.pdd-account-nav a.active {
	background: var(--pdd-parchment);
	color: var(--pdd-gold);
}

.pdd-payment-progress {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-radius: 12px;
	overflow: hidden;
	border: var(--pdd-card-border);
	margin-bottom: 24px;
}

.pdd-payment-progress__stage {
	padding: 16px;
	text-align: center;
	background: var(--pdd-cream-2);
	border-right: 1px solid rgba(200,105,10,0.1);
}

.pdd-payment-progress__stage:last-child { border-right: none; }

.pdd-payment-progress__stage.is-paid {
	background: rgba(34, 197, 94, 0.08);
}

.pdd-payment-progress__stage.is-due {
	background: rgba(200,105,10,0.08);
}

.pdd-payment-progress__amount {
	font-family: var(--pdd-font-heading);
	font-size: 20px;
	font-weight: 500;
	color: var(--pdd-gold);
	display: block;
}

.pdd-payment-progress__label {
	font-size: 11px;
	color: var(--pdd-text-light);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ============================================
   BREED PAGE HERO
   ============================================ */
.pdd-breed-hero {
	border-radius: var(--pdd-card-radius);
	padding: 60px 40px;
	margin-bottom: 48px;
	display: flex;
	align-items: center;
	gap: 40px;
}

.pdd-breed-hero__emoji {
	font-size: 80px;
	flex-shrink: 0;
}

.pdd-breed-hero__stats {
	display: flex;
	gap: 20px;
	margin-top: 16px;
	flex-wrap: wrap;
}

.pdd-breed-hero__stat {
	background: rgba(255,255,255,0.3);
	border-radius: 8px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 500;
}

/* ============================================
   NAVIGATION
   ============================================ */
.pdd-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(44, 20, 8, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(200, 105, 10, 0.15);
}

.pdd-nav__inner {
	max-width: var(--pdd-max-width);
	margin: 0 auto;
	padding: 0 24px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.pdd-nav__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.pdd-nav__logo-icon {
	width: 36px;
	height: 36px;
	background: var(--pdd-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.pdd-nav__logo-text {
	font-family: var(--pdd-font-heading);
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}

.pdd-nav__menu {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	justify-content: center;
}

.pdd-nav__menu a {
	color: rgba(255,255,255,0.75);
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	transition: color 0.2s ease;
}

.pdd-nav__menu a:hover {
	color: var(--pdd-gold-light);
}

.pdd-nav__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.pdd-nav__account {
	color: rgba(255,255,255,0.75);
	font-size: 14px;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
}

.pdd-nav__hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 4px;
	background: none;
	border: none;
}

.pdd-nav__hamburger span {
	width: 22px;
	height: 2px;
	background: rgba(255,255,255,0.8);
	border-radius: 2px;
	display: block;
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	.pdd-nav__menu { display: none; }
	.pdd-nav__hamburger { display: flex; }
}

/* ============================================
   FOOTER
   ============================================ */
.pdd-footer {
	background: var(--pdd-deep-brown);
	padding: 60px 20px 24px;
}

.pdd-footer__grid {
	max-width: var(--pdd-max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 48px;
}

.pdd-footer__brand-name {
	font-family: var(--pdd-font-heading);
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 8px;
}

.pdd-footer__brand-tagline {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	line-height: 1.6;
	margin-bottom: 20px;
}

.pdd-footer__social {
	display: flex;
	gap: 10px;
}

.pdd-footer__social-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s ease;
}

.pdd-footer__social-btn:hover {
	border-color: var(--pdd-gold);
	color: var(--pdd-gold);
}

.pdd-footer__col-title {
	font-family: var(--pdd-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	margin-bottom: 16px;
}

.pdd-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pdd-footer__links li { margin-bottom: 10px; }

.pdd-footer__links a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.pdd-footer__links a:hover { color: var(--pdd-gold-light); }

.pdd-footer__bottom {
	max-width: var(--pdd-max-width);
	margin: 0 auto;
	padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.pdd-footer__copyright {
	font-size: 13px;
	color: rgba(255,255,255,0.3);
}

.pdd-footer__legal-links {
	display: flex;
	gap: 20px;
}

.pdd-footer__legal-links a {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	text-decoration: none;
}

.pdd-footer__legal-links a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
	.pdd-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.pdd-footer__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   GSAP ANIMATION SYSTEM
   Custom cursor, scroll progress, nav shrink,
   page overlay, hover overrides
   ============================================ */

/* ── Scroll progress bar ──────────────────── */
#pdd-scroll-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--pdd-gold), var(--pdd-gold-light));
	transform-origin: left center;
	transform: scaleX(0);
	z-index: 99999;
	pointer-events: none;
}

/* ── Custom cursor ────────────────────────── */
#pdd-cursor-dot,
#pdd-cursor-ring {
	position: fixed;
	top: 0;
	left: 0;
	border-radius: 50%;
	pointer-events: none;
	z-index: 99998;
	will-change: transform;
}

#pdd-cursor-dot {
	width: 6px;
	height: 6px;
	background: var(--pdd-gold);
	margin: -3px 0 0 -3px;
}

#pdd-cursor-ring {
	width: 36px;
	height: 36px;
	border: 1.5px solid var(--pdd-gold);
	background: transparent;
	margin: -18px 0 0 -18px;
	opacity: 0.7;
}

/* Hide OS cursor when custom is active */
body.pdd-custom-cursor,
body.pdd-custom-cursor * {
	cursor: none !important;
}

/* ── Page transition overlay ──────────────── */
#pdd-page-overlay {
	position: fixed;
	inset: 0;
	background: var(--pdd-deep-brown);
	z-index: 99997;
	pointer-events: none;
	opacity: 1;
}

/* ── Navbar scroll state ──────────────────── */
.pdd-nav {
	transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pdd-nav--scrolled {
	box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
	background: rgba(20, 9, 3, 0.98) !important;
}

.pdd-nav--scrolled .pdd-nav__inner {
	height: 54px;
	transition: height 0.3s ease;
}

/* ── Disable CSS hover transforms on GSAP-managed cards ── */
.pdd-gsap-hover:hover {
	transform: none !important;
	box-shadow: var(--pdd-card-shadow-hover);
}

/* ── Word-split span baseline fix ─────────── */
.pdd-word-outer {
	display: inline-block;
	overflow: hidden;
	vertical-align: bottom;
	line-height: inherit;
}

.pdd-word-inner {
	display: inline-block;
	will-change: transform, opacity;
}

/* ── Will-change hints for GSAP targets ───── */
.pdd-breed-card,
.pdd-puppy-card,
.pdd-parent-card,
.pdd-payment-stage,
.pdd-testimonial-card {
	will-change: transform, opacity;
}

/* ── Reduced motion: show everything ─────── */
@media (prefers-reduced-motion: reduce) {
	#pdd-scroll-bar,
	#pdd-cursor-dot,
	#pdd-cursor-ring,
	#pdd-page-overlay {
		display: none !important;
	}
}

/* ============================================
   PUPPY MASCOT
   ============================================ */


/* ── Social quick-fill buttons (shared across forms) ─────── */
.pdd-social-fill__label {
	font-family: var(--pdd-font-body);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--pdd-text-light);
	margin: 0 0 10px;
}
.pdd-social-fill__btns {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.pdd-sfb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 10px;
	font-family: var(--pdd-font-body);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: all 0.18s ease;
	white-space: nowrap;
	flex: 1;
	min-width: 110px;
}
.pdd-sfb--google   { background:#fff; border-color:rgba(44,20,8,0.14); color:#3c4043; }
.pdd-sfb--google:hover { box-shadow:0 2px 8px rgba(0,0,0,0.10); }
.pdd-sfb--apple    { background:#000; color:#fff; }
.pdd-sfb--apple:hover  { background:#1a1a1a; }
.pdd-sfb--facebook { background:#1877F2; color:#fff; }
.pdd-sfb--facebook:hover { background:#166fe5; }
.pdd-sfill-notice {
	display: none;
	font-family: var(--pdd-font-body);
	font-size: 13px;
	padding: 10px 14px;
	border-radius: 8px;
	margin-top: 10px;
	line-height: 1.5;
}
.pdd-sfill-notice.is-ok      { background:#D1FAE5; color:#065F46; }
.pdd-sfill-notice.is-err     { background:rgba(200,105,10,0.08); color:var(--pdd-gold, #C8690A); border:1px solid rgba(200,105,10,0.20); }
.pdd-sfill-notice.is-visible { display: block; }
.pdd-social-divider {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 14px 0 18px;
}
.pdd-social-divider::before,
.pdd-social-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--pdd-parchment, #F5E8D0);
}
.pdd-social-divider span {
	font-size: 12px;
	color: var(--pdd-text-light, #9A7558);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	white-space: nowrap;
}
