/*
Theme Name: Zinki Moods
Theme URI:
Author:
Description: Custom WooCommerce theme for Zinki Moods.
Version: 1.0.0
Text Domain: zinki-moods
*/


/* =========================================================
   VARIABLES
========================================================= */

:root {
	--purple: #6230bc;
	--ink: #302044;
	--muted: #655d70;
	--pink: #ee5fa1;
	--lime: #d7f589;
}


/* =========================================================
   RESET / BASE
========================================================= */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 30px;
}

body {
	margin: 0;
	background: #fff;
	color: var(--ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

body.page {
	margin: 0;
}

.site-wrap {
	width: 100%;
	overflow: hidden;
}

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

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

button {
	font: inherit;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid #df4789;
	outline-offset: 5px;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
	background: #fff;
	color: var(--purple);
	text-align: center;
	padding: 9px 20px;
	font-size: 14px;
	letter-spacing: .02em;
	border-bottom: 1px solid #eee7f5;
}

.announcement span {
	margin-left: 32px;
	color: var(--muted);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
	max-width: 1320px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 5%;
	gap: 25px;
}

.brand {
	line-height: 1;
	text-align: center;
	flex-shrink: 0;
}

.brand-logo {
	display: block;
	width: 170px;
	height: auto;
}

.brand-fallback {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.brand-fallback strong {
	font-size: 28px;
	color: var(--purple);
}

.brand-fallback small {
	font-size: 10px;
	letter-spacing: 4px;
}

.site-header nav {
	display: flex;
	gap: 32px;
	font-size: 14px;
	font-weight: 600;
}

.site-header nav a:hover {
	color: var(--purple);
}

.nav-cta {
	border: 1px solid #d9c9ed;
	padding: 11px 20px;
	border-radius: 28px;
	font-weight: 700;
	font-size: 14px;
	white-space: nowrap;
}


/* =========================================================
   HERO
========================================================= */

.hero {
	max-width: 1320px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	padding: 35px 5% 60px;
	gap: 45px;
}

.eyebrow {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	color: var(--purple);
	margin: 0 0 22px;
}

h1 {
	font-size: clamp(48px, 5.2vw, 76px);
	line-height: 1.08;
	letter-spacing: -3.8px;
	margin-bottom: 25px;
	font-weight: 800;
}

em {
	font-style: normal;
	color: var(--purple);
}

.intro {
	font-size: 18px;
	color: var(--muted);
	max-width: 380px;
	line-height: 1.7;
}

.button,
.button:visited {
	display: inline-flex;
	gap: 34px;
	align-items: center;
	background: var(--purple);
	border-radius: 30px;
	padding: 16px 25px;
	color: #fff;
	font-weight: 700;
	transition: transform .2s;
}

.button:hover {
	transform: translateY(-3px);
	color: #fff;
}

.hero-note {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
	margin-top: 30px;
}

.hero-note span {
	font-size: 28px;
	color: var(--pink);
}

.hero-art {
	position: relative;
	background: #fff;
	padding: 45px 25px 15px;
	text-align: center;
}

.hero-art img {
	width: 100%;
	height: 420px;
	object-fit: contain;
	display: block;
}

.art-label {
	position: absolute;
	top: 23px;
	left: 50%;
	transform: translateX(-50%) rotate(-5deg);
	font-size: 12px;
	letter-spacing: .13em;
	color: var(--purple);
	font-weight: 800;
	white-space: nowrap;
}

.hero-art p {
	font-size: 14px;
	margin: 10px 0;
}

.sticker {
	position: absolute;
	right: -15px;
	bottom: 78px;
	transform: rotate(11deg);
	background: var(--lime);
	padding: 22px;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1.3;
	box-shadow: 0 5px 0 #3020440c;
}

.sticker span {
	display: block;
	font-size: 30px;
}


/* =========================================================
   RIBBON
========================================================= */

.ribbon {
	background: #fff;
	padding: 18px 0;
	display: flex;
	justify-content: space-around;
	gap: 26px;
	overflow: hidden;
	white-space: nowrap;
	color: var(--purple);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .1em;
	border-top: 1px solid #eee7f5;
	border-bottom: 1px solid #eee7f5;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
	max-width: 1200px;
	padding: 85px 40px;
	margin: auto;
}

h2 {
	font-size: clamp(32px, 3.4vw, 46px);
	letter-spacing: -1.8px;
	line-height: 1.15;
	margin-bottom: 25px;
}

h3 {
	font-size: 30px;
	letter-spacing: -.8px;
	line-height: 1.2;
	margin-bottom: 14px;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
}

.section-heading > p {
	color: var(--muted);
	font-size: 16px;
}


/* =========================================================
   FRIENDS / FAMILY
========================================================= */

.friends .section-heading {
	display: block;
}

.friends .section-heading h2 {
	margin-bottom: 12px;
}

.friends .section-heading > p {
	margin: 0 0 25px;
	font-size: 18px;
}

.friend-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 70px;
	align-items: center;
	margin-top: 22px;
}

.family-picture {
	position: relative;
	background: #fff;
	padding: 0;
	border: 0;
	border-radius: 0;
	text-align: center;
}

.family-picture img {
	height: auto;
	max-height: none;
	clip-path: none;
	border: 0;
}

.family-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px 20px;
	align-items: end;
}

.family-grid figure {
	margin: 0;
	min-width: 0;
}

.family-grid img {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	clip-path: none;
	display: block;
}

.family-grid figcaption {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .04em;
}


/* WordPress uses complete URLs for src attributes */
.family-grid img[src*="family-confident-white.png"] {
	padding: 0 8%;
}

.mood-explorer > p {
	color: var(--muted);
}


/* =========================================================
   MOOD BUTTONS
========================================================= */

.mood-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 25px 0;
}

.mood-buttons button {
	cursor: pointer;
	background: #fff;
	border: 1px solid #ded4e9;
	border-radius: 30px;
	padding: 12px;
	text-align: left;
	color: var(--ink);
	font-size: 14px;
}

.mood-buttons button:hover {
	border-color: var(--purple);
}

.mood-buttons button[aria-pressed="true"] {
	border-color: var(--purple);
	background: #f2ebff;
	box-shadow: inset 0 0 0 1px var(--purple);
}


/* =========================================================
   REMINDER
========================================================= */

.reminder {
	background: #fff;
	border: 1px solid #e8e1ed;
	border-radius: 18px;
	padding: 25px;
}

.reminder .eyebrow {
	margin-bottom: 14px;
}

blockquote {
	margin: 0 0 14px;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.3;
	letter-spacing: -.5px;
}

.reminder > p:last-child {
	font-size: 15px;
	margin-bottom: 0;
}

.small {
	font-size: 13px;
	margin: 18px 0 0;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection {
	text-align: center;
	padding-top: 30px;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 35px;
	text-align: left;
	align-items: start;
}

.category {
	padding: 32px;
	border-radius: 22px;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	align-items: start;
	background: #fff;
	border: 1px solid #e8e1ed;
}

.plush,
.charms,
.clothing {
	background: #fff;
}

.number {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	margin-bottom: 38px;
}

.category h3 {
	font-size: 26px;
}

.category p {
	font-size: 15px;
	flex: 1;
}

.category.plush > p,
.category.charms > p {
	flex: 0 0 auto;
}

.coming {
	border: 1px solid #3020443a;
	border-radius: 20px;
	padding: 5px 12px;
	font-size: 12px;
}

a.coming:hover {
	background: var(--purple);
	color: #fff;
	border-color: var(--purple);
}


/* =========================================================
   PLUSH BOX
========================================================= */

.plush-box {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	margin: 8px 0 20px;
}


/* =========================================================
   CHARM GALLERY
========================================================= */

.charm-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 12px;
	width: 100%;
	margin: 8px 0 24px;
	background: #fff;
}

