@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;800;900&display=swap');

/* ========================================
 List Theme - Scoped Styles
 ======================================== */

/* ---------- CSS Variables ---------- */
:root {
 --list-black: #000;
 --list-white: #F5EBD0;
 --list-dropdown-bg: #7F011F;
 --list-gray-100: #f5f5f5;
 --list-gray-200: #e5e5e5;
 --list-gray-300: #d4d4d4;
 --list-gray-400: #a3a3a3;
 --list-gray-500: #737373;
 --list-gray-600: #525252;
 --list-gray-700: #404040;
 --list-gray-800: #262626;
 --list-gray-900: #171717;
 --list-font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 --list-header-height: 60px;
 --list-footer-height: 50px;
 --list-max-width: 1200px;
 --list-radius: 6px;
 --list-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 --list-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
 --theme-cat-bg-color: #7F011F;
 --theme-cat-text-color: #436dea;
 --theme-prod-container-color: #f5f5f5;
 --theme-price-color: #7F011F;
}

/* ---------- Reset ---------- */
html {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

body, body.list-theme {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	scroll-behavior: smooth;
	font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
	background-color: var(--list-gray-100);
	color: var(--list-white);
	line-height: 1.7;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.list-theme *,
.list-theme *::before,
.list-theme *::after {
	box-sizing: border-box;
}

.list-theme a {
	color: inherit;
	text-decoration: none;
}

.list-theme ul {
	list-style: none;
}

.list-theme img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ---------- Announcement Bar ---------- */
.list-announcement-bar {
	background-color: #5c0117;
	color: #F5EBD0;
	font-size: 0.85rem;
	font-weight: 500;
	padding: 6px 1rem;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1001;
	border-bottom: 1px solid rgba(245, 235, 208, 0.2);
}

.list-announcement-track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	max-height: 50px;
	overflow: hidden;
}

.list-announcement-msg {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 1.3;
}

.list-announcement-msg p,
.list-announcement-msg div,
.list-announcement-msg span {
	margin: 0 !important;
	padding: 0 !important;
	display: inline-block;
}

.list-announcement-msg img {
	max-height: 32px !important;
	width: auto !important;
	display: inline-block !important;
	vertical-align: middle;
	border-radius: 4px;
	margin: 0 4px;
}

/* ---------- Utilities ---------- */
.list-container {
	max-width: var(--list-max-width);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.list-text-center { text-align: center; }
.list-mt-1 { margin-top: 0.5rem; }
.list-mt-2 { margin-top: 1rem; }
.list-mt-3 { margin-top: 1.5rem; }
.list-mt-4 { margin-top: 2rem; }
.list-mb-1 { margin-bottom: 0.5rem; }
.list-mb-2 { margin-bottom: 1rem; }
.list-mb-3 { margin-bottom: 1.5rem; }
.list-mb-4 { margin-bottom: 2rem; }

/* ========================================
   Header & Navigation
   ======================================== */

.list-site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #7F011F;
	padding: 0 1.5rem;
	height: var(--list-header-height);
	position: sticky;
	top: 0;
	margin: 0 !important;
	z-index: 1000;
	box-shadow: var(--list-shadow-lg);
}

.list-logo {
 color: var(--list-white);
 font-size: 1.3rem;
 font-weight: 700;
 text-decoration: none;
 letter-spacing: 0.5px;
 white-space: nowrap;
}

.list-logo:hover {
 opacity: 0.8;
}

/* Hamburger */
.list-hamburger {
 display: none;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 5px;
 width: 42px;
 height: 42px;
 background: transparent;
 border: none;
 cursor: pointer;
 padding: 8px;
 border-radius: 4px;
 transition: background-color 0.2s ease;
}

.list-hamburger:hover {
 background-color: rgba(245, 235, 208, 0.15);
}

.list-hamburger:focus {
 outline: none;
 box-shadow: none;
}

.list-hamburger span {
 display: block;
 width: 22px;
 height: 2px;
 background-color: var(--list-white);
 border-radius: 2px;
 transition: transform 0.3s ease, opacity 0.3s ease;
 transform-origin: center;
}

.list-hamburger.list-active span:nth-child(1) {
 transform: translateY(7px) rotate(45deg);
}

.list-hamburger.list-active span:nth-child(2) {
 opacity: 0;
}

.list-hamburger.list-active span:nth-child(3) {
 transform: translateY(-7px) rotate(-45deg);
}

/* Desktop Navigation */
.list-main-nav {
 display: block;
}

.list-nav-list {
 display: flex;
 list-style: none;
 gap: 0;
}

.list-nav-link {
 display: flex;
 align-items: center;
 color: var(--list-white);
 text-decoration: none;
 padding: 0 1.1rem;
 height: var(--list-header-height);
 font-size: 0.93rem;
 font-weight: 500;
 letter-spacing: 0.2px;
 transition: color 0.2s ease, opacity 0.2s ease;
 position: relative;
 background-color: transparent !important;
}

.list-nav-link::after {
 content: '';
 position: absolute;
 bottom: 4px;
 left: 1.1rem;
 right: 1.1rem;
 height: 2px;
 background-color: var(--list-white);
 transform: scaleX(0);
 transition: transform 0.25s ease;
}

.list-nav-link:hover::after,
.list-nav-link.active::after {
 transform: scaleX(1);
}

.list-nav-link:hover,
.list-nav-link:focus,
.list-nav-link.active {
 background-color: transparent !important;
 color: #ffffff !important;
 opacity: 0.95;
 outline: none;
 box-shadow: none;
}

/* Header Dropdown Menu */
.list-nav-dropdown-wrap {
 position: relative;
}

.list-dropdown-btn {
 background: transparent;
 border: none;
 cursor: pointer;
 font-family: inherit;
 text-align: left;
 outline: none;
}

.list-dropdown-menu {
 position: absolute;
 top: 100%;
 left: 0;
 min-width: 220px;
 max-height: 380px;
 overflow-y: auto;
 background-color: #5c0116;
 border: 1px solid rgba(245, 235, 208, 0.2);
 border-radius: 8px;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
 padding: 6px 0;
 margin: 0;
 list-style: none;
 display: none;
 z-index: 2000;
}

.list-nav-dropdown-wrap:hover .list-dropdown-menu,
.list-nav-dropdown-wrap.open .list-dropdown-menu,
.list-dropdown-menu.show {
 display: block !important;
}

.list-dropdown-link {
 display: block;
 padding: 8px 16px;
 color: #F5EBD0 !important;
 font-size: 0.9rem;
 font-weight: 500;
 text-decoration: none;
 transition: background-color 0.15s ease, color 0.15s ease;
 white-space: nowrap;
}

.list-dropdown-link:hover {
 background-color: rgba(255, 255, 255, 0.15);
 color: #ffffff !important;
}

/* Mobile Navigation */
@media (max-width: 991px) {
 .list-hamburger {
 display: flex !important;
 z-index: 1002;
 }

 .list-main-nav {
 position: absolute;
 top: var(--list-header-height);
 left: 0;
 right: 0;
 background-color: var(--list-dropdown-bg, #7F011F) !important;
 border-top: 1px solid rgba(245, 235, 208, 0.2);
 border-bottom: 2px solid rgba(245, 235, 208, 0.2);
 box-shadow: var(--list-shadow-lg);
 max-height: 0;
 overflow: hidden;
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
 transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, visibility 0.25s ease;
 z-index: 1001;
 }

 .list-main-nav.list-active,
 .list-main-nav.active,
 .list-main-nav.open,
 .list-main-nav.is-active {
 max-height: 600px !important;
 opacity: 1 !important;
 visibility: visible !important;
 pointer-events: auto !important;
 display: block !important;
 }

 .list-nav-list {
 flex-direction: column;
 }

 .list-nav-link {
 padding: 0.9rem 1.5rem;
 height: auto;
 line-height: 1.4;
 border-bottom: 1px solid rgba(245, 235, 208, 0.35);
 font-size: 1.05rem;
 font-weight: 600;
 color: #F5EBD0 !important;
 }

 .list-nav-link:hover,
 .list-nav-link:focus,
 .list-nav-link.active {
 background-color: transparent !important;
 color: #ffffff !important;
 opacity: 0.95;
 }

 .list-nav-link::after {
 display: none;
 }

 .list-nav-link:last-child {
 border-bottom: none;
 }
}

/* ========================================
 Main Layout
 ======================================== */

.list-main {
 flex: 1;
	min-height: calc(100vh - var(--list-header-height) - var(--list-footer-height));
	position: relative;
}

/* ========================================
 Banner Carousel
 ======================================== */

.list-banner-section {
 margin-top: 16px;
 width: 100%;
}

@media (max-width: 768px) {
 .list-banner-section {
  margin-top: 12px;
 }
}

.list-banner-carousel {
 position: relative;
 width: 100%;
 overflow: hidden;
 background-color: var(--list-gray-200);
 line-height: 0;
}

.list-banner-slide {
 width: 100%;
 opacity: 0;
 position: absolute;
 top: 0;
 left: 0;
 transition: opacity 0.6s ease;
}

.list-banner-slide.list-banner-active {
 opacity: 1;
 position: relative;
}

.list-banner-slide + .list-banner-slide {
 position: absolute;
}

.list-banner-img {
 width: 100%;
 height: auto;
 max-height: 420px;
 object-fit: cover;
 display: block;
}

.list-banner-carousel a {
 display: block;
 line-height: 0;
}

/* ========================================
 Hero Sections
 ======================================== */

.list-hero {
 padding: 5rem 2rem;
 text-align: center;
 background: linear-gradient(135deg, var(--list-gray-200) 0%, var(--list-gray-100) 100%);
 position: relative;
 overflow: hidden;
}

.list-hero::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -20%;
 width: 500px;
 height: 500px;
 background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
 border-radius: 50%;
}

.list-hero--landing {
 background: linear-gradient(135deg, var(--list-gray-300) 0%, var(--list-gray-200) 100%);
}

.list-hero h1 {
 font-size: clamp(1.8rem, 4vw, 2.8rem);
 margin-bottom: 1rem;
 color: var(--list-black);
 font-weight: 700;
 line-height: 1.2;
 position: relative;
}

.list-hero p {
 font-size: 1.1rem;
 color: var(--list-gray-500);
 margin-bottom: 2rem;
 max-width: 560px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.7;
}

/* ========================================
 Buttons
 ======================================== */

.list-btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 padding: 0.8rem 2rem;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--list-radius);
 cursor: pointer;
 transition: all 0.2s ease;
 border: 2px solid transparent;
 text-decoration: none;
 white-space: nowrap;
}

