/* ------------------------------------------------------------------
   KK Pesach Checklist — Premium Interactive Shopping List
   Clean, well-spaced, with scroll animations & font-size toggle.
   ------------------------------------------------------------------ */

.kk-pesach-checklist {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: #2c2c2c;
	line-height: 1.55;
	background: #f8f5f1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

.kk-pesach-checklist .kk-page-hero {
	background: linear-gradient(135deg, #7B2D3B 0%, #5a1e2a 100%);
	padding: 48px 24px 40px;
	text-align: center;
}

.kk-pesach-checklist .kk-page-hero__bg {
	display: none;
}

.kk-pesach-checklist .kk-page-hero__title {
	font-family: inherit;
	font-size: 34px;
	font-weight: 300;
	color: #fff;
	margin: 0 0 8px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kk-pesach-checklist .kk-page-hero__desc {
	font-size: 16px;
	color: rgba(255,255,255,0.75);
	margin: 0;
	font-weight: 400;
}

/* ============ TOOLBAR ============ */

.kk-pcl-toolbar {
	position: sticky;
	top: var(--kk-header-h, 0px);
	z-index: 100;
	background: #fff;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	box-shadow: 0 1px 12px rgba(0,0,0,0.06);
	border-bottom: 1px solid #e8e0d8;
}

.kk-pcl-toolbar__left,
.kk-pcl-toolbar__right {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* Progress */
.kk-pcl-progress {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #7B2D3B;
	font-size: 13px;
	font-weight: 700;
}

.kk-pcl-progress__bar-wrap {
	width: 120px;
	height: 7px;
	background: #ede6df;
	border-radius: 10px;
	overflow: hidden;
}

.kk-pcl-progress__bar {
	height: 100%;
	background: linear-gradient(90deg, #7B2D3B, #C5A355);
	border-radius: 10px;
	transition: width 0.4s ease;
	width: 0%;
}

/* Search */
.kk-pcl-search {
	position: relative;
}

.kk-pcl-search__input {
	width: 200px;
	padding: 8px 14px 8px 36px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #f8f5f1;
	color: #333;
	font-size: 13px;
	font-family: inherit;
	outline: none;
	transition: all 0.25s;
}

.kk-pcl-search__input::placeholder {
	color: #aaa;
}

.kk-pcl-search__input:focus {
	background: #fff;
	border-color: #7B2D3B;
	box-shadow: 0 0 0 3px rgba(123,45,59,0.08);
}

.kk-pcl-search__icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #bbb;
	pointer-events: none;
}

/* Filter buttons */
.kk-pcl-filter {
	display: flex;
	gap: 4px;
}

.kk-pcl-filter__btn {
	padding: 6px 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	color: #888;
	font-size: 12px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s;
}

.kk-pcl-filter__btn:hover {
	background: #f8f5f1;
	color: #7B2D3B;
	border-color: #7B2D3B;
}

.kk-pcl-filter__btn.active {
	background: #7B2D3B;
	color: #fff;
	border-color: #7B2D3B;
}

/* Font size toggle */
.kk-pcl-fontsize {
	display: flex;
	gap: 2px;
	background: #f2ece6;
	border-radius: 8px;
	padding: 2px;
}

.kk-pcl-fontsize__btn {
	border: none;
	background: transparent;
	color: #999;
	cursor: pointer;
	border-radius: 6px;
	font-family: inherit;
	font-weight: 700;
	transition: all 0.15s;
	line-height: 1;
	padding: 4px 2px;
}

.kk-pcl-fontsize__btn[data-size="small"] { font-size: 11px; width: 26px; height: 26px; }
.kk-pcl-fontsize__btn[data-size="medium"] { font-size: 14px; width: 26px; height: 26px; }
.kk-pcl-fontsize__btn[data-size="large"] { font-size: 17px; width: 26px; height: 26px; }

.kk-pcl-fontsize__btn:hover {
	color: #7B2D3B;
}

.kk-pcl-fontsize__btn.active {
	background: #7B2D3B;
	color: #fff;
}

/* Toolbar action buttons */
.kk-pcl-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	line-height: 1;
	white-space: nowrap;
	background: #fff;
	color: #666;
}

.kk-pcl-btn:hover {
	border-color: #7B2D3B;
	color: #7B2D3B;
	background: #fdf8f8;
}

.kk-pcl-btn svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
}

.kk-pcl-btn--print { }

.kk-pcl-btn--download {
	background: #C5A355;
	color: #fff;
	border-color: #C5A355;
}
.kk-pcl-btn--download:hover { background: #d4b96b; border-color: #d4b96b; color: #fff; }

.kk-pcl-btn--share { }

.kk-pcl-btn--reset {
	color: #bbb;
	border-color: #eee;
}
.kk-pcl-btn--reset:hover { background: #fef2f2; border-color: #e8aaaa; color: #c44; }

/* ============ AISLE STRIP (fixed bottom bar) ============ */

.kk-pcl-aislestrip {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 499;
	background: #fff;
	border-top: 1px solid #e8e0d8;
	box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
	display: flex;
	align-items: stretch;
}

/* Wrapper for fade overlays — sits over the scroll area */
.kk-pcl-aislestrip__scrollwrap {
	flex: 1;
	min-width: 0;
	position: relative;
}

.kk-pcl-aislestrip__scrollwrap::before,
.kk-pcl-aislestrip__scrollwrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 24px;
	z-index: 2;
	pointer-events: none;
}

.kk-pcl-aislestrip__scrollwrap::before {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}

.kk-pcl-aislestrip__scrollwrap::after {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

.kk-pcl-aislestrip__scroll {
	display: flex;
	flex-wrap: nowrap;
	gap: 6px;
	padding: 8px 24px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
}

.kk-pcl-aislestrip__scroll::-webkit-scrollbar {
	display: none;
}

.kk-pcl-aislestrip__chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 10px 5px 5px;
	border-radius: 20px;
	border: 1px solid #ede6df;
	background: #fff;
	color: #777;
	font-family: inherit;
	font-size: 11px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.2s;
	flex-shrink: 0;
}

.kk-pcl-aislestrip__chip:hover {
	border-color: #c5a355;
	color: #7B2D3B;
	background: #fdf8f3;
}

.kk-pcl-aislestrip__chip.active {
	background: #7B2D3B;
	color: #fff;
	border-color: #7B2D3B;
	box-shadow: 0 2px 8px rgba(123,45,59,0.25);
}

.kk-pcl-aislestrip__num {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f2ece6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 800;
	color: #999;
	flex-shrink: 0;
	transition: all 0.2s;
}

.kk-pcl-aislestrip__chip:hover .kk-pcl-aislestrip__num {
	background: #ede6df;
	color: #7B2D3B;
}

.kk-pcl-aislestrip__chip.active .kk-pcl-aislestrip__num {
	background: rgba(255,255,255,0.2);
	color: #fff;
}

.kk-pcl-aislestrip__label {
	line-height: 1;
}

.kk-pcl-aislestrip__title {
	display: flex;
	align-items: center;
	font-size: 9px;
	font-weight: 700;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0 14px 0 16px;
	flex-shrink: 0;
	border-right: 1px solid #e8e0d8;
	margin-right: 4px;
	background: #fff;
	z-index: 3;
}

/* Chometz chip */
.kk-pcl-aislestrip__chip--chometz {
	background: #fef3cd;
	border-color: #f0d98c;
	color: #8b6914;
	cursor: default;
	padding-right: 10px;
}
.kk-pcl-aislestrip__chip--chometz .kk-pcl-aislestrip__num {
	background: #f0d98c;
	color: #8b6914;
}
.kk-pcl-aislestrip__chip--chometz .kk-pcl-aislestrip__label {
	font-weight: 600;
	font-style: italic;
	font-size: 10px;
}

/* ============ CHOMETZ BANNER (Aisle 2) ============ */

.kk-pcl-chometz-banner {
	display: flex;
	align-items: center;
	gap: 14px;
	background: linear-gradient(135deg, #fef3cd, #fce9a8);
	border: 1px solid #f0d98c;
	border-radius: 12px;
	padding: 12px 20px;
	margin-bottom: 20px;
}

.kk-pcl-chometz-banner__badge {
	background: #d4a017;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
	flex-shrink: 0;
}

.kk-pcl-chometz-banner__text {
	font-size: 13px;
	font-weight: 700;
	color: #8b6914;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

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

.kk-pcl-content {
	max-width: 1300px;
	margin: 0 auto;
	padding: 28px 24px 80px 24px;
	transition: font-size 0.25s ease;
}

/* Scroll offset for sticky toolbar */
.kk-pcl-section {
	scroll-margin-top: calc(var(--kk-header-h, 0px) + 60px);
}

/* ============ FONT SIZE VARIANTS ============ */

.kk-pcl-fs-small .kk-pcl-item label { font-size: 12.5px; }
.kk-pcl-fs-small .kk-pcl-qty { width: 26px !important; height: 18px !important; min-width: 26px; font-size: 10px; }
.kk-pcl-fs-small .kk-pcl-cat__title { font-size: 10.5px; }
.kk-pcl-fs-small .kk-pcl-item label { padding: 4px 2px; }
.kk-pcl-fs-small .kk-pcl-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px; }

.kk-pcl-fs-medium .kk-pcl-item label { font-size: 14px; }
.kk-pcl-fs-medium .kk-pcl-qty { width: 30px !important; height: 22px !important; min-width: 30px; font-size: 12px; }
.kk-pcl-fs-medium .kk-pcl-cat__title { font-size: 11.5px; }
.kk-pcl-fs-medium .kk-pcl-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }

.kk-pcl-fs-large .kk-pcl-item label { font-size: 16px; }
.kk-pcl-fs-large .kk-pcl-qty { width: 36px !important; height: 26px !important; min-width: 36px; font-size: 14px; }
.kk-pcl-fs-large .kk-pcl-cat__title { font-size: 13px; }
.kk-pcl-fs-large .kk-pcl-item label { padding: 8px 2px; }
.kk-pcl-fs-large .kk-pcl-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }

/* ============ SCROLL ANIMATION ============ */

.kk-pcl-section,
.kk-pcl-seder,
.kk-pcl-notes,
.kk-pcl-hours {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.kk-pcl-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============ SECTIONS (AISLES) ============ */

.kk-pcl-section {
	margin-bottom: 28px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 3px 18px rgba(90,70,48,0.08), 0 0 0 1px rgba(123,45,59,0.04);
}

.kk-pcl-section__header {
	background: linear-gradient(135deg, #5a1e2a 0%, #7B2D3B 50%, #8d3647 100%);
	color: #fff;
	padding: 16px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	user-select: none;
	transition: background 0.2s;
	border-bottom: 3px solid #C5A355;
}

.kk-pcl-section__header:hover {
	background: linear-gradient(135deg, #6b2533 0%, #8d3647 50%, #9e4858 100%);
}

.kk-pcl-section__title {
	font-family: inherit;
	font-size: 16px;
	font-weight: 800;
	margin: 0;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.kk-pcl-section__toggle {
	color: rgba(255,255,255,0.6);
	transition: transform 0.35s ease;
	flex-shrink: 0;
}

.kk-pcl-section.collapsed .kk-pcl-section__toggle {
	transform: rotate(-90deg);
}

.kk-pcl-section__body {
	background: #faf8f6;
	padding: 20px 18px 22px;
}

.kk-pcl-section.collapsed .kk-pcl-section__body {
	display: none;
}

/* ============ CATEGORY GRID — dense auto-fill ============ */

.kk-pcl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-auto-flow: dense;
	gap: 12px;
	align-items: start;
}

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

.kk-pcl-cat {
	border: 1px solid #e0d8ce;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.2s;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

/* Wide categories: span 2 cols, list goes multi-column */
.kk-pcl-cat--wide {
	grid-column: span 2;
}

.kk-pcl-cat--wide .kk-pcl-cat__list {
	column-count: 2;
	column-gap: 16px;
}

/* Extra-wide categories: span 3 cols */
.kk-pcl-cat--xwide {
	grid-column: span 3;
}

.kk-pcl-cat--xwide .kk-pcl-cat__list {
	column-count: 3;
	column-gap: 16px;
}

.kk-pcl-cat:hover {
	box-shadow: 0 2px 12px rgba(123,45,59,0.06);
}

.kk-pcl-cat__title {
	background: #f2ece6;
	border-bottom: 2px solid #C5A355;
	padding: 8px 12px;
	font-family: inherit;
	font-size: 11.5px;
	font-weight: 700;
	color: #7B2D3B;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0;
	line-height: 1.3;
}

.kk-pcl-cat__list {
	list-style: none;
	margin: 0;
	padding: 6px 10px 8px;
}

/* ============ ITEM ============ */

.kk-pcl-item {
	padding: 0;
	border-bottom: 1px solid #f2ece6;
	break-inside: avoid;
}

.kk-pcl-item:last-child {
	border-bottom: none;
}

.kk-pcl-item label {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	padding: 6px 2px;
	color: #444;
	transition: color 0.15s, background 0.15s;
	border-radius: 6px;
}

.kk-pcl-item label:hover {
	color: #7B2D3B;
	background: rgba(123,45,59,0.03);
}

/* Quantity box */
.kk-pcl-qty {
	width: 30px !important;
	max-width: 36px !important;
	height: 22px !important;
	min-width: 30px;
	border: 1.5px solid #d0c8be !important;
	border-radius: 6px !important;
	background: #faf8f6;
	font-size: 12px;
	font-family: inherit;
	font-weight: 700;
	text-align: center;
	color: #7B2D3B;
	padding: 0 !important;
	margin: 0;
	outline: none;
	transition: all 0.2s;
	flex-shrink: 0;
	flex-grow: 0;
	box-sizing: border-box;
}

.kk-pcl-qty:focus {
	border-color: #7B2D3B !important;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}

/* Filled state — barely-there tint */
.kk-pcl-item.has-qty .kk-pcl-qty {
	background: #faf8f5 !important;
	color: #b5aa9c !important;
	border-color: #e0d8ce !important;
	position: relative;
}

.kk-pcl-item.has-qty label {
	color: #bbb5ab;
}

/* Qty wrapper */
.kk-pcl-qty-wrap {
	position: relative;
	display: flex;
	flex-shrink: 0;
}

/* Tiny × badge at top-right corner of qty box — only on hover */
.kk-pcl-qty-wrap::after {
	content: '×';
	position: absolute;
	top: -5px;
	right: -5px;
	width: 13px;
	height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	background: #c44;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s;
	z-index: 2;
}

.kk-pcl-item.has-qty .kk-pcl-qty-wrap:hover::after {
	opacity: 1;
}

.kk-pcl-item.has-qty .kk-pcl-qty-wrap:hover {
	cursor: pointer;
}

/* ============ ITEM NOTES ============ */

/* Note toggle — tiny inline pencil dot, nearly invisible */
.kk-pcl-note-toggle {
	display: none;
	margin-left: auto;
	flex-shrink: 0;
	border: none !important;
	background: none !important;
	box-shadow: none !important;
	outline: none !important;
	-webkit-appearance: none;
	appearance: none;
	color: #d4cdc4;
	font-size: 0;
	line-height: 1;
	cursor: pointer;
	padding: 0 2px !important;
	transition: color 0.15s;
}

.kk-pcl-note-toggle::before {
	content: '✎';
	font-size: 10px;
}

.kk-pcl-item:hover .kk-pcl-note-toggle {
	display: inline-flex;
}

.kk-pcl-item.has-note .kk-pcl-note-toggle {
	display: inline-flex;
	color: #C5A355;
}

.kk-pcl-note-toggle:hover {
	color: #7B2D3B !important;
}

/* Note input — compact, inside item flow */
.kk-pcl-note-input {
	display: none;
	width: 100%;
	padding: 1px 6px 2px 38px;
	border: none;
	border-bottom: 1px dashed #e0d8ce;
	border-radius: 0;
	font-family: inherit;
	font-size: 10px;
	font-style: italic;
	color: #aaa;
	background: transparent;
	outline: none;
	transition: border-color 0.2s, color 0.2s;
	box-sizing: border-box;
	height: 16px;
	line-height: 16px;
	margin: 0;
}

.kk-pcl-note-input:focus {
	border-color: #C5A355;
	color: #666;
}

.kk-pcl-item.note-open .kk-pcl-note-input {
	display: block;
}

/* Saved note: show as plain gray text, no box/border at all */
.kk-pcl-item.has-note .kk-pcl-note-input {
	display: block;
	border: none;
	color: #bbb;
	pointer-events: none;
	height: 14px;
	line-height: 14px;
	font-size: 9px;
	background: none;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

/* When editing an existing note, restore editable look */
.kk-pcl-item.has-note.note-open .kk-pcl-note-input {
	border-bottom: 1px dashed #e0d8ce;
	color: #666;
	pointer-events: auto;
	height: 16px;
	line-height: 16px;
	font-size: 10px;
}

.kk-pcl-item__text {
	flex: 1;
	min-width: 0;
}

/* Tags */
.kk-pcl-tag {
	display: inline-block;
	font-weight: 800;
	vertical-align: middle;
	margin-left: 4px;
	letter-spacing: 0.04em;
}

.kk-pcl-tag--k {
	background: #f8e0e0;
	color: #c0392b;
	font-size: 8px;
	padding: 3px 8px;
	border-radius: 20px;
}

.kk-pcl-tag--gf {
	background: none;
	color: #e03030;
	font-size: 0.9em;
	font-style: italic;
	font-weight: 700;
	padding: 0;
	border-radius: 0;
}

/* Sub description */
.kk-pcl-sub {
	display: inline;
	font-size: 0.85em;
	color: #aaa;
	font-style: italic;
	margin-left: 3px;
}

.kk-pcl-sub::before {
	content: ' ';
}

/* ============ SEDER PLATE ============ */

.kk-pcl-seder__body {
	padding: 20px 24px 24px !important;
}

/* Progress counter in header */
.kk-pcl-seder__progress {
	display: flex;
	align-items: baseline;
	margin-left: auto;
	margin-right: 12px;
}

.kk-pcl-seder__progress-text {
	font-size: 18px;
	font-weight: 800;
	color: #C5A355;
	line-height: 1;
}

.kk-pcl-seder__progress-of {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,0.5);
}

/* Two-column layout: image + checklist */
.kk-pcl-seder__layout {
	display: flex;
	gap: 32px;
	align-items: stretch;
}

/* Image side — displayed first on desktop */
.kk-pcl-seder__image {
	flex: 0 0 260px;
	position: relative;
	align-self: center;
}

.kk-pcl-seder__image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 50%;
	box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Hover hotspots on image */
.kk-pcl-seder__hotspot {
	position: absolute;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.25s;
}

.kk-pcl-seder__hotspot:hover,
.kk-pcl-seder__hotspot.active {
	background: rgba(197,163,85,0.18);
	box-shadow: 0 0 0 3px rgba(197,163,85,0.35);
}

/* Checklist side */
.kk-pcl-seder__list {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.kk-pcl-seder__subtitle {
	font-size: 13px;
	font-weight: 600;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 8px 0;
	padding: 0 0 8px 0;
	border-bottom: 1px solid #f2ece6;
}

.kk-pcl-seder__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	cursor: pointer;
	transition: all 0.2s;
	border-radius: 8px;
	border-bottom: 1px solid #f5f0eb;
	position: relative;
}

.kk-pcl-seder__item:last-child {
	border-bottom: none;
}

.kk-pcl-seder__item:hover {
	background: rgba(123,45,59,0.03);
}

.kk-pcl-seder__item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* Custom checkbox */
.kk-pcl-seder__check {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	border: 2px solid #d5cec5;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.25s;
}

.kk-pcl-seder__check svg {
	width: 14px;
	height: 14px;
	opacity: 0;
	transform: scale(0.5);
	transition: all 0.25s;
	color: #fff;
}

/* Text block */
.kk-pcl-seder__text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.kk-pcl-seder__name {
	font-size: 14px;
	font-weight: 600;
	color: #3a3a3a;
	transition: all 0.2s;
}

.kk-pcl-seder__desc {
	font-size: 11.5px;
	color: #aaa;
	line-height: 1.3;
}

.kk-pcl-seder__info-line {
	font-size: 10.5px;
	color: #c0b8ae;
	line-height: 1.3;
	font-style: italic;
	margin-top: 1px;
}

/* Small number badge — right side */
.kk-pcl-seder__num {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #f2ece6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: #bbb;
	flex-shrink: 0;
	transition: all 0.3s;
}

/* Hover state */
.kk-pcl-seder__item:hover .kk-pcl-seder__check {
	border-color: #7B2D3B;
}

.kk-pcl-seder__item:hover .kk-pcl-seder__name {
	color: #7B2D3B;
}

/* Checked state */
.kk-pcl-seder__item.checked .kk-pcl-seder__check {
	background: #7B2D3B;
	border-color: #7B2D3B;
	box-shadow: 0 2px 6px rgba(123,45,59,0.25);
}

.kk-pcl-seder__item.checked .kk-pcl-seder__check svg {
	opacity: 1;
	transform: scale(1);
}

.kk-pcl-seder__item.checked .kk-pcl-seder__name {
	color: #7B2D3B;
}

.kk-pcl-seder__item.checked .kk-pcl-seder__num {
	background: #7B2D3B;
	color: #fff;
}

/* Highlight state (from image hover) */
.kk-pcl-seder__item.highlight {
	background: rgba(197,163,85,0.06);
}

.kk-pcl-seder__item.highlight .kk-pcl-seder__check {
	border-color: #C5A355;
	box-shadow: 0 0 0 3px rgba(197,163,85,0.15);
}

.kk-pcl-seder__item.highlight .kk-pcl-seder__name {
	color: #8b6914;
}

.kk-pcl-seder__item.highlight .kk-pcl-seder__num {
	background: #C5A355;
	color: #fff;
	transform: scale(1.15);
}

/* Promo banner */
.kk-pcl-seder__promo {
	margin-top: 24px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.kk-pcl-seder__promo-link {
	display: block;
}

.kk-pcl-seder__promo img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s;
}

.kk-pcl-seder__promo-link:hover img {
	transform: scale(1.01);
}

/* Info is now inline in checklist items */

/* Mobile: stack layout */
@media (max-width: 768px) {
	.kk-pcl-seder__body {
		padding: 16px 16px 20px !important;
	}
	.kk-pcl-seder__layout {
		flex-direction: column;
		gap: 20px;
	}
	.kk-pcl-seder__image {
		flex: none;
		width: 200px;
		margin: 0 auto;
		order: -1;
	}
	.kk-pcl-seder__info-line {
		font-size: 9.5px;
	}
	.kk-pcl-hours__cols {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.kk-pcl-hours__row {
		padding: 8px 12px;
	}
	.kk-pcl-hours__day,
	.kk-pcl-hours__time {
		font-size: 12px;
	}
}

/* ============ NOTES ============ */

.kk-pcl-notes {
	background: #fff;
	border: 1px solid #e8e0d8;
	border-radius: 14px;
	padding: 24px;
	margin: 24px 0;
	box-shadow: 0 2px 12px rgba(90,70,48,0.06);
}

.kk-pcl-notes h2 {
	font-family: inherit;
	color: #7B2D3B;
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 12px;
}

.kk-pcl-notes textarea {
	width: 100%;
	min-height: 120px;
	border: 1.5px solid #e0d8ce;
	border-radius: 10px;
	padding: 14px;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	outline: none;
	transition: border-color 0.25s, box-shadow 0.25s;
	box-sizing: border-box;
	background: #faf8f6;
}

.kk-pcl-notes textarea:focus {
	border-color: #7B2D3B;
	box-shadow: 0 0 0 3px rgba(123,45,59,0.08);
	background: #fff;
}

.kk-pcl-notes__print {
	display: none;
}

/* ============ HOURS ============ */

.kk-pcl-hours {
	background: #fff;
	border: 1px solid #e8e0d8;
	border-radius: 14px;
	padding: 28px;
	margin: 24px 0;
	box-shadow: 0 2px 12px rgba(90,70,48,0.06);
}

.kk-pcl-hours__header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 8px;
	flex-wrap: wrap;
}

.kk-pcl-hours__header svg {
	color: #C5A355;
	flex-shrink: 0;
}

.kk-pcl-hours__header h2 {
	font-family: inherit;
	color: #7B2D3B;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
}

/* Open / Closed badge */
.kk-pcl-hours__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	background: #f5f5f5;
	color: #999;
}

.kk-pcl-hours__badge--open {
	background: #e8f5e9;
	color: #2e7d32;
}

.kk-pcl-hours__badge--closed {
	background: #fce4ec;
	color: #c62828;
}

.kk-pcl-hours__badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.kk-pcl-hours__badge--open .kk-pcl-hours__badge-dot {
	animation: kk-pcl-pulse 2s infinite;
}

@keyframes kk-pcl-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* Today bar */
.kk-pcl-hours__today {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	margin: 0 0 16px;
	background: #faf7f0;
	border-radius: 8px;
	border-left: 3px solid #C5A355;
	font-size: 14px;
}

.kk-pcl-hours__today-label {
	font-weight: 700;
	color: #3d3225;
	white-space: nowrap;
}

.kk-pcl-hours__today-time {
	font-weight: 600;
	color: #5a4630;
	margin-left: auto;
}

/* Two-column layout */
.kk-pcl-hours__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.kk-pcl-hours__col-label {
	font-size: 11px;
	font-weight: 700;
	color: #bbb;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0 16px 6px;
	border-bottom: 2px solid #f0ebe5;
	margin-bottom: 2px;
}

.kk-pcl-hours__list {
	border-radius: 10px;
	overflow: hidden;
}

.kk-pcl-hours__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
	border-bottom: 1px solid #f5f0eb;
	transition: background 0.15s;
}

.kk-pcl-hours__row:last-child {
	border-bottom: none;
}

.kk-pcl-hours__day {
	font-size: 13px;
	font-weight: 500;
	color: #555;
}

.kk-pcl-hours__time {
	font-size: 13px;
	font-weight: 600;
	color: #7B2D3B;
	text-align: right;
}

/* Today highlight */
.kk-pcl-hours__row--today {
	background: #faf7f0 !important;
	border-radius: 6px;
}

.kk-pcl-hours__row--today .kk-pcl-hours__day {
	font-weight: 700;
	color: #3d3225;
}

.kk-pcl-hours__row--today .kk-pcl-hours__time {
	font-weight: 700;
	color: #5a4630;
}

/* Shabbos / Yom Tov rows */
.kk-pcl-hours__row--shabbos {
	background: linear-gradient(135deg, #fdf8ef 0%, #faf3e4 100%);
}

.kk-pcl-hours__row--shabbos .kk-pcl-hours__day {
	color: #5a4630;
	font-weight: 600;
}

/* Late-night rows — just highlight the time, no background change */
.kk-pcl-hours__row--late .kk-pcl-hours__time {
	color: #C5A355;
}

/* Seder night banner */
.kk-pcl-hours__row--seder {
	background: linear-gradient(135deg, #7B2D3B 0%, #5a1d2a 100%);
	justify-content: center;
	padding: 12px 16px;
	border-bottom: none;
}

.kk-pcl-hours__seder-text {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.03em;
}

/* Closed rows */
.kk-pcl-hours__row--closed .kk-pcl-hours__day {
	color: #ccc;
}

.kk-pcl-hours__row--closed .kk-pcl-hours__time {
	color: #ccc;
	font-weight: 500;
	font-style: italic;
}

/* ============ PRINT — match original PDF style ============ */

@media print {
	@page {
		size: A4 landscape;
		margin: 6mm 8mm;
	}

	/* Hide all UI */
	.kk-pcl-toolbar,
	.kk-pcl-mobile-bar,
	.kk-page-hero,
	.kk-pcl-section__toggle,
	.kk-pcl-note-toggle,
	.kk-pcl-qty-wrap::after,
	.kk-pcl-aislestrip,
	.kk-pcl-fab,
	.kk-pcl-modal-overlay,
	.site-header,
	.site-footer,
	header,
	footer,
	nav,
	#wpadminbar {
		display: none !important;
	}

	* {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
	}

	/* Kill animations */
	.kk-pcl-section,
	.kk-pcl-seder,
	.kk-pcl-notes,
	.kk-pcl-hours {
		opacity: 1 !important;
		transform: none !important;
	}

	.kk-pcl-section.collapsed .kk-pcl-section__body {
		display: block !important;
	}

	/* Base */
	.kk-pesach-checklist {
		background: #fff !important;
		font-size: 7px !important;
		line-height: 1.15 !important;
	}

	.kk-pcl-content {
		padding: 0 !important;
		max-width: none !important;
	}

	/* --- Aisle sections --- */
	.kk-pcl-section {
		margin-bottom: 3px;
		border-radius: 0;
		box-shadow: none;
		overflow: visible;
		break-inside: auto;
	}

	.kk-pcl-section__header {
		background: #7B2D3B !important;
		padding: 2px 8px;
		border-radius: 0;
	}

	.kk-pcl-section__title {
		font-size: 8px;
		letter-spacing: 0.05em;
	}

	.kk-pcl-section__body {
		padding: 2px 2px 3px;
		border: none;
	}

	/* --- Grid — no grid gaps, pack tight --- */
	.kk-pcl-grid {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 0 !important;
	}

	.kk-pcl-cat {
		border-radius: 0;
		border: 0.5px solid #ccc;
		break-inside: avoid;
		flex: 1 1 auto;
		min-width: 0;
	}

	/* Default: each cat takes equal share in row */
	.kk-pcl-cat:not(.kk-pcl-cat--wide):not(.kk-pcl-cat--xwide) {
		flex-basis: 0;
	}

	.kk-pcl-cat--wide {
		flex-basis: 0;
		flex-grow: 2;
	}
	.kk-pcl-cat--xwide {
		flex-basis: 0;
		flex-grow: 3;
	}

	/* Category header */
	.kk-pcl-cat__title {
		font-size: 6.5px;
		font-weight: 800;
		padding: 1.5px 4px;
		background: #7B2D3B !important;
		color: #fff !important;
		border-radius: 0;
		letter-spacing: 0.05em;
		line-height: 1.3;
	}

	.kk-pcl-cat__list {
		padding: 0 2px 1px;
		margin: 0;
	}

	/* Multi-col within wide categories */
	.kk-pcl-cat--wide .kk-pcl-cat__list {
		column-count: 2;
		column-gap: 4px;
	}
	.kk-pcl-cat--xwide .kk-pcl-cat__list {
		column-count: 3;
		column-gap: 4px;
	}

	/* --- Items — ultra compact like PDF --- */
	.kk-pcl-item {
		border-bottom: none;
		break-inside: avoid;
		line-height: 1;
	}

	.kk-pcl-item label {
		font-size: 6.5px !important;
		gap: 2px;
		padding: 0.8px 0;
		color: #333 !important;
		line-height: 1.15;
		border-radius: 0;
		background: none !important;
	}

	.kk-pcl-item.has-qty label {
		color: #333 !important;
	}

	/* Qty box */
	.kk-pcl-qty {
		width: 13px !important;
		height: 8px !important;
		min-width: 13px !important;
		max-width: 13px !important;
		font-size: 5.5px !important;
		border-width: 0.5px !important;
		border-color: #888 !important;
		border-radius: 1.5px !important;
		background: #fff !important;
		color: #7B2D3B !important;
		padding: 0 !important;
		flex-shrink: 0;
	}

	.kk-pcl-item.has-qty .kk-pcl-qty {
		background: #fff !important;
		color: #7B2D3B !important;
		border-color: #888 !important;
	}

	/* Tags */
	.kk-pcl-tag--k {
		font-size: 4.5px;
		padding: 0 2px;
		background: #f8e0e0 !important;
		color: #c0392b !important;
		border-radius: 6px;
		line-height: 1.4;
	}

	.kk-pcl-tag--gf {
		font-size: 5.5px;
		color: #e03030 !important;
	}

	.kk-pcl-sub {
		font-size: 5.5px;
	}

	/* Notes — hide UI, show saved text */
	.kk-pcl-item__actions {
		display: none !important;
	}

	.kk-pcl-note-input {
		display: none !important;
	}

	.kk-pcl-item.has-note .kk-pcl-note-input {
		display: block !important;
		border: none !important;
		padding: 0 0 0 15px !important;
		margin: 0 !important;
		font-size: 5px !important;
		color: #888 !important;
		font-style: italic;
		background: none !important;
		height: auto !important;
		line-height: 1.1 !important;
		pointer-events: none !important;
	}

	/* --- Seder / Notes / Hours --- */
	.kk-pcl-seder,
	.kk-pcl-notes,
	.kk-pcl-hours {
		break-inside: avoid;
		padding: 6px;
		margin: 3px 0;
		border-radius: 0;
		box-shadow: none;
		border: 0.5px solid #ccc;
	}

	.kk-pcl-seder h2,
	.kk-pcl-notes h2,
	.kk-pcl-hours__header h2 {
		font-size: 9px;
		margin-bottom: 4px;
	}

	.kk-pcl-notes textarea {
		display: none;
	}

	.kk-pcl-notes__print {
		display: block !important;
		border: 0.5px solid #ccc;
		min-height: 30px;
		padding: 3px;
		white-space: pre-wrap;
		font-size: 7px;
	}

	.kk-pcl-seder__body { padding: 6px 8px !important; }
	.kk-pcl-seder__layout { flex-direction: column; gap: 4px; }
	.kk-pcl-seder__subtitle { display: none; }
	.kk-pcl-seder__image,
	.kk-pcl-seder__promo,
	.kk-pcl-seder__hotspot,
	.kk-pcl-seder__progress { display: none !important; }
	.kk-pcl-seder__item {
		padding: 2px 4px;
		gap: 4px;
	}
	.kk-pcl-seder__check {
		width: 10px; height: 10px; border-radius: 2px;
		border-width: 1px;
	}
	.kk-pcl-seder__check svg { width: 7px; height: 7px; }
	.kk-pcl-seder__num {
		width: 12px; height: 12px; font-size: 6px;
	}
	.kk-pcl-seder__name { font-size: 7px; }
	.kk-pcl-seder__desc { font-size: 6px; }
	.kk-pcl-seder__info-line { display: none; }

	.kk-pcl-hours__header svg,
	.kk-pcl-hours__badge,
	.kk-pcl-hours__today { display: none !important; }
	.kk-pcl-hours__cols {
		grid-template-columns: 1fr 1fr;
		gap: 6px;
	}
	.kk-pcl-hours__col-label {
		font-size: 6px;
		padding: 0 4px 2px;
		margin-bottom: 1px;
	}
	.kk-pcl-hours__row {
		padding: 2px 4px;
	}
	.kk-pcl-hours__day,
	.kk-pcl-hours__time {
		font-size: 6px;
	}
	.kk-pcl-hours__seder-text {
		font-size: 6px;
	}
	.kk-pcl-hours__row--seder {
		padding: 2px 4px;
	}
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
	.kk-pcl-grid {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	}
	.kk-pcl-cat--xwide { grid-column: span 2; }
	.kk-pcl-cat--xwide .kk-pcl-cat__list { column-count: 2; }
}

@media (max-width: 768px) {
	.kk-pcl-aislestrip__scroll {
		padding: 6px 16px;
		gap: 4px;
	}
	.kk-pcl-aislestrip__label {
		display: none;
	}
	.kk-pcl-aislestrip__chip {
		padding: 3px;
		border: none;
	}
	.kk-pcl-aislestrip__chip--chometz {
		padding: 3px 6px;
	}
	.kk-pcl-aislestrip__chip--chometz .kk-pcl-aislestrip__label {
		display: inline;
		font-size: 9px;
	}

	.kk-pcl-content {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.kk-pesach-checklist .kk-page-hero {
		padding: 32px 16px 28px;
	}

	.kk-pesach-checklist .kk-page-hero__title {
		font-size: 26px;
	}

	.kk-pesach-checklist .kk-page-hero__desc {
		font-size: 14px;
	}

	.kk-pcl-toolbar {
		padding: 10px 14px;
		gap: 8px;
	}

	.kk-pcl-search__input {
		width: 130px;
	}

	.kk-pcl-filter {
		display: none;
	}

	.kk-pcl-fontsize {
		display: none;
	}

	.kk-pcl-toolbar__right .kk-pcl-btn span {
		display: none;
	}

	.kk-pcl-grid {
		grid-template-columns: 1fr 1fr;
	}
	.kk-pcl-cat--wide,
	.kk-pcl-cat--xwide { grid-column: span 2; }
	.kk-pcl-cat--xwide .kk-pcl-cat__list { column-count: 2; }
	.kk-pcl-cat--wide .kk-pcl-cat__list { column-count: 2; }

	.kk-pcl-content {
		padding: 16px 12px 90px;
	}

	.kk-pcl-section__header {
		padding: 12px 16px;
	}

	.kk-pcl-section__title {
		font-size: 14px;
	}

	.kk-pcl-section {
		border-radius: 10px;
	}

	.kk-pcl-cat {
		border-radius: 8px;
	}
}

@media (max-width: 480px) {
	.kk-pcl-grid {
		grid-template-columns: 1fr;
	}
	.kk-pcl-cat--wide,
	.kk-pcl-cat--xwide { grid-column: span 1; }
	.kk-pcl-cat--wide .kk-pcl-cat__list,
	.kk-pcl-cat--xwide .kk-pcl-cat__list { column-count: 1; }

	.kk-pcl-toolbar__right {
		display: none;
	}

	.kk-pcl-progress__bar-wrap {
		width: 80px;
	}

	.kk-pcl-mobile-bar {
		display: flex !important;
	}

	/* Aisle strip sits above mobile action bar */
	.kk-pcl-aislestrip {
		bottom: 58px;
	}

	.kk-pcl-fab {
		bottom: 104px;
	}

	.kk-pcl-content {
		padding-bottom: 120px !important;
	}

	.kk-pesach-checklist .kk-page-hero__title {
		font-size: 22px;
	}
}

/* Mobile bottom action bar */
.kk-pcl-mobile-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	padding: 10px 16px;
	justify-content: space-around;
	gap: 8px;
	z-index: 100;
	box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
	border-top: 1px solid #e8e0d8;
}

.kk-pcl-mobile-bar .kk-pcl-btn {
	flex: 1;
	justify-content: center;
	padding: 10px 8px;
	font-size: 11px;
	color: #7B2D3B;
	border-color: #e0d8ce;
}

/* ============ FLOATING ACTION BUTTONS ============ */

.kk-pcl-fab {
	position: fixed;
	bottom: 56px;
	right: 18px;
	z-index: 500;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
}

.kk-pcl-fab.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.kk-pcl-fab__btn {
	width: 48px;
	height: 48px;
	border-radius: 24px;
	border: none;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: center;
	gap: 0;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 3px 14px rgba(0,0,0,0.18);
	overflow: hidden;
	white-space: nowrap;
}

.kk-pcl-fab__btn svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.kk-pcl-fab__btn span {
	max-width: 0;
	overflow: hidden;
	opacity: 0;
	font-family: inherit;
	font-size: 12px;
	font-weight: 600;
	transition: max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, margin 0.3s;
	margin-right: 0;
}

.kk-pcl-fab__btn:hover {
	width: auto;
	padding: 0 14px 0 18px;
	gap: 6px;
}

.kk-pcl-fab__btn:hover span {
	max-width: 80px;
	opacity: 1;
	margin-right: 2px;
}

.kk-pcl-fab__btn--share {
	background: #fff;
	color: #7B2D3B;
}
.kk-pcl-fab__btn--share:hover {
	background: #7B2D3B;
	color: #fff;
	box-shadow: 0 5px 18px rgba(123,45,59,0.3);
}

.kk-pcl-fab__btn--print {
	background: #fff;
	color: #7B2D3B;
}
.kk-pcl-fab__btn--print:hover {
	background: #7B2D3B;
	color: #fff;
	box-shadow: 0 5px 18px rgba(123,45,59,0.3);
}

.kk-pcl-fab__btn--download {
	background: #C5A355;
	color: #fff;
}
.kk-pcl-fab__btn--download:hover {
	background: #d4b96b;
	box-shadow: 0 5px 18px rgba(197,163,85,0.4);
}

/* ============ CUSTOM MODAL ============ */

.kk-pcl-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(40, 20, 25, 0.45);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.kk-pcl-modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.kk-pcl-modal {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(60, 20, 30, 0.25), 0 0 0 1px rgba(123, 45, 59, 0.08);
	max-width: 380px;
	width: 90%;
	padding: 32px 28px 24px;
	text-align: center;
	transform: translateY(30px) scale(0.95);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
	opacity: 0;
}

.kk-pcl-modal-overlay.active .kk-pcl-modal {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.kk-pcl-modal__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #7B2D3B, #934050);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.kk-pcl-modal__icon svg {
	width: 22px;
	height: 22px;
	color: #fff;
	stroke: #fff;
}

.kk-pcl-modal__title {
	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	color: #333;
	margin: 0 0 8px;
}

.kk-pcl-modal__text {
	font-size: 13.5px;
	color: #888;
	line-height: 1.5;
	margin: 0 0 24px;
}

.kk-pcl-modal__actions {
	display: flex;
	gap: 10px;
}

.kk-pcl-modal__btn {
	flex: 1;
	padding: 11px 16px;
	border-radius: 10px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	border: none;
	line-height: 1;
}

.kk-pcl-modal__btn--primary {
	background: linear-gradient(135deg, #7B2D3B, #934050);
	color: #fff;
	box-shadow: 0 4px 14px rgba(123, 45, 59, 0.3);
}

.kk-pcl-modal__btn--primary:hover {
	background: linear-gradient(135deg, #8d3647, #a54a5c);
	box-shadow: 0 6px 20px rgba(123, 45, 59, 0.4);
	transform: translateY(-1px);
}

.kk-pcl-modal__btn--secondary {
	background: #f4f0ec;
	color: #666;
	border: 1px solid #e0d8ce;
}

.kk-pcl-modal__btn--secondary:hover {
	background: #ede6df;
	color: #444;
}

/* Main action button (full width) */
.kk-pcl-modal__main-action {
	width: 100%;
	padding: 13px 16px;
	font-size: 14px;
}

/* Qty include toggle — card-style options */
.kk-pcl-modal__toggle {
	display: flex;
	gap: 10px;
	margin: 0 0 18px;
}

.kk-pcl-modal__toggle-btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 14px 10px 12px;
	border: 2px solid #e8e0d8;
	border-radius: 12px;
	background: #fff;
	color: #999;
	font-family: inherit;
	font-size: 12px;
	cursor: pointer;
	transition: all 0.2s;
	text-align: center;
}

.kk-pcl-modal__toggle-btn svg {
	color: #ccc;
	transition: color 0.2s;
	margin-bottom: 2px;
}

.kk-pcl-modal__toggle-btn strong {
	font-size: 13px;
	font-weight: 700;
	color: #666;
	transition: color 0.2s;
}

.kk-pcl-modal__toggle-btn span {
	font-size: 11px;
	color: #bbb;
	line-height: 1.3;
}

.kk-pcl-modal__toggle-btn:hover {
	border-color: #C5A355;
	background: #fefcf8;
}

.kk-pcl-modal__toggle-btn:hover strong {
	color: #444;
}

.kk-pcl-modal__toggle-btn.active {
	border-color: #7B2D3B;
	background: #fdf4f5;
	box-shadow: 0 0 0 1px #7B2D3B;
}

.kk-pcl-modal__toggle-btn.active svg {
	color: #7B2D3B;
}

.kk-pcl-modal__toggle-btn.active strong {
	color: #7B2D3B;
}

.kk-pcl-modal__toggle-btn.active span {
	color: #999;
}

/* "or" separator + alternative action buttons */
.kk-pcl-modal__also {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #f0ebe5;
}

.kk-pcl-modal__also-label {
	font-size: 11px;
	color: #ccc;
	font-weight: 500;
}

.kk-pcl-modal__also-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	border: 1px solid #e8e0d8;
	border-radius: 8px;
	background: #fff;
	color: #888;
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.kk-pcl-modal__also-btn:hover {
	border-color: #7B2D3B;
	color: #7B2D3B;
	background: #fdf8f8;
}

.kk-pcl-modal__also-btn svg {
	flex-shrink: 0;
}

/* Danger button (reset confirm) */
.kk-pcl-modal__btn--danger {
	background: linear-gradient(135deg, #c44, #d55);
	color: #fff;
	box-shadow: 0 4px 14px rgba(204, 68, 68, 0.25);
}
.kk-pcl-modal__btn--danger:hover {
	background: linear-gradient(135deg, #d55, #e66);
	box-shadow: 0 6px 20px rgba(204, 68, 68, 0.35);
	transform: translateY(-1px);
}

/* Warning icon variant */
.kk-pcl-modal__icon--warn {
	background: linear-gradient(135deg, #e8a838, #d49420) !important;
}

/* ============ TOAST NOTIFICATION ============ */

.kk-pcl-toast {
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #333;
	color: #fff;
	padding: 12px 22px 12px 16px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 600;
	box-shadow: 0 8px 30px rgba(0,0,0,0.2);
	z-index: 10000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.kk-pcl-toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.kk-pcl-toast__icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #5ecf6d;
}