.charm-gallery figure {
	margin: 0;
	min-width: 0;
	background: #fff;
}

.charm-gallery img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	background: #fff;
}

.charm-gallery figcaption {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	margin-top: 8px;
}


/* Angry source artwork is larger than the other charm files */
.charm-gallery img[src*="charm-angry-matched.png"] {
	transform: scale(1.2);
}


/* =========================================================
   ACTIVITY CARDS
========================================================= */

.activity-cards {
	grid-column: 2;
	grid-row: 2;
	background: #fff;
	border: 1px solid #e8e1ed;
}

.activity-cards > p {
	flex: 0 0 auto;
}

.activity-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	width: 100%;
	margin: 12px 0 24px;
}

.activity-images figure {
	margin: 0;
	min-width: 0;
}

.activity-images img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: contain;
}

.activity-images figcaption {
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}


/* =========================================================
   CLOTHING POSITION
========================================================= */

.category.clothing {
	grid-column: 3;
	grid-row: 1;
}


/* =========================================================
   STORY
========================================================= */

.story {
	display: grid;
	grid-template-columns:
		minmax(0, .8fr)
		minmax(0, 1.2fr);
	gap: 60px;
	align-items: start;
	border-top: 1px solid #ede7f2;
}

.story > div > p:not(.eyebrow):not(.story-sign) {
	color: var(--muted);
	font-size: 17px;
}

.story-copy p {
	line-height: 1.8;
	margin-bottom: 24px;
}

.story-sign {
	color: var(--purple) !important;
	font-size: 20px;
	font-weight: 700;
}

.story-copy p:last-child {
	font-weight: 700;
	color: var(--purple) !important;
}


/* =========================================================
   CLOSING
========================================================= */

.closing {
	text-align: center;
	background: #fff;
	color: var(--ink);
	padding: 70px 20px;
	border-top: 1px solid #eee7f5;
}

.closing > p {
	font-size: 12px;
	letter-spacing: .15em;
}

.closing h2 {
	font-size: 60px;
}

.closing em {
	color: var(--purple);
}

.closing .light,
.closing .light:visited {
	background: var(--purple);
	color: #fff;
	font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
	padding: 35px 5%;
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
	max-width: 1320px;
	margin: auto;
	font-size: 13px;
	color: var(--muted);
	border-top: 1px solid #f1edf5;
}

.site-footer p {
	margin: 0;
}

.footer-brand {
	font-weight: 900;
	font-size: 21px;
	color: var(--purple);
}

.footer-brand span {
	font-size: 12px;
	color: #967029;
	letter-spacing: 2px;
}

.footer-logo {
	display: block;
	width: 150px;
	height: auto;
}


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

.woocommerce {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 40px;
}

.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px 20px;
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

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

.woocommerce ul.products li.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border: 1px solid #e8e1ed;
	padding: 20px;
}

.woocommerce ul.products li.product
.woocommerce-loop-product__title {
	color: var(--ink);
	font-size: 18px;
	font-weight: 700;
}