.list-btn-primary {
 background-color: var(--list-black);
 color: var(--list-white);
 border-color: var(--list-black);
}

.list-btn-primary:hover {
 background-color: var(--list-gray-800);
 border-color: var(--list-gray-800);
 transform: translateY(-1px);
 box-shadow: var(--list-shadow);
}

.list-btn-secondary {
 background-color: transparent;
 color: var(--list-black);
 border-color: var(--list-black);
}

.list-btn-secondary:hover {
 background-color: var(--list-black);
 color: var(--list-white);
}

.list-btn-block {
 display: flex;
 width: 100%;
}

/* ========================================
 Page Sections
 ======================================== */

.list-page-section {
 padding: 3.5rem 2rem;
 max-width: var(--list-max-width);
 margin: 0 auto;
}

.list-page-section h1 {
 font-size: clamp(1.5rem, 3vw, 2rem);
 margin-bottom: 1.5rem;
 color: var(--list-black);
 font-weight: 700;
 position: relative;
 padding-bottom: 0.75rem;
}

.list-page-section h1::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 width: 50px;
 height: 3px;
 background-color: var(--list-black);
}

.list-page-section h1.list-text-center::after {
 left: 50%;
 transform: translateX(-50%);
}

.list-page-section p {
 color: var(--list-gray-500);
 line-height: 1.8;
}

/* ========================================
 Cards & Grid
 ======================================== */

.list-card {
 background-color: var(--list-white);
 border-radius: var(--list-radius);
 box-shadow: var(--list-shadow);
 padding: 1.5rem;
 transition: box-shadow 0.2s ease, transform 0.2s ease;
 border: 1px solid var(--list-gray-200);
}

.list-card:hover {
 box-shadow: var(--list-shadow-lg);
 transform: translateY(-2px);
}

.list-card-title {
 font-size: 1.1rem;
 font-weight: 600;
 color: var(--list-black);
 margin-bottom: 0.5rem;
}

.list-card-text {
 font-size: 0.95rem;
 color: var(--list-gray-500);
 line-height: 1.6;
}

.list-grid {
 display: grid;
 gap: 1.5rem;
}