.woocommerce ul.products li.product .price {
	color: var(--purple);
	font-weight: 700;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--purple);
	color: #fff;
	border-radius: 30px;
	padding: 13px 20px;
	font-weight: 700;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: #4f239e;
	color: #fff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

	.site-header {
		flex-wrap: wrap;
		padding: 18px 6%;
		gap: 18px;
	}

	.site-header nav {
		order: 3;
		width: 100%;
		justify-content: center;
		gap: 24px;
		font-size: 13px;
	}

	.announcement span {
		display: none;
	}

	.brand-logo {
		width: 140px;
	}

	.nav-cta {
		font-size: 12px;
	}

	.hero {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 35px 7% 45px;
	}

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

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

	.hero-note {
		justify-content: center;
	}

	h1 {
		letter-spacing: -2px;
	}

	.hero-art {
		max-width: 500px;
		width: 100%;
		margin: auto;
	}

	.hero-art img {
		height: 360px;
	}

	.sticker {
		right: -8px;
		bottom: 55px;
		padding: 18px;
	}

	.ribbon {
		justify-content: start;
		padding-left: 20px;
	}

	.section {
		padding: 55px 6%;
	}

	.section-heading {
		display: block;
	}

	.friend-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.category-grid {
		grid-template-columns: 1fr;
	}

	.category {
		min-height: 230px;
	}

	.number {
		margin-bottom: 24px;
	}

	.activity-cards,
	.category.clothing {
		grid-column: auto;
		grid-row: auto;
	}

	.story {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.closing h2 {
		font-size: 46px;
	}

	.site-footer {
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px 30px;
	}

	.site-footer > span {
		width: 100%;
		text-align: center;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

	.announcement {
		font-size: 12px;
	}

	.site-header {
		padding: 15px 20px;
	}

	.site-header nav {
		gap: 12px 20px;
		flex-wrap: wrap;
	}

	.nav-cta {
		padding: 8px 12px;
	}

	.hero {
		padding: 25px 20px 40px;
	}

	.hero-art img {
		height: 300px;
	}

	.sticker {
		font-size: 11px;
		padding: 13px;
	}

	.family-grid {
		gap: 25px 12px;
	}

	.family-grid figcaption {
		font-size: 11px;
	}

	.mood-buttons {
		grid-template-columns: 1fr;
	}

	.category {
		padding: 25px;
	}

	.charm-gallery {
		gap: 20px 10px;
	}

	.activity-images {
		gap: 12px;
	}

	.story {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.closing h2 {
		font-size: 39px;
	}

	.woocommerce {
		padding: 40px 20px;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}

	.button {
		transition: none;
	}
}

/* =========================================================
   CUSTOM ZINKI SINGLE PRODUCT
========================================================= */

.single-product .woocommerce {
	max-width: none;
	padding: 0;
}


/* =========================================================
   PRODUCT PAGE
========================================================= */

.zinki-product-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 40px 90px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.zinki-product-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
	color: var(--muted);
	font-size: 13px;
}

.zinki-product-breadcrumb a:hover {
	color: var(--purple);
}


/* =========================================================
   PRODUCT LAYOUT
========================================================= */

.zinki-product-layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1.05fr)
		minmax(350px, .95fr);
	gap: 80px;
	align-items: start;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.zinki-product-main-image {
	background: #fff;
	border: 1px solid #eee7f5;
	padding: 30px;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zinki-product-main-image img {
	display: block;
	width: 100%;
	height: 570px;
	object-fit: contain;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.zinki-product-thumbnails {
	display: grid;
	grid-template-columns:
		repeat(4, 1fr);
	gap: 10px;
	margin-top: 12px;
}

.zinki-product-thumbnail {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	padding: 8px;
	background: #fff;
	border: 1px solid #e8e1ed;
	cursor: pointer;
}

.zinki-product-thumbnail:hover {
	border-color: var(--purple);
}

.zinki-product-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.zinki-product-info {
	padding-top: 35px;
	position: sticky;
	top: 40px;
}

.zinki-product-title {
	margin: 0 0 20px;
	font-size: clamp(50px, 5vw, 72px);
	line-height: 1;
	letter-spacing: -3px;
	color: var(--ink);
}

.zinki-product-price {
	margin-bottom: 25px;
	color: var(--purple);
	font-size: 25px;
	font-weight: 800;
}

.zinki-product-price .amount {
	color: var(--purple);
}

.zinki-product-short-description {
	max-width: 460px;
	margin-bottom: 30px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

.zinki-product-short-description p:last-child {
	margin-bottom: 0;
}


/* =========================================================
   PRODUCT MESSAGE
========================================================= */

.zinki-product-message {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 30px 0;
	padding: 20px 22px;
	border: 1px solid #e8e1ed;
	border-radius: 18px;
}

.zinki-product-heart {
	color: var(--pink);
	font-size: 35px;
	line-height: 1;
}

.zinki-product-message strong {
	display: block;
	margin-bottom: 2px;
}

.zinki-product-message p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}


/* =========================================================
   ADD TO CART
========================================================= */

.zinki-product-cart {
	margin-top: 30px;
	margin-bottom: 35px;
}

.zinki-product-cart form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
}

.zinki-product-cart .quantity {
	margin: 0 !important;
}

.zinki-product-cart .quantity input.qty {
	width: 70px;
	min-height: 52px;
	border: 1px solid #ded4e9;
	border-radius: 30px;
	text-align: center;
	background: #fff;
}

.zinki-product-cart button.single_add_to_cart_button {
	min-height: 52px;
	padding: 14px 30px !important;
	border: 0 !important;
	border-radius: 30px !important;
	background: var(--purple) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
}

.zinki-product-cart button.single_add_to_cart_button:hover {
	background: #4f239e !important;
}


/* =========================================================
   PRODUCT META
========================================================= */

.zinki-product-meta {
	border-top: 1px solid #eee7f5;
	padding-top: 24px;
}

.zinki-product-meta > div {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 20px;
	padding: 7px 0;
	font-size: 13px;
}

.zinki-product-meta span {
	color: var(--muted);
}

.zinki-product-meta strong {
	font-weight: 600;
}

.zinki-product-meta a {
	color: var(--purple);
}


/* =========================================================
   STORY
========================================================= */

.zinki-product-story {
	border-top: 1px solid #eee7f5;
	border-bottom: 1px solid #eee7f5;
}

.zinki-product-story-inner {
	max-width: 1200px;
	margin: auto;
	padding: 90px 40px;
	display: grid;
	grid-template-columns:
		minmax(0, .8fr)
		minmax(0, 1.2fr);
	gap: 80px;
}

.zinki-product-story-heading h2 {
	margin: 0;
	font-size: clamp(38px, 4vw, 56px);
}

.zinki-product-story-copy {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.8;
}

.zinki-product-story-copy p {
	margin-bottom: 24px;
}


/* =========================================================
   PRODUCT STRIP
========================================================= */

.zinki-product-strip {
	width: 100%;
	padding: 18px 4%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	overflow: hidden;
	border-bottom: 1px solid #eee7f5;
	color: var(--purple);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	white-space: nowrap;
}


/* =========================================================
   RELATED PRODUCTS
========================================================= */

.zinki-related-products {
	max-width: 1200px;
	margin: auto;
	padding: 90px 40px;
}

.zinki-related-heading {
	margin-bottom: 40px;
}

.zinki-related-heading h2 {
	margin-bottom: 0;
}

.zinki-related-grid {
	display: grid;
	grid-template-columns:
		repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.zinki-related-card {
	min-width: 0;
}

.zinki-related-image {
	display: block;
	padding: 18px;
	border: 1px solid #e8e1ed;
	overflow: hidden;
}

.zinki-related-image img {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	transition: transform .25s ease;
}

.zinki-related-card:hover
.zinki-related-image img {
	transform: scale(1.025);
}

.zinki-related-info {
	padding-top: 18px;
}

.zinki-related-info h3 {
	margin: 0 0 7px;
	font-size: 20px;
}

.zinki-related-info h3 a:hover {
	color: var(--purple);
}

.zinki-related-price {
	margin-bottom: 15px;
	color: var(--purple);
	font-size: 15px;
	font-weight: 700;
}

.zinki-related-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 2px;
	border-bottom: 1px solid var(--ink);
	font-size: 13px;
	font-weight: 700;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.zinki-product-closing {
	padding: 90px 20px 100px;
	text-align: center;
	border-top: 1px solid #eee7f5;
}

.zinki-product-closing h2 {
	margin: 0 0 30px;
	font-size: clamp(48px, 5vw, 68px);
	line-height: 1;
}

.zinki-product-closing em {
	color: var(--purple);
}


/* =========================================================
   REMOVE DEFAULT WOO SINGLE ELEMENTS
========================================================= */

.single-product
.woocommerce-breadcrumb,

.single-product
.woocommerce-tabs,

.single-product
.related.products,

.single-product
.product_meta {
	display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.zinki-product-layout {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.zinki-product-info {
		position: static;
		padding-top: 10px;
	}

	.zinki-product-story-inner {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.zinki-related-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	.zinki-product-strip {
		justify-content: flex-start;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

	.zinki-product-page {
		padding:
			20px 20px 60px;
	}

	.zinki-product-main-image {
		min-height: 400px;
		padding: 15px;
	}

	.zinki-product-main-image img {
		height: 390px;
	}

	.zinki-product-title {
		font-size: 45px;
		letter-spacing: -2px;
	}

	.zinki-product-cart form.cart {
		align-items: stretch;
		flex-direction: column;
	}

	.zinki-product-cart .quantity input.qty {
		width: 100%;
	}

	.zinki-product-cart
	button.single_add_to_cart_button {
		width: 100%;
	}

	.zinki-product-story-inner {
		padding:
			60px 20px;
	}

	.zinki-related-products {
		padding:
			60px 20px;
	}

	.zinki-related-grid {
		grid-template-columns: 1fr 1fr;
		gap:
			30px 12px;
	}

	.zinki-related-info h3 {
		font-size: 16px;
	}

	.zinki-product-closing {
		padding:
			65px 20px 75px;
	}

}

/* =========================================================
   ADD TO CART FEEDBACK
========================================================= */

.zinki-product-cart .single_add_to_cart_button {
	position: relative;
	min-width: 150px;
	transition:
		background .2s ease,
		opacity .2s ease,
		transform .2s ease;
}

.zinki-product-cart .single_add_to_cart_button.is-loading {
	opacity: .75;
	cursor: wait;
	pointer-events: none;
}

.zinki-product-cart .single_add_to_cart_button.is-loading::after {
	content: "";
	width: 16px;
	height: 16px;
	margin-left: 10px;
	border: 2px solid rgba(255,255,255,.45);
	border-top-color: #fff;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	animation: zinki-spin .7s linear infinite;
}

.zinki-product-cart .single_add_to_cart_button.is-added {
	background: #4f239e !important;
}

@keyframes zinki-spin {
	to {
		transform: rotate(360deg);
	}
}

/* =========================================================
   CUSTOM ZINKI CART
========================================================= */

.woocommerce-cart .woocommerce {
	max-width: none;
	padding: 0;
}

.zinki-cart-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 55px 40px 100px;
}

.zinki-cart-heading {
	max-width: 650px;
	margin-bottom: 55px;
}

.zinki-cart-heading h1 {
	margin-bottom: 20px;
}

.zinki-cart-heading > p:last-child {
	color: var(--muted);
	font-size: 18px;
}


/* =========================================================
   CART LAYOUT
========================================================= */

.zinki-cart-layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1.5fr)
		minmax(320px, .7fr);
	gap: 70px;
	align-items: start;
}


/* =========================================================
   CART ITEMS
========================================================= */

.zinki-cart-items-heading {
	display: grid;
	grid-template-columns:
		1fr 130px 110px;
	gap: 20px;
	padding: 0 0 14px;
	border-bottom: 1px solid #eee7f5;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.zinki-cart-items-heading span:nth-child(2),
.zinki-cart-items-heading span:nth-child(3) {
	text-align: center;
}

.zinki-cart-item {
	display: grid;
	grid-template-columns:
		1fr 130px 110px;
	gap: 20px;
	align-items: center;
	padding: 28px 0;
	border-bottom: 1px solid #eee7f5;
}

.zinki-cart-product {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 22px;
	align-items: center;
}

.zinki-cart-product-image {
	border: 1px solid #eee7f5;
	padding: 8px;
}

.zinki-cart-product-image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1.25;
	object-fit: contain;
}

.zinki-cart-product-info h3 {
	margin: 0 0 5px;
	font-size: 20px;
}

.zinki-cart-product-info h3 a:hover {
	color: var(--purple);
}

.zinki-cart-unit-price {
	margin-bottom: 8px;
	color: var(--purple);
	font-size: 14px;
	font-weight: 700;
}

.zinki-remove-item {
	display: inline-block;
	margin-top: 8px;
	color: var(--muted);
	font-size: 12px;
	text-decoration: underline;
}

.zinki-remove-item:hover {
	color: var(--purple);
}


/* =========================================================
   QUANTITY
========================================================= */

.zinki-cart-quantity {
	display: flex;
	justify-content: center;
}

.zinki-cart-quantity .quantity input.qty {
	width: 72px;
	min-height: 44px;
	border: 1px solid #ded4e9;
	border-radius: 30px;
	background: #fff;
	text-align: center;
}


/* =========================================================
   TOTAL
========================================================= */

.zinki-cart-line-total {
	text-align: center;
	font-weight: 800;
}


/* =========================================================
   CART ACTIONS
========================================================= */

.zinki-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
}

.zinki-continue-shopping {
	font-size: 13px;
	font-weight: 700;
}

.zinki-continue-shopping:hover {
	color: var(--purple);
}

.zinki-update-cart {
	border: 0;
	cursor: pointer;
}


/* =========================================================
   SUMMARY
========================================================= */

.zinki-cart-summary {
	position: sticky;
	top: 35px;
	padding: 32px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	background: #fff;
}

.zinki-cart-summary h2 {
	margin-bottom: 30px;
	font-size: 30px;
}

.zinki-cart-summary-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 0;
	border-top: 1px solid #eee7f5;
}

.zinki-cart-summary-row strong {
	font-size: 17px;
}


/* =========================================================
   COUPON
========================================================= */

.zinki-cart-coupon {
	padding: 20px 0;
	border-top: 1px solid #eee7f5;
}

.zinki-cart-coupon label {
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 700;
}

.zinki-cart-coupon-row {
	display: flex;
	gap: 8px;
}

.zinki-cart-coupon-row input {
	width: 100%;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid #ded4e9;
	border-radius: 30px;
	background: #fff;
}

.zinki-coupon-button {
	flex-shrink: 0;
	padding: 10px 18px;
	border: 1px solid var(--purple);
	border-radius: 30px;
	background: #fff;
	color: var(--purple);
	font-weight: 700;
	cursor: pointer;
}

.zinki-coupon-button:hover {
	background: var(--purple);
	color: #fff;
}


/* =========================================================
   WOO CART TOTALS INSIDE CUSTOM SUMMARY
========================================================= */

.zinki-cart-summary .cart_totals {
	width: 100%;
	float: none;
	margin: 0;
}

.zinki-cart-summary .cart_totals > h2 {
	display: none;
}

.zinki-cart-summary .shop_table {
	margin: 0;
	border: 0;
}

.zinki-cart-summary .shop_table th,
.zinki-cart-summary .shop_table td {
	padding: 14px 0;
	border-color: #eee7f5;
	background: transparent;
}

.zinki-cart-summary .shop_table th {
	font-weight: 500;
}

.zinki-cart-summary .shop_table td {
	text-align: right;
	font-weight: 700;
}

.zinki-cart-summary .order-total th,
.zinki-cart-summary .order-total td {
	padding-top: 22px;
	font-size: 19px;
}

.zinki-cart-summary .wc-proceed-to-checkout {
	padding: 25px 0 0;
}

.zinki-cart-summary
.wc-proceed-to-checkout
.checkout-button {
	display: block;
	width: 100%;
	margin: 0;
	padding: 15px 20px !important;
	border-radius: 30px !important;
	background: var(--purple) !important;
	color: #fff !important;
	text-align: center;
	font-size: 15px !important;
	font-weight: 700 !important;
}

.zinki-cart-summary
.wc-proceed-to-checkout
.checkout-button:hover {
	background: #4f239e !important;
}


/* =========================================================
   NOTE
========================================================= */

.zinki-cart-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px solid #eee7f5;
	color: var(--muted);
	font-size: 12px;
}

.zinki-cart-note span {
	color: var(--pink);
	font-size: 22px;
}

.zinki-cart-note p {
	margin: 0;
}


/* =========================================================
   EMPTY CART
========================================================= */

.zinki-cart-empty {
	max-width: 650px;
	margin: 80px auto 120px;
	padding: 60px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	text-align: center;
}

.zinki-cart-empty h2 {
	font-size: 42px;
}

.zinki-cart-empty > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: var(--muted);
}


/* =========================================================
   HIDE DEFAULT CART ODDITIES
========================================================= */

.woocommerce-cart .woocommerce-notices-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.zinki-cart-layout {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.zinki-cart-summary {
		position: static;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.zinki-cart-page {
		padding: 40px 20px 70px;
	}

	.zinki-cart-heading {
		margin-bottom: 35px;
	}

	.zinki-cart-items-heading {
		display: none;
	}

	.zinki-cart-item {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.zinki-cart-product {
		grid-template-columns: 95px 1fr;
	}

	.zinki-cart-quantity {
		justify-content: flex-start;
	}

	.zinki-cart-line-total {
		text-align: left;
	}

	.zinki-cart-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.zinki-update-cart {
		width: 100%;
		justify-content: center;
	}

	.zinki-cart-summary {
		padding: 25px 20px;
	}

	.zinki-cart-empty {
		margin: 40px 0 80px;
		padding: 40px 22px;
	}

}

/* =========================================================
   ZINKI CUSTOM CART PAGE
========================================================= */

.page-template-cart-page .woocommerce {
	max-width: none;
	padding: 0;
}

.zinki-cart-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 65px 40px 100px;
}


/* =========================================================
   HEADING
========================================================= */

.zinki-cart-heading {
	max-width: 720px;
	margin-bottom: 65px;
}

.zinki-cart-heading h1 {
	margin: 0 0 22px;
	font-size: clamp(50px, 5vw, 76px);
	line-height: 1.02;
	letter-spacing: -3.5px;
}

.zinki-cart-heading > p:last-child {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}


/* =========================================================
   LAYOUT
========================================================= */

.zinki-cart-layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1.55fr)
		minmax(330px, .7fr);
	gap: 70px;
	align-items: start;
}