.list-grid-2 {
 grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.list-grid-3 {
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.list-grid-4 {
 grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

@media (max-width: 480px) {
 .list-grid-2,
 .list-grid-3,
 .list-grid-4 {
 grid-template-columns: 1fr;
 }
}

/* ========================================
 Product Card
 ======================================== */

.list-product-card {
 background-color: var(--list-white);
 border-radius: var(--list-radius);
 box-shadow: var(--list-shadow);
 overflow: hidden;
 border: 1px solid var(--list-gray-200);
 transition: box-shadow 0.2s ease, transform 0.2s ease;
 display: flex;
 flex-direction: column;
}

.list-product-card:hover {
 box-shadow: var(--list-shadow-lg);
 transform: translateY(-3px);
}

.list-product-card-img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 background-color: var(--list-gray-200);
}

.list-product-card-body {
 padding: 1.25rem;
 flex: 1;
 display: flex;
 flex-direction: column;
}

.list-product-card-title {
 font-size: 1rem;
 font-weight: 600;
 color: var(--list-black);
 margin-bottom: 0.5rem;
 line-height: 1.4;
}

.list-product-card-price {
 font-size: 1.15rem;
 font-weight: 700;
 color: var(--list-black);
 margin-top: auto;
 padding-top: 0.75rem;
}

.list-product-card-price .currency {
 font-size: 0.85rem;
 font-weight: 500;
}

/* ========================================
 Forms
 ======================================== */

.list-form-group {
 margin-bottom: 1.25rem;
}

.list-form-label {
 display: block;
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--list-gray-700);
 margin-bottom: 0.4rem;
}

.list-form-label .required {
 color: #dc2626;
 margin-left: 2px;
}

.list-form-input,
.list-form-select,
.list-form-textarea {
 width: 100%;
 padding: 0.7rem 1rem;
 font-size: 0.95rem;
 font-family: var(--list-font-sans);
 color: var(--list-gray-700);
 background-color: var(--list-white);
 border: 1px solid var(--list-gray-300);
 border-radius: var(--list-radius);
 transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.list-form-input:focus,
.list-form-select:focus,
.list-form-textarea:focus {
 outline: none;
 border-color: var(--list-black);
 box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.list-form-input::placeholder {
 color: var(--list-gray-400);
}

.list-form-textarea {
 resize: vertical;
 min-height: 120px;
}

.list-form-select {
 appearance: none;
 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23525252' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
 background-repeat: no-repeat;
 background-position: right 1rem center;
 padding-right: 2.5rem;
}

.list-form-error {
 color: #dc2626;
 font-size: 0.82rem;
 margin-top: 0.3rem;
 display: none;
}

.list-form-group.has-error .list-form-input,
.list-form-group.has-error .list-form-select,
.list-form-group.has-error .list-form-textarea {
 border-color: #dc2626;
}

.list-form-group.has-error .list-form-error {
 display: block;
}

/* ========================================
 Tables
 ======================================== */

.list-table-wrapper {
 overflow-x: auto;
 border-radius: var(--list-radius);
 box-shadow: var(--list-shadow);
}

.list-data-table {
 width: 100%;
 border-collapse: collapse;
 background-color: var(--list-white);
 font-size: 0.93rem;
}

.list-data-table thead {
 background-color: var(--list-black);
 color: var(--list-white);
}

.list-data-table th {
 padding: 0.85rem 1rem;
 text-align: left;
 font-weight: 600;
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}

.list-data-table td {
 padding: 0.85rem 1rem;
 border-bottom: 1px solid var(--list-gray-200);
 color: var(--list-gray-600);
}

.list-data-table tbody tr {
 transition: background-color 0.15s ease;
}

.list-data-table tbody tr:hover {
 background-color: var(--list-gray-100);
}

.list-data-table tbody tr:last-child td {
 border-bottom: none;
}

@media (max-width: 600px) {
 .list-data-table th,
 .list-data-table td {
 padding: 0.65rem 0.75rem;
 font-size: 0.85rem;
 }
}

/* ========================================
 Steps / Timeline
 ======================================== */

.list-timeline {
 display: flex;
 justify-content: center;
 gap: 0;
 padding: 2rem 0;
 position: relative;
}

.list-timeline::before {
 content: '';
 position: absolute;
 top: 30px;
 left: 10%;
 right: 10%;
 height: 2px;
 background-color: var(--list-gray-300);
 z-index: 0;
}

.list-step {
 display: flex;
 flex-direction: column;
 align-items: center;
 flex: 1;
 position: relative;
 z-index: 1;
 text-align: center;
}

.list-step-dot {
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background-color: var(--list-gray-300);
 border: 3px solid var(--list-gray-200);
 margin-bottom: 0.75rem;
 transition: background-color 0.3s ease, border-color 0.3s ease;
}

.list-step.active .list-step-dot {
 background-color: var(--list-black);
 border-color: var(--list-black);
}

.list-step.completed .list-step-dot {
 background-color: var(--list-gray-500);
 border-color: var(--list-gray-500);
}

.list-step-label {
 font-size: 0.82rem;
 color: var(--list-gray-500);
 font-weight: 500;
}

.list-step.active .list-step-label {
 color: var(--list-black);
 font-weight: 700;
}

@media (max-width: 480px) {
 .list-timeline {
 gap: 0.5rem;
 }
 .list-step-label {
 font-size: 0.72rem;
 }
 .list-step-dot {
 width: 16px;
 height: 16px;
 }
}

/* ========================================
 Alert / Notification
 ======================================== */

.list-alert {
 padding: 1rem 1.25rem;
 border-radius: var(--list-radius);
 margin-bottom: 1.5rem;
 font-size: 0.93rem;
 line-height: 1.6;
 border-left: 4px solid transparent;
}

.list-alert-success {
 background-color: #ecfdf5;
 color: #065f46;
 border-left-color: #10b981;
}

.list-alert-error {
 background-color: #fef2f2;
 color: #991b1b;
 border-left-color: #ef4444;
}

.list-alert-info {
 background-color: #eff6ff;
 color: #1e40af;
 border-left-color: #3b82f6;
}

.list-alert-warning {
 background-color: #fffbeb;
 color: #92400e;
 border-left-color: #f59e0b;
}

/* ========================================
 Search Bar
 ======================================== */

.list-search-bar {
 display: flex;
 gap: 0.5rem;
 max-width: 500px;
 margin: 0 auto 2rem;
}

.list-search-bar .list-form-input {
 border-radius: var(--list-radius);
}

.list-search-bar .list-btn {
 border-radius: var(--list-radius);
}

/* ========================================
 Breadcrumbs
 ======================================== */

.list-breadcrumbs {
 display: flex;
 align-items: center;
 gap: 0.5rem;
 padding: 1rem 1.5rem;
 font-size: 0.88rem;
 color: var(--list-gray-500);
 background-color: var(--list-white);
 border-bottom: 1px solid var(--list-gray-200);
}

.list-breadcrumbs a {
 color: var(--list-gray-600);
 text-decoration: none;
 transition: color 0.2s ease;
}

.list-breadcrumbs a:hover {
 color: var(--list-black);
}

.list-breadcrumbs .list-sep {
 color: var(--list-gray-300);
}

.list-breadcrumbs .list-current {
 color: var(--list-gray-800);
 font-weight: 500;
}

/* ========================================
 Empty State
 ======================================== */

.list-empty-state {
 text-align: center;
 padding: 3rem 2rem;
 color: var(--list-gray-400);
}

.list-empty-state svg {
 width: 64px;
 height: 64px;
 margin-bottom: 1rem;
 opacity: 0.5;
}

.list-empty-state h3 {
 font-size: 1.15rem;
 color: var(--list-gray-600);
 margin-bottom: 0.5rem;
}

.list-empty-state p {
 font-size: 0.93rem;
}

/* ========================================
 Footer
 ======================================== */

.list-site-footer {
 background-color: var(--list-black);
 color: var(--list-gray-400);
 text-align: center;
 padding: 1.1rem 1.5rem;
 font-size: 0.85rem;
 height: var(--list-footer-height);
 display: flex;
 align-items: center;
 justify-content: center;
}

.list-site-footer a {
 color: var(--list-gray-300);
 text-decoration: none;
}

.list-site-footer a:hover {
 color: var(--list-white);
}

/* ========================================
 Responsive Fine-tuning
 ======================================== */

@media (max-width: 480px) {
 .list-site-header {
 padding: 0 1rem;
 }

 .list-logo {
 font-size: 1.1rem;
 }

 .list-hero {
 padding: 3.5rem 1.25rem;
 }

 .list-page-section {
 padding: 2.5rem 1.25rem;
 }

 .list-btn {
 padding: 0.7rem 1.5rem;
 font-size: 0.93rem;
 }
}

/* ========================================
 Animations
 ======================================== */

@keyframes listFadeIn {
 from { opacity: 0; transform: translateY(8px); }
 to { opacity: 1; transform: translateY(0); }
}

.list-fade-in {
 animation: listFadeIn 0.35s ease forwards;
}

@keyframes listSpin {
 to { transform: rotate(360deg); }
}

.list-spinner {
 display: inline-block;
 width: 20px;
 height: 20px;
 border: 2px solid var(--list-gray-300);
 border-top-color: var(--list-black);
 border-radius: 50%;
 animation: listSpin 0.6s linear infinite;
}

/* ========================================
 Catalog - Category Sections
 ======================================== */

.list-catalog-section {
 padding: 2rem 1.5rem 3rem;
 max-width: var(--list-max-width);
 margin: 0 auto;
}

.list-category-block + .list-category-block {
 margin-top: 2.5rem;
 padding-top: 2rem;
 border-top: 1px solid var(--list-gray-200);
}

.list-category-header {
	margin-bottom: 0.65rem;
}

.list-category-title {
	font-size: 0.92rem;
	font-weight: 700;
	color: #F5EBD0;
	margin: 0;
	padding: 7px 14px;
	background: linear-gradient(135deg, #7F011F 0%, #5c0117 100%);
	border-radius: 8px;
	border: 1px solid rgba(245, 235, 208, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	box-shadow: 0 2px 8px rgba(127, 1, 31, 0.15);
	letter-spacing: 0.3px;
}

.list-category-count {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.75rem;
	font-weight: 600;
	color: #F5EBD0;
	background: rgba(245, 235, 208, 0.2);
	padding: 2px 8px;
	border-radius: 10px;
	letter-spacing: 0.2px;
}

/* ========================================
   Product Row (List-style layout)
   ======================================== */

.list-category-products {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.list-product-row {
	display: flex;
	align-items: center;
	flex-wrap: nowrap !important;
	gap: 0.75rem;
	background-color: #ffffff;
	border-radius: 8px;
	border: 1px solid var(--list-gray-200);
	padding: 0.5rem 0.85rem;
	min-height: 72px;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0,0,0,0.03);
	transition: box-shadow 0.2s ease, transform 0.15s ease;
	position: relative;
	overflow: hidden;
}

.list-product-row:hover {
	box-shadow: var(--list-shadow-lg);
	transform: translateY(-1px);
}

.list-product-row--oos {
	opacity: 0.7;
}

.list-product-row--oos .list-product-qty {
	display: none;
}

/* --- Qty Controls (right side, amount below) --- */
.list-product-qty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin-left: auto;
	flex-shrink: 0;
	white-space: nowrap;
}

.list-qty-controls {
	display: flex;
	align-items: center;
	border: 1px solid var(--list-gray-300);
	border-radius: 4px;
	overflow: hidden;
	background-color: var(--list-white);
}

.list-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border: none;
	background-color: var(--list-gray-100);
	color: var(--list-black);
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s ease;
	user-select: none;
	-webkit-user-select: none;
	line-height: 1;
	padding: 0;
}

.list-qty-btn:hover {
	background-color: var(--list-gray-200);
}

.list-qty-btn:active {
	background-color: var(--list-gray-300);
}

.list-qty-input {
	min-width: 44px;
	width: auto;
	max-width: 70px;
	height: 26px;
	border: none;
	border-left: 1px solid var(--list-gray-300);
	border-right: 1px solid var(--list-gray-300);
	text-align: center;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--list-black);
	background-color: var(--list-white);
	padding: 0 4px;
	box-sizing: border-box;
	outline: none;
	-moz-appearance: textfield;
}

.list-qty-input::-webkit-outer-spin-button,
.list-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.list-qty-total {
	font-size: 0.78rem;
	font-weight: 700;
	color: #7F011F;
	text-align: center;
	white-space: nowrap;
	line-height: 1.1;
}

@media print {
	.list-qty-controls,
	.list-qty-total {
		display: none !important;
	}
}

/* --- Image (left) --- */
.list-product-img-wrap {
	position: relative;
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--list-gray-200);
	border: 1px solid #e2e8f0;
}

.list-product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.list-product-oos-badge {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 0.55rem;
	font-weight: 600;
	padding: 1px 3px;
	text-align: center;
	letter-spacing: 0.2px;
}

.list-product-video-badge {
	position: absolute;
	top: 3px;
	right: 3px;
	background: #a8007d;
	color: #ffffff;
	font-size: 0.55rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	z-index: 2;
}
.list-product-video-badge i {
	margin-left: 1px;
}

/* --- Product Info: Name with Amount Below --- */
.list-product-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
}