/* =========================================================
   COLUMN HEADINGS
========================================================= */

.zinki-cart-column-headings {
	display: grid;
	grid-template-columns: 1fr 115px 100px;
	gap: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid #eee7f5;
	color: var(--purple);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.zinki-cart-column-headings span:nth-child(2),
.zinki-cart-column-headings span:nth-child(3) {
	text-align: center;
}


/* =========================================================
   CART PRODUCT
========================================================= */

.zinki-cart-product {
	display: grid;
	grid-template-columns: 1fr 115px 100px;
	gap: 20px;
	align-items: center;
	padding: 30px 0;
	border-bottom: 1px solid #eee7f5;
}

.zinki-cart-product-main {
	display: grid;
	grid-template-columns: 145px 1fr;
	gap: 24px;
	align-items: center;
}

.zinki-cart-image {
	display: block;
	background: #fff;
	border: 1px solid #eee7f5;
	padding: 10px;
	overflow: hidden;
}

.zinki-cart-image img {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	transition: transform .25s ease;
}

.zinki-cart-image:hover img {
	transform: scale(1.025);
}


/* =========================================================
   PRODUCT COPY
========================================================= */

.zinki-cart-feeling {
	margin: 0 0 6px;
	color: var(--purple);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
}

.zinki-cart-product-copy h2 {
	margin: 0 0 5px;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: -.7px;
}

.zinki-cart-product-copy h2 a:hover {
	color: var(--purple);
}

.zinki-cart-price {
	margin-bottom: 8px;
	color: var(--purple);
	font-size: 14px;
	font-weight: 700;
}

.zinki-cart-remove {
	display: inline-block;
	margin-top: 9px;
	color: var(--muted);
	font-size: 12px;
	text-decoration: underline;
}

.zinki-cart-remove:hover {
	color: var(--purple);
}


/* =========================================================
   QUANTITY
========================================================= */

.zinki-cart-quantity {
	display: flex;
	justify-content: center;
}

.zinki-cart-quantity .quantity {
	margin: 0 !important;
}

.zinki-cart-quantity input.qty {
	width: 70px;
	height: 46px;
	border: 1px solid #ded4e9;
	border-radius: 30px;
	background: #fff;
	text-align: center;
	color: var(--ink);
}


/* =========================================================
   LINE TOTAL
========================================================= */

.zinki-cart-total {
	text-align: center;
	font-size: 15px;
	font-weight: 800;
}


/* =========================================================
   ACTIONS
========================================================= */

.zinki-cart-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding-top: 25px;
}

.zinki-cart-continue {
	font-size: 13px;
	font-weight: 700;
}

.zinki-cart-continue:hover {
	color: var(--purple);
}

.zinki-cart-update {
	cursor: pointer;
	padding: 11px 20px;
	border: 1px solid #d9c9ed;
	border-radius: 30px;
	background: #fff;
	color: var(--purple);
	font-weight: 700;
}

.zinki-cart-update:hover {
	border-color: var(--purple);
}


/* =========================================================
   SUMMARY
========================================================= */

.zinki-cart-summary {
	position: sticky;
	top: 40px;
	padding: 35px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	background: #fff;
}

.zinki-cart-summary .eyebrow {
	margin-bottom: 10px;
}

.zinki-cart-summary > h2 {
	margin: 0 0 30px;
	font-size: 35px;
	line-height: 1.05;
}


/* =========================================================
   SUMMARY LINES
========================================================= */

.zinki-summary-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 0;
	border-top: 1px solid #eee7f5;
	font-size: 14px;
}

.zinki-summary-line > span {
	color: var(--muted);
}

.zinki-summary-line strong {
	text-align: right;
}

.zinki-summary-total {
	margin-top: 5px;
	padding-top: 21px;
	font-size: 18px;
}

.zinki-summary-total > span {
	color: var(--ink);
	font-weight: 700;
}

.zinki-summary-total strong {
	color: var(--purple);
	font-size: 21px;
}


/* =========================================================
   COUPON
========================================================= */

.zinki-cart-coupon {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #eee7f5;
}

.zinki-cart-coupon label {
	display: block;
	margin-bottom: 9px;
	font-size: 12px;
	font-weight: 700;
}

.zinki-cart-coupon > div {
	display: flex;
	gap: 8px;
}

.zinki-cart-coupon input {
	min-width: 0;
	width: 100%;
	padding: 11px 15px;
	border: 1px solid #ded4e9;
	border-radius: 30px;
	background: #fff;
	color: var(--ink);
}

.zinki-cart-coupon button {
	flex-shrink: 0;
	cursor: pointer;
	padding: 10px 17px;
	border: 1px solid var(--purple);
	border-radius: 30px;
	background: #fff;
	color: var(--purple);
	font-weight: 700;
}

.zinki-cart-coupon button:hover {
	background: var(--purple);
	color: #fff;
}


/* =========================================================
   CHECKOUT
========================================================= */

.zinki-checkout-button,
.zinki-checkout-button:visited {
	width: 100%;
	margin-top: 28px;
	padding: 15px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 30px;
	background: var(--purple);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	transition:
		transform .2s ease,
		background .2s ease;
}

.zinki-checkout-button:hover {
	transform: translateY(-2px);
	background: #4f239e;
	color: #fff;
}


/* =========================================================
   COMFORT MESSAGE
========================================================= */

.zinki-cart-comfort {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid #eee7f5;
}

.zinki-cart-comfort > span {
	color: var(--pink);
	font-size: 28px;
}

.zinki-cart-comfort strong {
	display: block;
	font-size: 12px;
}

.zinki-cart-comfort p {
	margin: 2px 0 0;
	color: var(--muted);
	font-size: 11px;
}


/* =========================================================
   NOTICES
========================================================= */

.zinki-cart-page .woocommerce-message,
.zinki-cart-page .woocommerce-error,
.zinki-cart-page .woocommerce-info {
	margin-bottom: 35px;
	padding: 18px 22px;
	border: 1px solid #e8e1ed;
	border-top: 1px solid #e8e1ed;
	border-radius: 15px;
	background: #fff;
	color: var(--ink);
}

.zinki-cart-page .woocommerce-message::before {
	color: var(--purple);
}


/* =========================================================
   EMPTY CART
========================================================= */

.zinki-cart-empty {
	max-width: 650px;
	margin: 30px auto 90px;
	padding: 65px 45px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	text-align: center;
}

.zinki-empty-heart {
	margin-bottom: 15px;
	color: var(--pink);
	font-size: 50px;
}

.zinki-cart-empty h2 {
	margin-bottom: 20px;
	font-size: clamp(38px, 4vw, 55px);
	line-height: 1.05;
}