.list-product-name {
	font-size: 0.88rem;
	font-weight: 600;
	color: #111827 !important;
	line-height: 1.3;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list-product-prices {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.list-product-price {
	font-size: 0.88rem;
	font-weight: 700;
	color: #7F011F;
}

.list-product-original-price {
	font-size: 0.78rem;
	font-weight: 400;
	color: var(--list-gray-400);
	text-decoration: line-through;
}

.list-product-discount-inline {
	background-color: #e65100;
	color: #ffffff;
	font-size: 0.66rem;
	font-weight: 700;
	padding: 1px 5px;
	border-radius: 4px;
	line-height: 1.2;
	display: inline-block;
	letter-spacing: 0.2px;
}

/* ========================================
 Empty State
 ======================================== */

.list-empty-state {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--list-gray-400);
}

.list-empty-state h3 {
	font-size: 1.15rem;
	color: var(--list-gray-600);
	margin-bottom: 0.5rem;
}

.list-empty-state p {
	font-size: 0.93rem;
}

/* ========================================
 Print
 ======================================== */

@media print {
	.list-hamburger {
		display: none !important;
	}

	.list-theme {
		background-color: #fff;
		color: #000;
	}

	.list-hero {
		background: none;
		color: #000;
	}
}

@media (max-width: 600px) {
	.list-product-row {
		flex-wrap: nowrap !important;
		gap: 0.6rem;
		padding: 0.45rem 0.6rem;
		min-height: 64px;
	}

	.list-product-img-wrap {
		width: 48px;
		height: 48px;
	}

	.list-product-info {
		flex: 1 1 auto;
	}

	.list-product-name {
		font-size: 0.84rem;
	}

	.list-product-price {
		font-size: 0.84rem;
	}

	.list-qty-btn {
		width: 24px;
		height: 24px;
		font-size: 0.78rem;
	}

	.list-qty-input {
		min-width: 40px;
		width: auto;
		max-width: 60px;
		height: 24px;
		font-size: 0.74rem;
		padding: 0 2px;
		box-sizing: border-box;
	}

	.list-qty-total {
		font-size: 0.74rem;
	}
}

/* ========================================
 Floating Cart Icon & Sidebar
 ======================================== */

/* FAB */
.list-cart-fab {
	position: fixed;
	bottom: 1.25rem;
	right: 1.25rem;
	z-index: 9998;
	width: 52px;
	height: 52px;
	border-radius: 12px;
	border: 1px solid rgba(245, 235, 208, 0.25);
	background: linear-gradient(135deg, #7F011F 0%, #5c0117 100%);
	color: #F5EBD0;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(127, 1, 31, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-cart-fab:hover {
	transform: scale(1.08);
	box-shadow: 0 6px 22px rgba(127, 1, 31, 0.45);
}

.list-cart-fab:active {
	transform: scale(0.95);
}

.list-cart-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background-color: #e65100;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 2px solid #fff;
	line-height: 1;
}

/* Overlay */
.list-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.list-cart-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Sidebar */
.list-cart-sidebar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) translateY(100%);
	width: min(420px, 92vw);
	height: 65vh;
	height: 65dvh;
	background: #fff;
	z-index: 10000;
	box-shadow: 0 -4px 32px rgba(0,0,0,0.22);
	display: flex;
	flex-direction: column;
	border-radius: 16px 16px 0 0;
	border: 1px solid rgba(127, 1, 31, 0.2);
	border-bottom: none;
	overflow: hidden;
	transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.list-cart-sidebar.active {
	transform: translateX(-50%) translateY(0);
}