.zinki-cart-empty > p:not(.eyebrow) {
	max-width: 420px;
	margin: 0 auto 30px;
	color: var(--muted);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.zinki-cart-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.zinki-cart-summary {
		position: static;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.zinki-cart-page {
		padding: 45px 20px 75px;
	}

	.zinki-cart-heading {
		margin-bottom: 40px;
	}

	.zinki-cart-heading h1 {
		font-size: 47px;
		letter-spacing: -2px;
	}

	.zinki-cart-column-headings {
		display: none;
	}

	.zinki-cart-product {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.zinki-cart-product-main {
		grid-template-columns: 100px 1fr;
		gap: 18px;
	}

	.zinki-cart-product-copy h2 {
		font-size: 20px;
	}

	.zinki-cart-quantity {
		justify-content: flex-start;
		padding-left: 118px;
	}

	.zinki-cart-total {
		padding-left: 118px;
		text-align: left;
	}

	.zinki-cart-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.zinki-cart-continue {
		text-align: center;
	}

	.zinki-cart-summary {
		padding: 27px 22px;
	}

	.zinki-cart-empty {
		padding: 45px 22px;
	}

}

/* =========================================================
   ZINKI CUSTOM CHECKOUT
========================================================= */

.page-template-checkout-page .woocommerce {
	max-width: none;
	padding: 0;
}


/* =========================================================
   PAGE
========================================================= */

.zinki-checkout-page {
	max-width: 1200px;
	margin: 0 auto;
	padding: 65px 40px 100px;
}


/* =========================================================
   HEADING
========================================================= */

.zinki-checkout-heading {
	max-width: 700px;
	margin-bottom: 65px;
}

.zinki-checkout-heading h1 {
	margin: 0 0 22px;
	font-size: clamp(50px, 5vw, 76px);
	line-height: 1.02;
	letter-spacing: -3.5px;
}

.zinki-checkout-heading > p:last-child {
	max-width: 530px;
	margin: 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}


/* =========================================================
   LAYOUT
========================================================= */

.zinki-checkout-layout {
	display: grid;
	grid-template-columns:
		minmax(0, 1.45fr)
		minmax(300px, .65fr);
	gap: 70px;
	align-items: start;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.zinki-checkout-section-title {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 35px;
}

.zinki-checkout-section-title > span {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d9c9ed;
	border-radius: 50%;
	color: var(--purple);
	font-size: 12px;
	font-weight: 800;
}

.zinki-checkout-section-title .eyebrow {
	margin-bottom: 6px;
}

.zinki-checkout-section-title h2 {
	margin: 0;
	font-size: 30px;
}


/* =========================================================
   CHECKOUT BLOCK / FORM WRAPPER
========================================================= */

.zinki-checkout-main .woocommerce {
	padding: 0;
}

.zinki-checkout-main form.checkout {
	margin: 0;
}

.zinki-checkout-main
.woocommerce-checkout {
	width: 100%;
}


/* =========================================================
   CHECKOUT COLUMN RESET
========================================================= */

.zinki-checkout-main
#customer_details {
	width: 100%;
	float: none;
}

.zinki-checkout-main
#customer_details .col-1,
.zinki-checkout-main
#customer_details .col-2 {
	width: 100%;
	float: none;
}


/* =========================================================
   FORM SECTIONS
========================================================= */

.zinki-checkout-main
.woocommerce-billing-fields,

.zinki-checkout-main
.woocommerce-shipping-fields,

.zinki-checkout-main
.woocommerce-additional-fields {
	margin-bottom: 45px;
	padding: 30px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	background: #fff;
}

.zinki-checkout-main
.woocommerce-billing-fields > h3,

.zinki-checkout-main
.woocommerce-shipping-fields > h3,

.zinki-checkout-main
.woocommerce-additional-fields > h3 {
	margin: 0 0 25px;
	font-size: 28px;
}


/* =========================================================
   FIELDS
========================================================= */

.zinki-checkout-main
.form-row {
	margin-bottom: 18px;
}

.zinki-checkout-main
.form-row label {
	display: block;
	margin-bottom: 7px;
	color: var(--ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .02em;
}

.zinki-checkout-main
.input-text,

.zinki-checkout-main
select,

.zinki-checkout-main
.select2-selection {
	min-height: 50px;
	width: 100%;
	border: 1px solid #ded4e9 !important;
	border-radius: 14px !important;
	background: #fff !important;
	color: var(--ink);
}

.zinki-checkout-main
.input-text {
	padding: 12px 15px;
}

.zinki-checkout-main
textarea.input-text {
	min-height: 110px;
	resize: vertical;
}

.zinki-checkout-main
.select2-container
.select2-selection--single {
	height: 50px;
	display: flex;
	align-items: center;
}

.zinki-checkout-main
.select2-selection__rendered {
	padding-left: 14px !important;
}

.zinki-checkout-main
.select2-selection__arrow {
	height: 48px !important;
}


/* =========================================================
   FOCUS
========================================================= */

.zinki-checkout-main
.input-text:focus,

.zinki-checkout-main
select:focus {
	outline: none;
	border-color: var(--purple) !important;
	box-shadow: 0 0 0 1px var(--purple);
}


/* =========================================================
   ORDER REVIEW
========================================================= */

.zinki-checkout-main
#order_review_heading {
	margin: 50px 0 20px;
	font-size: 30px;
}

.zinki-checkout-main
#order_review {
	padding: 30px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	background: #fff;
}

.zinki-checkout-main
.woocommerce-checkout-review-order-table {
	margin: 0 0 25px;
	border: 0;
}

.zinki-checkout-main
.woocommerce-checkout-review-order-table th,

.zinki-checkout-main
.woocommerce-checkout-review-order-table td {
	padding: 14px 0;
	border-color: #eee7f5;
	background: transparent;
}

.zinki-checkout-main
.woocommerce-checkout-review-order-table th {
	font-weight: 600;
}

.zinki-checkout-main
.woocommerce-checkout-review-order-table td {
	text-align: right;
}

.zinki-checkout-main
.order-total th,

.zinki-checkout-main
.order-total td {
	padding-top: 22px;
	font-size: 18px;
}


/* =========================================================
   PAYMENT
========================================================= */

.zinki-checkout-main
#payment {
	margin-top: 30px;
	border: 0;
	border-radius: 22px;
	background: #fff;
}

.zinki-checkout-main
#payment ul.payment_methods {
	margin: 0;
	padding: 0 0 25px;
	border-bottom: 1px solid #eee7f5;
}

.zinki-checkout-main
#payment ul.payment_methods li {
	padding: 12px 0;
}

.zinki-checkout-main
#payment div.payment_box {
	border-radius: 14px;
	background: #f7f3fb;
	color: var(--ink);
}

.zinki-checkout-main
#payment div.payment_box::before {
	border-bottom-color: #f7f3fb;
}


/* =========================================================
   TERMS
========================================================= */

.zinki-checkout-main
.woocommerce-terms-and-conditions-wrapper {
	margin: 25px 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.6;
}


/* =========================================================
   PLACE ORDER
========================================================= */

.zinki-checkout-main
#place_order {
	width: 100%;
	min-height: 54px;
	margin-top: 15px;
	border: 0 !important;
	border-radius: 30px !important;
	background: var(--purple) !important;
	color: #fff !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	transition:
		transform .2s ease,
		background .2s ease;
}