.list-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1.25rem;
	background: linear-gradient(135deg, #7F011F 0%, #5c0117 100%);
	color: #F5EBD0;
	border-radius: 0;
}

.list-cart-header h3 {
	margin: 0;
	font-size: 1.05rem;
	color: #F5EBD0;
	font-weight: 700;
}

.list-cart-close {
	width: 30px;
	height: 30px;
	border: none;
	background: rgba(245, 235, 208, 0.2);
	font-size: 1.3rem;
	color: #F5EBD0;
	cursor: pointer;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}

.list-cart-close:hover {
	background: rgba(245, 235, 208, 0.35);
}

/* Cart Items */
.list-cart-items {
	flex: 1;
	overflow-y: auto;
	padding: 0.5rem 1rem;
}

.list-cart-empty {
	text-align: center;
	color: var(--list-gray-400);
	font-size: 0.85rem;
	padding: 1.5rem 0;
}

.list-cart-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--list-gray-100);
}

.list-cart-item-img {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid var(--list-gray-200);
}

.list-cart-item-info {
	flex: 1;
	min-width: 0;
}

.list-cart-item-name {
	display: block;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--list-black);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.list-cart-item-price {
	font-size: 0.78rem;
	color: var(--list-gray-500);
}

.list-cart-item-qty {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.list-cart-item-qty button {
	width: 22px;
	height: 22px;
	border: 1px solid #7F011F;
	background: #ffffff;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #7F011F;
	transition: background 0.15s, color 0.15s;
}

.list-cart-item-qty button:hover {
	background: #7F011F;
	color: #F5EBD0;
}

.list-cart-item-qty span {
	font-size: 0.88rem;
	font-weight: 700;
	color: #7F011F;
	min-width: 20px;
	text-align: center;
}

.list-cart-item-remove {
	border: none;
	background: none;
	color: #dc2626;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 4px;
	line-height: 1;
	opacity: 0.9;
	transition: opacity 0.15s, color 0.15s, transform 0.15s;
}

.list-cart-item-remove:hover {
	opacity: 1;
	color: #991b1b;
	transform: scale(1.15);
}

/* Footer */
.list-cart-footer {
	padding: 0.75rem 1rem;
	border-top: 1px solid var(--list-gray-200);
	background: var(--list-white);
}

.list-cart-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--list-black);
	margin-bottom: 0.6rem;
}

.list-cart-total-amount {
	color: #7F011F;
}

.list-cart-min-notice {
	background: #fef2f2;
	border: 1px solid #fca5a5;
	color: #dc2626;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 8px 10px;
	border-radius: 6px;
	margin-bottom: 0.6rem;
	text-align: center;
	line-height: 1.4;
}

.list-cart-min-notice i {
	color: #dc2626;
	margin-right: 4px;
}

.list-cart-min-notice strong {
	color: #dc2626;
	font-weight: 800;
}

/* Home Page Minimum Order Badge */
.list-min-order-badge-wrap {
	display: flex;
	justify-content: center;
	margin-top: 12px;
}

.list-min-order-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 18px;
	background: #fef2f2;
	color: #dc2626;
	border: 1px solid #fca5a5;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(220, 38, 38, 0.12);
}

.list-min-order-badge i {
	font-size: 0.9rem;
	color: #dc2626;
}

.list-min-order-badge strong {
	font-size: 0.92rem;
	color: #dc2626;
	font-weight: 800;
}

.list-cart-checkout-btn {
	width: 100%;
	padding: 0.65rem;
	background: linear-gradient(135deg, #7F011F 0%, #5c0117 100%);
	color: #F5EBD0;
	border: 1px solid rgba(245, 235, 208, 0.25);
	border-radius: 8px;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.25s ease, background 0.25s ease;
}

.list-cart-checkout-btn:hover {
	background: #5a0118;
}

.list-cart-checkout-btn:disabled,
.list-cart-checkout-btn.list-btn-disabled {
	background: linear-gradient(135deg, #7F011F 0%, #5c0117 100%) !important;
	color: #F5EBD0 !important;
	border: 1px solid rgba(245, 235, 208, 0.25) !important;
	opacity: 0.35 !important;
	filter: opacity(35%) !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
	box-shadow: none !important;
}

/* Add to cart button in row */
.list-cart-add-btn {
	width: 30px;
	height: 30px;
	border: none;
	background: var(--list-dropdown-bg);
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.2s, transform 0.15s;
	padding: 0;
}

.list-cart-add-btn:hover {
	background: #5a0118;
	transform: scale(1.1);
}

.list-cart-add-btn:active {
	transform: scale(0.9);
}

.list-product-row--oos .list-cart-add-btn {
	display: none;
}

/* Print: hide cart */
@media print {
	.list-cart-fab,
	.list-cart-sidebar,
	.list-cart-overlay {
		display: none !important;
	}
}

/* ========================================
   Banner Carousel (Dots pagination, no arrows)
   ======================================== */
.list-banner-section {
	width: 100%;
	background-color: var(--list-gray-900);
	overflow: hidden;
	position: relative;
}

.list-banner-carousel {
	position: relative;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.list-banner-track {
	position: relative;
	width: 100%;
	min-height: 220px;
}

.list-banner-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
	z-index: 1;
}

.list-banner-slide.list-banner-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.list-banner-slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.list-banner-img {
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
	display: block;
}

/* Dots pagination - Small dots */
.list-banner-dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.35);
	padding: 4px 10px;
	border-radius: 12px;
	backdrop-filter: blur(4px);
}

.list-banner-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	border: none;
	background: rgba(245, 235, 208, 0.45);
	cursor: pointer;
	padding: 0;
	transition: transform 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
	outline: none;
}