.zinki-checkout-main
#place_order:hover {
	transform: translateY(-2px);
	background: #4f239e !important;
}


/* =========================================================
   PAYMENT ERROR
========================================================= */

.zinki-checkout-main
.woocommerce-error,

.zinki-checkout-main
.woocommerce-info,

.zinki-checkout-main
.woocommerce-message {
	margin-bottom: 30px;
	padding: 18px 22px;
	border: 1px solid #e8e1ed;
	border-top: 1px solid #e8e1ed;
	border-radius: 14px;
	background: #fff;
	color: var(--ink);
}


/* =========================================================
   SIDE MESSAGE
========================================================= */

.zinki-checkout-message {
	position: sticky;
	top: 40px;
}

.zinki-checkout-message-inner {
	padding: 38px 32px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	background: #fff;
}

.zinki-checkout-heart {
	display: block;
	margin-bottom: 15px;
	color: var(--pink);
	font-size: 42px;
	line-height: 1;
}

.zinki-checkout-message h2 {
	margin: 0 0 22px;
	font-size: 38px;
	line-height: 1.05;
}

.zinki-checkout-message > div > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.75;
}


/* =========================================================
   PROMISE
========================================================= */

.zinki-checkout-promise {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: 30px;
	padding-top: 25px;
	border-top: 1px solid #eee7f5;
}

.zinki-checkout-promise > span {
	color: var(--purple);
	font-size: 18px;
}

.zinki-checkout-promise strong {
	display: block;
	font-size: 13px;
}

.zinki-checkout-promise p {
	margin: 3px 0 0;
	color: var(--muted);
	font-size: 12px;
}


/* =========================================================
   CHECKOUT STRIP
========================================================= */

.zinki-checkout-strip {
	border-top: 1px solid #eee7f5;
}


/* =========================================================
   TWO COLUMN FIELDS
========================================================= */

.zinki-checkout-main
.form-row-first,

.zinki-checkout-main
.form-row-last {
	width: calc(50% - 8px);
}

.zinki-checkout-main
.form-row-first {
	float: left;
}

.zinki-checkout-main
.form-row-last {
	float: right;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.zinki-checkout-layout {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.zinki-checkout-message {
		position: static;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.zinki-checkout-page {
		padding: 45px 20px 75px;
	}

	.zinki-checkout-heading {
		margin-bottom: 45px;
	}

	.zinki-checkout-heading h1 {
		font-size: 46px;
		letter-spacing: -2px;
	}

	.zinki-checkout-section-title {
		gap: 12px;
	}

	.zinki-checkout-section-title h2 {
		font-size: 24px;
	}

	.zinki-checkout-main
	.woocommerce-billing-fields,

	.zinki-checkout-main
	.woocommerce-shipping-fields,

	.zinki-checkout-main
	.woocommerce-additional-fields,

	.zinki-checkout-main
	#order_review {
		padding: 22px 18px;
	}

	.zinki-checkout-main
	.form-row-first,

	.zinki-checkout-main
	.form-row-last {
		width: 100%;
		float: none;
	}

	.zinki-checkout-message-inner {
		padding: 30px 24px;
	}

	.zinki-checkout-message h2 {
		font-size: 32px;
	}

}

/* =========================================================
   MOBILE HERO STICKER
========================================================= */

@media (max-width: 800px) {

	.hero-art .sticker {
		left: 50%;
		right: auto;
		transform:
			translateX(-50%)
			rotate(11deg);
	}

}

@media (max-width: 800px) {

	.hero-art .sticker {
		left: 50%;
		right: auto;
		bottom: 35px;
		transform:
			translateX(-50%)
			rotate(11deg);
	}

}

/* =========================================================
   CUSTOM ZINKI SHOP
========================================================= */

.post-type-archive-product .site-main {
	max-width: none;
}


/* =========================================================
   SHOP HERO
========================================================= */

.zinki-shop-hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 75px 40px 85px;
	text-align: center;
}

.zinki-shop-hero .eyebrow {
	margin-bottom: 18px;
}

.zinki-shop-hero h1 {
	margin-bottom: 25px;
}

.zinki-shop-hero > p:last-child {
	max-width: 530px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.7;
}


/* =========================================================
   SHOP SECTION
========================================================= */

.zinki-shop-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 85px 40px 100px;
}

.zinki-shop-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 45px;
}

.zinki-shop-heading .eyebrow {
	margin-bottom: 10px;
}

.zinki-shop-heading h2 {
	margin: 0;
}

.zinki-shop-heading > p {
	margin: 0 0 5px;
	color: var(--muted);
	font-size: 14px;
}


/* =========================================================
   GRID
========================================================= */

.zinki-shop-grid {
	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));
	gap: 55px 25px;
}


/* =========================================================
   CARD
========================================================= */

.zinki-shop-card {
	min-width: 0;
}

.zinki-shop-card-image {
	display: block;
	position: relative;
	padding: 18px;
	overflow: hidden;
	border: 1px solid #e8e1ed;
	background: #fff;
}

.zinki-shop-card-image img {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	transition: transform .25s ease;
}

.zinki-shop-card:hover
.zinki-shop-card-image img {
	transform: scale(1.025);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.zinki-shop-card-content {
	padding: 20px 4px 0;
}

.zinki-shop-card-eyebrow {
	margin: 0 0 8px;
	color: var(--purple);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
}

.zinki-shop-card-content h2 {
	margin: 0 0 8px;
	font-size: 25px;
	line-height: 1.15;
	letter-spacing: -.7px;
}

.zinki-shop-card-content h2 a:hover {
	color: var(--purple);
}

.zinki-shop-description {
	min-height: 55px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.6;
}

.zinki-shop-description p {
	margin-bottom: 0;
}

.zinki-shop-price {
	margin: 15px 0 20px;
	color: var(--purple);
	font-size: 17px;
	font-weight: 800;
}


/* =========================================================
   SHOP BUTTONS
========================================================= */

.zinki-shop-card-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.zinki-shop-meet {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 2px;
	border-bottom: 1px solid var(--ink);
	font-size: 12px;
	font-weight: 700;
}

.zinki-shop-meet:hover {
	color: var(--purple);
	border-color: var(--purple);
}

.zinki-shop-add,
.zinki-shop-add:visited {
	padding: 10px 18px !important;
	border: 0 !important;
	border-radius: 30px !important;
	background: var(--purple) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 700 !important;
}

.zinki-shop-add:hover {
	background: #4f239e !important;
	color: #fff !important;
}


/* =========================================================
   AJAX LOADING
========================================================= */

.zinki-shop-add.loading {
	opacity: .65;
	cursor: wait;
}

.zinki-shop-add.added {
	background: #4f239e !important;
}


/* =========================================================
   SHOP MESSAGE
========================================================= */

.zinki-shop-message {
	max-width: 1200px;
	margin: 0 auto;
	padding: 90px 40px;
	display: grid;
	grid-template-columns:
		minmax(0, .8fr)
		minmax(0, 1.2fr);
	gap: 80px;
	border-top: 1px solid #eee7f5;
}

.zinki-shop-message h2 {
	margin-bottom: 0;
}

.zinki-shop-message > div:last-child {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.8;
}

.zinki-shop-message > div:last-child p {
	margin-bottom: 20px;
}

.zinki-shop-message strong {
	color: var(--purple);
}


/* =========================================================
   REMOVE DEFAULT SHOP ELEMENTS
========================================================= */

.post-type-archive-product
.woocommerce-breadcrumb,

.post-type-archive-product
.woocommerce-products-header,

.post-type-archive-product
.woocommerce-result-count,

.post-type-archive-product
.woocommerce-ordering,

.post-type-archive-product
ul.products {
	display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

	.zinki-shop-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

	.zinki-shop-message {
		grid-template-columns: 1fr;
		gap: 25px;
	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

	.zinki-shop-hero {
		padding: 50px 20px 60px;
	}

	.zinki-shop-hero h1 {
		font-size: 48px;
		letter-spacing: -2px;
	}

	.zinki-shop-section {
		padding: 60px 20px 75px;
	}

	.zinki-shop-heading {
		display: block;
		margin-bottom: 35px;
	}

	.zinki-shop-heading > p {
		margin-top: 12px;
	}

	.zinki-shop-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
		gap: 38px 12px;
	}

	.zinki-shop-card-image {
		padding: 8px;
	}

	.zinki-shop-card-content h2 {
		font-size: 18px;
	}

	.zinki-shop-description {
		display: none;
	}

	.zinki-shop-price {
		margin: 8px 0 13px;
		font-size: 14px;
	}

	.zinki-shop-card-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.zinki-shop-meet {
		width: fit-content;
		font-size: 11px;
	}

	.zinki-shop-add {
		width: 100%;
		text-align: center;
	}

	.zinki-shop-message {
		padding: 65px 20px;
	}

}

/* =========================================================
   FINAL CLIENT IMAGE / NAV ADJUSTMENTS
========================================================= */

.site-header nav {
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 24px;
}

.site-header nav a {
	white-space: nowrap;
}

/* Confident artwork is taller/narrower than the rest. */
.family-grid img[src*="family-confident-white.png"] {
	padding: 0 8%;
}

/* Match the Angry charm artwork to the rest of the charm set. */
.charm-gallery img[src*="charm-angry-matched.png"] {
	transform: scale(1.2);
}

/* Slightly enlarge Sad charm to visually match the set. */
.charm-gallery img[src*="charm-sad-white.png"] {
	transform: scale(1.06);
}

@media (max-width: 800px) {
	.site-header nav {
		gap: 12px 20px;
	}
}

/* =========================================================
   FINAL HOMEPAGE MATCHING FIXES
========================================================= */

/*
 * Original design keeps all story paragraphs
 * visually consistent.
 */
.story-copy p:last-child {
	color: var(--muted) !important;
	font-weight: 400 !important;
}


/*
 * Angry keychain is already supplied as the
 * correctly matched artwork, so don't enlarge it.
 */
.charm-gallery img[src*="charm-angry-matched.png"] {
	transform: none !important;
}


/*
 * Keep the subtle Sad charm adjustment.
 */
.charm-gallery img[src*="charm-sad-white.png"] {
	transform: scale(1.06);
}

/* =========================================================
   MORE ABOUT ZINKI MOODS PAGE
========================================================= */

.about-zinki-page {
	background: #fff;
}


/* HERO */

.about-hero {
	max-width: 1320px;
	margin: 0 auto;
	padding: 70px 5% 90px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 70px;
}

.about-hero-copy h1 {
	max-width: 650px;
}

.about-intro {
	max-width: 520px;
	margin-bottom: 30px;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.8;
}


/* HERO ART */

.about-hero-art {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-character-stack {
	position: relative;
	width: 100%;
	max-width: 520px;
	height: 560px;
}

.about-main-character {
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 68%;
	height: 100%;
	transform: translateX(-50%);
	object-fit: contain;
	z-index: 2;
}

.about-small-character {
	position: absolute;
	width: 31%;
	height: auto;
	object-fit: contain;
	z-index: 1;
}

.about-small-happy {
	left: 0;
	bottom: 35px;
	transform: rotate(-6deg);
}

.about-small-confident {
	right: 0;
	bottom: 35px;
	transform: rotate(6deg);
}


/* STORY */

.about-story {
	display: grid;
	grid-template-columns:
		minmax(0, .8fr)
		minmax(0, 1.2fr);
	align-items: start;
	gap: 70px;
	border-top: 1px solid #eee7f5;
}

.about-story-copy p {
	margin-bottom: 25px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.9;
}

.about-story-copy strong {
	color: var(--ink);
}

.about-signature {
	color: var(--purple) !important;
	font-weight: 700;
}


/* CENTERED HEADINGS */

.about-centered-heading {
	max-width: 700px;
	margin: 0 auto 45px;
	text-align: center;
}


/* VALUES */

.about-values {
	border-top: 1px solid #eee7f5;
}

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

.about-value-card {
	min-height: 290px;
	padding: 32px;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
	background: #fff;
}

.about-value-number {
	display: block;
	margin-bottom: 45px;
	color: var(--purple);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
}

.about-value-card h3 {
	font-size: 26px;
}

.about-value-card p {
	margin-bottom: 0;
	color: var(--muted);
}


/* FAMILY */

.about-family {
	border-top: 1px solid #eee7f5;
}

.about-family-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 55px 30px;
}

.about-family-grid figure {
	margin: 0;
	text-align: center;
}

.about-family-grid img {
	width: 100%;
	height: auto;
	aspect-ratio: 2 / 3;
	display: block;
	object-fit: contain;
}

.about-family-grid figcaption {
	margin-top: 10px;
	color: var(--ink);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}


/* CONFIDENT IMAGE IS SLIGHTLY TALLER */

.about-family-grid img[src*="family-confident-white.png"] {
	padding: 0 8%;
}


/* PRODUCTS */

.about-products {
	border-top: 1px solid #eee7f5;
}

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

.about-product-card {
	padding: 35px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid #e8e1ed;
	border-radius: 22px;
}

.about-product-card h3 {
	font-size: 28px;
}

.about-product-card > p:not(.eyebrow) {
	color: var(--muted);
}

.about-product-card img {
	width: 100%;
	height: 430px;
	margin: 20px 0;
	display: block;
	object-fit: contain;
}


/* CLOSING */

.about-closing {
	margin-top: 20px;
}


/* =========================================================
   MORE ABOUT MOBILE
========================================================= */

@media (max-width: 800px) {

	.about-hero {
		padding: 45px 7% 60px;
		grid-template-columns: 1fr;
		gap: 35px;
		text-align: center;
	}

	.about-intro {
		margin-left: auto;
		margin-right: auto;
	}

	.about-hero-art {
		min-height: 450px;
	}

	.about-character-stack {
		max-width: 430px;
		height: 450px;
	}

	.about-story {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.about-value-grid {
		grid-template-columns: 1fr;
	}

	.about-value-card {
		min-height: 220px;
	}

	.about-value-number {
		margin-bottom: 25px;
	}

	.about-family-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 35px 18px;
	}

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

	.about-product-card img {
		height: auto;
	}

}


@media (max-width: 480px) {

	.about-hero-art {
		min-height: 370px;
	}

	.about-character-stack {
		height: 370px;
	}

	.about-small-character {
		width: 34%;
	}

	.about-family-grid figcaption {
		font-size: 11px;
	}

}