.list-banner-dot:hover {
	background: rgba(245, 235, 208, 0.8);
	transform: scale(1.2);
}

.list-banner-dot.active {
	background: #F5EBD0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	transform: scale(1.3);
	box-shadow: 0 0 6px rgba(245, 235, 208, 0.6);
}
/* ========================================
   Notes Section - Midnight Blue/Purple Gradient with Gridline & Stars
   ======================================== */
.list-notes-section {
	position: relative;
	background-color: #1e1b4b;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(135deg, #1e3a8a 0%, #1e1b4b 50%, #311042 100%);
	background-size: 24px 24px, 24px 24px, 100% 100%;
	color: #F5EBD0;
	padding: 1.15rem 2rem;
	text-align: center;
	max-width: var(--list-max-width);
	margin: 1.25rem auto;
	border-radius: 10px;
	border: 1px solid rgba(245, 235, 208, 0.25);
	border-left: 4px solid #F5EBD0;
	box-shadow: 0 6px 22px rgba(30, 27, 75, 0.35);
	overflow: hidden;
}

.list-notes-sparkles {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.list-notes-sparkles .sparkle {
	position: absolute;
	color: #F5EBD0;
	opacity: 0;
	animation: listSparkleFloat 3.2s infinite ease-in-out;
	user-select: none;
	line-height: 1;
}

.list-notes-sparkles .s1 { top: 15%; left: 5%; font-size: 13px; animation-delay: 0s; }
.list-notes-sparkles .s2 { top: 62%; left: 18%; font-size: 11px; animation-delay: 0.9s; }
.list-notes-sparkles .s3 { top: 22%; left: 88%; font-size: 15px; animation-delay: 1.5s; }
.list-notes-sparkles .s4 { top: 68%; left: 78%; font-size: 12px; animation-delay: 0.5s; }
.list-notes-sparkles .s5 { top: 18%; left: 48%; font-size: 10px; animation-delay: 2.1s; }
.list-notes-sparkles .s6 { top: 65%; left: 35%; font-size: 14px; animation-delay: 2.7s; }
.list-notes-sparkles .s7 { top: 25%; left: 68%; font-size: 11px; animation-delay: 1.1s; }
.list-notes-sparkles .s8 { top: 72%; left: 94%; font-size: 13px; animation-delay: 1.8s; }

@keyframes listSparkleFloat {
	0% {
		opacity: 0;
		transform: scale(0.3) rotate(0deg);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.25) rotate(180deg);
	}
	100% {
		opacity: 0;
		transform: scale(0.3) rotate(360deg);
	}
}

.list-notes-text {
	position: relative;
	z-index: 2;
	color: #F5EBD0;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.5;
	max-width: 920px;
	margin: 0 auto;
	letter-spacing: 0.2px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
	.list-notes-section {
		padding: 0.85rem 1.1rem;
		margin: 1rem 0.85rem;
		border-radius: 8px;
		border-left-width: 4px;
	}
	.list-notes-text {
		font-size: 0.95rem;
	}

	.list-cart-sidebar {
		width: 100vw;
	}

	.list-cart-add-btn {
		width: 26px;
		height: 26px;
	}

	.list-cart-add-btn svg {
		width: 14px;
		height: 14px;
	}

	.list-qty-total {
		font-size: 0.72rem;
		min-width: 48px;
	}
}

/* ========================================
 Checkout Page Styles
 ======================================== */

/* â”€â”€ Checkout Page (Blade-style classes) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Layout */
.stl-main {
	min-height: 100vh;
	background-color: #f5f5f5;
	color: #111;
}

.stl-checkout-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1.5rem 1.5rem 3rem;
}

.stl-checkout-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.stl-checkout-layout {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 1.5rem;
	align-items: flex-start;
}

.stl-checkout-form-wrap {
	padding-top: 1rem;
}

.stl-checkout-form {
	background: #fff;
	border-radius: 12px;
	padding: 1.75rem 2rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.stl-checkout-side {
	position: sticky;
	top: calc(var(--list-header-height) + 1rem);
}

/* Form elements */
.stl-checkout-form-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
	color: #111;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.stl-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.stl-form-field {
	margin-bottom: 1rem;
}

.stl-form-field:last-child {
	margin-bottom: 0;
}

.stl-form-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0.35rem;
}

.stl-form-input,
.stl-form-select,
.stl-form-textarea {
	width: 100%;
	padding: 0.65rem 0.85rem;
	border: 1.5px solid #e5e7eb;
	border-radius: 8px;
	font-size: 0.92rem;
	color: #111;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	font-family: inherit;
	line-height: 1.5;
}

.stl-form-input:focus,
.stl-form-select:focus,
.stl-form-textarea:focus {
	outline: none;
	border-color: var(--list-dropdown-bg);
	box-shadow: 0 0 0 3px rgba(127, 1, 31, 0.08);
}

.stl-form-input::placeholder,
.stl-form-textarea::placeholder {
	color: #b0b0b0;
}

.stl-form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23525252' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2.2rem;
	cursor: pointer;
}

.stl-form-textarea {
	resize: vertical;
	min-height: 80px;
}

.stl-optional-label {
	font-weight: 400;
	color: #9ca3af;
}

/* Back link */
.stl-back-to-home {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: var(--list-dropdown-bg);
	font-weight: 600;
	margin-bottom: 1rem;
	transition: opacity 0.2s;
}

.stl-back-to-home:hover {
	opacity: 0.7;
}

/* Error hint box */
.stl-order-value-hint {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	padding: 0.7rem 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.4;
}

.stl-order-value-hint i {
	margin-top: 2px;
	flex-shrink: 0;
}

/* Summary sidebar */
.stl-checkout-summary {
	background: #fff;
	border-radius: 12px;
	padding: 1rem 1.2rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.stl-price-summary-wrap {
	margin-bottom: 0.35rem;
}

.stl-price-summary {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.86rem;
}

.stl-price-summary th {
	text-align: left;
	padding: 0.3rem 0.35rem;
	font-weight: 600;
	color: #6b7280;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-bottom: 1.5px solid #e5e7eb;
}

.stl-price-summary td {
	padding: 0.2rem 0.35rem;
	color: #374151;
	border-bottom: 1px solid #f3f4f6;
	vertical-align: middle;
	line-height: 1.2;
}

.stl-price-summary tbody tr:last-child td {
	border-bottom: none;
}

.stl-summary-charges {
	border-top: 1.5px solid #e5e7eb;
	padding-top: 0.35rem;
}

.stl-summary-charge-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.15rem 0;
	font-size: 0.86rem;
	color: #4b5563;
	line-height: 1.3;
}

.stl-total-row {
	font-weight: 700;
	font-size: 0.98rem;
	margin-top: 0.2rem;
	padding-top: 0.35rem;
	border-top: 2px solid #e5e7eb;
	color: #111;
}

.stl-total-label {
	font-weight: 700;
	color: #111;
}

.stl-total-value {
	font-weight: 800;
	color: var(--list-dropdown-bg);
	font-size: 1.05rem;
}

.stl-summary-empty {
	text-align: center;
	color: #9ca3af;
	padding: 1rem 0;
	font-size: 0.88rem;
}

.stl-cart-empty-cta {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.5rem 1.25rem;
	background: var(--list-dropdown-bg);
	color: #fff;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	transition: background 0.2s;
}

.stl-cart-empty-cta:hover {
	background: #5a0118;
	color: #fff;
}

/* Place Order button */
.stl-place-order-btn {
	width: 100%;
	padding: 0.85rem;
	background: var(--list-dropdown-bg);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.stl-place-order-btn:hover {
	background: #5a0118;
}

.stl-place-order-btn--disabled,
.stl-place-order-btn:disabled {
	opacity: 0.55;
	background: #9ca3af;
	cursor: not-allowed;
}

.stl-place-order-btn--active {
	background: var(--list-dropdown-bg);
	opacity: 1;
	cursor: pointer;
}

.stl-place-order-btn--active:hover {
	background: #5a0118;
}

/* Minimum order amount */
.stl-min-amount-row {
	color: #991b1b;
}

.stl-min-progress-wrap {
	height: 6px;
	background: #fee2e2;
	border-radius: 99px;
	overflow: hidden;
	margin-top: 6px;
}

.stl-min-progress-bar {
	height: 100%;
	width: 0%;
	border-radius: 99px;
	transition: width 0.3s ease, background 0.3s ease;
	background: #dc2626;
}

.stl-min-progress-bar--met {
	background: #22c55e;
}

.stl-min-progress-bar--unmet {
	background: #dc2626;
}

/* Errors container */
.stl-checkout-errors {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	color: #991b1b;
	font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
	.stl-checkout-layout {
		grid-template-columns: 1fr;
	}

	.stl-checkout-side {
		position: static;
	}
}

@media (max-width: 600px) {
	.stl-checkout-container {
		padding: 1rem 0.75rem 2rem;
	}

	.stl-checkout-form {
		padding: 1.25rem 1rem;
		border-radius: 10px;
	}

	.stl-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.stl-checkout-summary {
		padding: 1.25rem 1rem;
	}
}

/* Override beige with white for checkout */
.checkout-container {
	max-width: 540px;
	margin: 0 auto;
	padding: 1rem 1rem 2rem;
	color: #111;
}

.checkout-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #111;
}

.checkout-errors {
	background: #fdecea;
	color: #c0392b;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.88rem;
}

.checkout-errors p {
	margin: 0.2rem 0;
}

.checkout-cart-summary {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 0.75rem 1rem;
	margin-bottom: 1.25rem;
}

.checkout-cart-summary h3 {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	color: #111;
}

.checkout-cart-item {
	display: flex;
	justify-content: space-between;
	padding: 0.4rem 0;
	font-size: 0.88rem;
	border-bottom: 1px solid var(--list-gray-100);
}

.checkout-cart-item:last-child {
	border-bottom: none;
}

.checkout-item-name {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #111;
}

.checkout-item-price {
	font-weight: 600;
	margin-left: 0.5rem;
	color: #111;
}

.checkout-empty {
	color: #888;
	font-size: 0.9rem;
	padding: 0.5rem 0;
}

.checkout-empty a {
	color: var(--list-dropdown-bg);
}

.checkout-total-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 0.5rem;
	margin-top: 0.3rem;
	border-top: 2px solid #e0e0e0;
	font-weight: 700;
	font-size: 1.05rem;
	color: #111;
}

.checkout-form {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.checkout-row {
	display: flex;
	gap: 0.85rem;
}

.checkout-field {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	flex: 1;
}

.checkout-field--pin {
	flex: 0 0 140px;
}

.checkout-field label {
	font-size: 0.85rem;
	font-weight: 600;
	color: #111;
}

.req {
	color: #c0392b;
}

.checkout-field label span {
	font-weight: 400;
	color: #666;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
	padding: 0.7rem 0.85rem;
	border: 1.5px solid #ccc;
	border-radius: 8px;
	font-size: 0.95rem;
	font-family: inherit;
	background: #fff;
	color: #111;
	outline: none;
	transition: border-color 0.2s;
	width: 100%;
	box-sizing: border-box;
}

.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
	border-color: var(--list-dropdown-bg);
}

.checkout-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.85rem center;
	padding-right: 2.5rem;
}

.checkout-field textarea {
	resize: vertical;
}

.checkout-submit {
	padding: 0.85rem;
	background: var(--list-dropdown-bg);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 0.5rem;
}

.checkout-submit:hover {
	background: #5a0118;
}

.checkout-submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.checkout-btn-spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2.5px solid rgba(255,255,255,0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: checkout-spin 0.7s linear infinite;
	vertical-align: middle;
}

.checkout-btn-success {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.checkout-submit--success {
	background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
	cursor: default;
	box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4) !important;
}

@keyframes checkout-spin {
	to { transform: rotate(360deg); }
}

/* Success Animation Modal */
.checkout-success-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(4px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	animation: listFadeIn 0.3s ease;
}

.checkout-success-box {
	background: #ffffff;
	border-radius: 16px;
	padding: 2rem 1.5rem;
	text-align: center;
	max-width: 360px;
	width: 100%;
	box-shadow: 0 12px 40px rgba(0,0,0,0.35);
	animation: listPopIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.checkout-success-circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #059669 0%, #10B981 100%);
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
	animation: listScaleUp 0.4s ease 0.1s both;
}

.checkout-checkmark {
	stroke-dasharray: 50;
	stroke-dashoffset: 50;
	animation: listDrawCheck 0.4s ease 0.3s forwards;
}

@keyframes listDrawCheck {
	to { stroke-dashoffset: 0; }
}

@keyframes listPopIn {
	0% { opacity: 0; transform: scale(0.7); }
	100% { opacity: 1; transform: scale(1); }
}

@keyframes listScaleUp {
	0% { transform: scale(0); }
	100% { transform: scale(1); }
}

@keyframes listFadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.checkout-success-box h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.25rem;
	color: #059669;
	font-weight: 800;
}

.checkout-success-msg {
	margin: 0 0 1rem 0;
	font-size: 0.9rem;
	color: #666;
}

.checkout-success-info {
	background: #f8fafc;
	border-radius: 8px;
	padding: 0.75rem;
	margin-bottom: 1rem;
	font-size: 0.88rem;
	border: 1px solid #e2e8f0;
}

.checkout-success-info p {
	margin: 0.2rem 0;
	color: #334155;
}

.checkout-redirect-hint {
	font-size: 0.84rem;
	color: #7F011F;
	font-weight: 600;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

/* Success Page */
.checkout-success-container {
	max-width: 420px;
	margin: 0 auto;
	padding: 2rem 1rem;
	text-align: center;
	color: #111;
}

.checkout-success-icon {
	margin-bottom: 1rem;
}

.checkout-success-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 0.3rem;
	color: #111;
}

.checkout-success-subtitle {
	color: #666;
	margin-bottom: 1.25rem;
}

.checkout-success-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 1rem;
	text-align: left;
}

.checkout-success-row {
	display: flex;
	justify-content: space-between;
	padding: 0.35rem 0;
	font-size: 0.95rem;
	color: #111;
}

.checkout-success-row strong {
	color: #111;
}

.success-order-items {
	margin: 0.75rem 0 0.5rem;
}

.success-items-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.85rem;
}

.success-items-table thead {
	background: #f8f8f8;
}

.success-items-table th {
	padding: 8px 6px;
	text-align: left;
	font-weight: 600;
	color: #555;
	border-bottom: 1px solid #e5e7eb;
	font-size: 0.8rem;
}

.success-items-table td {
	padding: 8px 6px;
	border-bottom: 1px solid #f0f0f0;
	color: #333;
}

.success-items-table tbody tr:last-child td {
	border-bottom: none;
}

.success-order-totals {
	border-top: 2px solid #e5e7eb;
	margin-top: 0.5rem;
	padding-top: 0.5rem;
}

.success-total-row {
	display: flex;
	justify-content: space-between;
	padding: 0.3rem 0;
	font-size: 0.9rem;
	color: #333;
}

.success-discount-row {
	color: #059669;
}

.success-discount-row span:last-child {
	font-weight: 600;
}

.success-gst-row {
	color: #555;
}

.success-grand-total {
	border-top: 2px solid #e5e7eb;
	margin-top: 0.4rem;
	padding-top: 0.6rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
}

.success-customer-details {
	background: #f8f8f8;
	border-radius: 8px;
	padding: 1rem;
	margin-top: 0.75rem;
	text-align: left;
}

.success-customer-details h3 {
	font-size: 0.9rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	color: #444;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.success-detail-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 3px 0;
	font-size: 0.85rem;
	color: #555;
}

.success-detail-row i {
	color: #7F011F;
	margin-top: 2px;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}


.checkout-success-note {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 1.5rem;
}

.checkout-back-btn {
	display: inline-block;
	padding: 0.75rem 2rem;
	background: var(--list-dropdown-bg);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
}

.checkout-back-btn:hover {
	background: #5a0118;
}

/* â”€â”€ Payment Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.payorder-container {
	max-width: 520px;
	margin: 0 auto;
	padding: 1.5rem 1rem 2rem;
	color: #111;
}

.payorder-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
	color: #111;
}

.payorder-section {
	margin-bottom: 1.25rem;
}

.payorder-section h3 {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #888;
	margin: 0 0 0.5rem 0;
	font-weight: 600;
}

.payorder-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 1rem;
}

.payorder-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 0.92rem;
}
.payorder-row:last-child { border-bottom: none; }
.payorder-row--full {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.3rem;
}
.payorder-row--full p {
	margin: 0;
	color: #444;
	font-size: 0.88rem;
	line-height: 1.5;
}

.payorder-items {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 0.5rem 1rem;
}

.payorder-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.55rem 0;
	border-bottom: 1px solid #f1f5f9;
	font-size: 0.92rem;
}
.payorder-item:last-child { border-bottom: none; }

.payorder-item-name { color: #333; }
.payorder-item-price { font-weight: 600; color: #111; }

.payorder-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.75rem;
	padding: 0.85rem 1rem;
	background: #fff;
	border: 2px solid #7F011F;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 700;
}
.payorder-total-amount {
	color: #7F011F;
	font-size: 1.15rem;
}

.payorder-method {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1rem;
	border: 2px solid #7F011F;
	border-radius: 10px;
	background: #fff;
	font-size: 0.92rem;
	color: #111;
}
.payorder-method p { margin: 0.15rem 0 0; font-size: 0.8rem; color: #777; }

.payorder-btn {
	width: 100%;
	padding: 0.9rem;
	background: #7F011F;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s;
	position: relative;
	margin-top: 0.75rem;
}
.payorder-btn:hover { background: #5a0118; }
.payorder-btn:disabled { opacity: 0.7; cursor: not-allowed; }

.payorder-btn--success {
	background: linear-gradient(135deg, #059669, #10B981) !important;
	cursor: default;
	box-shadow: 0 4px 16px rgba(5,150,105,0.4);
}

.payorder-btn-spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2.5px solid rgba(255,255,255,0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: checkout-spin 0.7s linear infinite;
	vertical-align: middle;
}

.payorder-btn-success {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.payorder-invoice {
	color: #7F011F;
	font-size: 1rem;
}

.payorder-empty {
	text-align: center;
	padding: 3rem 1rem;
	color: #888;
}
.payorder-empty h2 { color: #555; margin: 1rem 0 0.5rem; }
.payorder-empty p { margin: 0 0 1.5rem; }
.payorder-back-link {
	display: inline-block;
	padding: 0.6rem 1.5rem;
	background: #7F011F;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
}
.payorder-back-link:hover { background: #5a0118; color: #fff; }

/* â”€â”€ SweetAlert-style Success Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stl-success-container {
	max-width: 520px;
	margin: 0 auto;
	padding: 80px 24px 60px;
	text-align: center;
}

/* Tick animation */
.stl-success-check {
	width: 110px;
	height: 110px;
	margin: 0 auto 24px;
	position: relative;
}

.stl-success-circle {
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: var(--theme-cat-bg-color);
	position: relative;
	box-shadow: 0 6px 20px rgba(127, 1, 31, 0.25);
}

.stl-success-circle::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--theme-cat-bg-color);
	transform: scale(0);
	animation: stlSuccessPulse 0.6s 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes stlSuccessPulse {
	to { transform: scale(1.8); opacity: 0; }
}

.stl-success-svg {
	position: absolute;
	inset: 0;
	width: 110px;
	height: 110px;
	stroke: var(--theme-cat-text-color);
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.stl-success-svg path {
	stroke-dasharray: 60;
	stroke-dashoffset: 60;
	animation: stlSuccessDraw 0.5s 0.3s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes stlSuccessDraw {
	to { stroke-dashoffset: 0; }
}

.stl-success-title {
	font-size: 26px;
	font-weight: 800;
	color: #111827;
	margin: 0 0 10px;
	opacity: 0;
	animation: stlSuccessFadeIn 0.4s 0.5s ease forwards;
}

.stl-success-subtitle {
	font-size: 15px;
	color: #6b7280;
	margin: 0 0 28px;
	line-height: 1.5;
	opacity: 0;
	animation: stlSuccessFadeIn 0.4s 0.65s ease forwards;
}

.stl-success-order-id {
	background: var(--theme-prod-container-color);
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 16px 20px;
	margin: 0 0 28px;
	font-size: 14px;
	color: #374151;
	opacity: 0;
	animation: stlSuccessFadeIn 0.4s 0.8s ease forwards;
}

.stl-success-order-id strong {
	color: #111827;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.stl-success-continue {
	display: inline-block;
	background: var(--theme-cat-bg-color);
	color: var(--theme-cat-text-color);
	padding: 12px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	opacity: 0;
	animation: stlSuccessFadeIn 0.4s 0.95s ease forwards;
}

.stl-success-continue:hover {
	filter: brightness(1.08);
	text-decoration: none;
	color: var(--theme-cat-text-color);
}

@keyframes stlSuccessFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes modalSpin {
	to { transform: rotate(360deg); }
}

