/* THREADS OF TRADITION - FRONTEND CSS */

:root {
	--tot-burgundy: #6B3838;
	--tot-burgundy-dark: #4A2424;
	--tot-rose: #D4927A;
	--tot-rose-light: #E8B8A4;
	--tot-rose-pale: #F5E6DE;
	--tot-cream: #F5EFE7;
	--tot-cream-dark: #E8DCC8;
	--tot-gold: #C9A961;
	--tot-white: #FFFFFF;
	--tot-off-white: #FAF7F2;
	--tot-text: #2C1F1F;
	--tot-text-muted: #6B5959;
	--tot-border: #E0D5C7;
	--tot-success: #4A6B4A;
	--tot-warning: #B8842D;
	--tot-error: #8B3A3A;
	--tot-font-display: 'Cormorant Garamond', Garamond, serif;
	--tot-font-body: 'Manrope', -apple-system, sans-serif;
	--tot-font-accent: 'Italiana', serif;
}

.tot-widget, .tot-widget * { box-sizing: border-box; }
.tot-widget { font-family: var(--tot-font-body); color: var(--tot-text); line-height: 1.6; }
.tot-widget a { color: inherit; text-decoration: none; }
.tot-widget img { max-width: 100%; height: auto; display: block; }

/* Buttons */
.tot-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.9rem 2rem; font-family: var(--tot-font-body); font-size: 0.78rem;
	letter-spacing: 2px; text-transform: uppercase; border: 1px solid transparent;
	cursor: pointer; transition: all 0.3s; font-weight: 500; text-decoration: none;
	background: none; line-height: 1;
}
.tot-btn-primary { background-color: var(--tot-burgundy); color: var(--tot-white); border-color: var(--tot-burgundy); }
.tot-btn-primary:hover { background-color: var(--tot-burgundy-dark); border-color: var(--tot-burgundy-dark); color: var(--tot-white); }
.tot-btn-outline { background-color: transparent; color: var(--tot-burgundy); border-color: var(--tot-burgundy); }
.tot-btn-outline:hover { background-color: var(--tot-burgundy); color: var(--tot-white); }
.tot-btn-light { background-color: var(--tot-white); color: var(--tot-burgundy); border-color: var(--tot-border); }
.tot-btn-light:hover { background-color: var(--tot-cream); }
.tot-btn-gold { background-color: var(--tot-gold); color: var(--tot-white); border-color: var(--tot-gold); }
.tot-btn-gold:hover { background-color: #B8954F; border-color: #B8954F; }
.tot-btn-outline-light { background-color: transparent; color: var(--tot-cream); border-color: var(--tot-cream); }
.tot-btn-outline-light:hover { background-color: var(--tot-cream); color: var(--tot-burgundy-dark); }
.tot-btn-sm { padding: 0.5rem 1rem; font-size: 0.7rem; }

/* Section headers */
.tot-section-header { text-align: center; margin-bottom: 3rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.tot-section-eyebrow { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--tot-rose); margin-bottom: 1rem; }
.tot-section-title { font-family: var(--tot-font-display); font-size: clamp(2rem,4vw,3rem); color: var(--tot-burgundy-dark); font-weight: 400; line-height: 1.1; margin: 0 0 1rem; }
.tot-section-title em { font-style: italic; color: var(--tot-burgundy); }
.tot-section-subtitle { color: var(--tot-text-muted); margin: 0; }

/* Forms */
.tot-form-group { margin-bottom: 1.25rem; }
.tot-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tot-form-label { display: block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-burgundy-dark); margin-bottom: 0.5rem; font-weight: 500; }
.tot-form-input {
	width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--tot-border);
	background: var(--tot-white); color: var(--tot-text); font-size: 0.9rem;
	font-family: var(--tot-font-body); border-radius: 2px;
}
.tot-form-input:focus { outline: none; border-color: var(--tot-burgundy); }
.tot-form-help { font-size: 0.75rem; color: var(--tot-text-muted); margin-top: 0.3rem; }

/* Notices */
.tot-notice { padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-left: 4px solid; background: var(--tot-cream); }
.tot-notice-warning { border-left-color: var(--tot-warning); }
.tot-notice-success { border-left-color: var(--tot-success); background: #E8F5E9; }
.tot-notice-error { border-left-color: var(--tot-error); }

/* Toast */
.tot-toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--tot-burgundy-dark); color: var(--tot-white); padding: 1rem 1.5rem; box-shadow: 0 12px 32px rgba(107,56,56,.15); z-index: 99999; font-size: 0.9rem; opacity: 0; transform: translateY(20px); transition: all 0.3s; }
.tot-toast.show { opacity: 1; transform: translateY(0); }

/* HEADER */
.tot-header-widget { width: 100%; }
.tot-ann-bar { background: var(--tot-burgundy-dark); color: var(--tot-cream); text-align: center; padding: 0.6rem 1rem; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }
.tot-ann-track { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.tot-header-main { background: var(--tot-off-white); border-bottom: 1px solid var(--tot-border); padding: 1.25rem 2rem; }
.tot-h-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.tot-h-left { display: flex; align-items: center; gap: 1rem; }
.tot-mobile-toggle { display: none; background: none; border: none; padding: 0.5rem; color: var(--tot-text); cursor: pointer; }
.tot-h-quick-icons { display: flex; gap: 1rem; }
.tot-h-quick-icons a { display: flex; align-items: center; gap: 0.4rem; color: var(--tot-text); }
.tot-h-quick-icons a:hover { color: var(--tot-burgundy); }
.tot-h-icon-label { font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; }
.tot-h-search-trigger { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border: 1px solid var(--tot-border); border-radius: 2px; color: var(--tot-text-muted); font-size: 0.85rem; background: var(--tot-white); min-width: 220px; }
.tot-h-cta { padding: 0.7rem 1.4rem; background: var(--tot-burgundy); color: var(--tot-white) !important; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }
.tot-h-logo { text-align: center; }
.tot-h-logo img { display: block; margin: 0 auto; }
.tot-h-icons { display: flex; gap: 1.5rem; align-items: center; justify-content: flex-end; }
.tot-h-icons a { display: flex; align-items: center; gap: 0.4rem; color: var(--tot-text); position: relative; }
.tot-h-icons a:hover { color: var(--tot-burgundy); }
.tot-h-badge { background: var(--tot-burgundy); color: var(--tot-white); border-radius: 50%; min-width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 600; padding: 0 4px; }

.tot-h-nav { background: var(--tot-white); border-top: 1px solid var(--tot-border); }
.tot-h-nav ul { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: center; gap: 2rem; list-style: none; flex-wrap: wrap; }
.tot-h-nav li { position: relative; }
.tot-h-nav a { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-text); padding: 0.3rem 0; display: inline-block; }
.tot-h-nav a:hover, .tot-h-nav .current-menu-item > a { color: var(--tot-burgundy); }
.tot-h-nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--tot-white); min-width: 200px; padding: 0.5rem 0; box-shadow: 0 8px 24px rgba(0,0,0,.08); flex-direction: column; z-index: 99; }
.tot-h-nav li:hover > .sub-menu { display: flex; }
.tot-h-nav .sub-menu a { padding: 0.7rem 1.25rem; border-bottom: 1px solid var(--tot-border); }

/* Mobile drawer */
.tot-mobile-drawer { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: var(--tot-off-white); z-index: 9999; transition: left 0.3s; overflow-y: auto; }
.tot-mobile-drawer.open { left: 0; }
.tot-mobile-drawer-inner { padding: 2rem 1.5rem; }
.tot-mobile-close { position: absolute; top: 1rem; right: 1rem; font-size: 2rem; background: none; border: none; cursor: pointer; line-height: 1; }
.tot-mobile-nav ul { list-style: none; padding: 2rem 0 0; margin: 0; }
.tot-mobile-nav li { border-bottom: 1px solid var(--tot-border); }
.tot-mobile-nav a { display: block; padding: 0.9rem 0; color: var(--tot-text); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }
.tot-mobile-actions { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tot-mobile-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.tot-mobile-backdrop.open { opacity: 1; pointer-events: all; }

/* HERO */
.tot-hero { background: linear-gradient(135deg, var(--tot-cream) 0%, var(--tot-rose-pale) 100%); position: relative; overflow: hidden; padding: 6rem 2rem; }
.tot-hero-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tot-hero-eyebrow { font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; color: var(--tot-burgundy); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.tot-hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--tot-burgundy); }
.tot-hero-title { font-family: var(--tot-font-display); font-size: clamp(2.5rem,5vw,4.5rem); color: var(--tot-burgundy-dark); line-height: 1.05; font-weight: 400; margin: 0 0 1.5rem; letter-spacing: -0.02em; }
.tot-hero-title em { font-style: italic; font-weight: 300; color: var(--tot-burgundy); }
.tot-hero-subtitle { font-size: 1.05rem; color: var(--tot-text-muted); margin: 0 0 2.5rem; max-width: 480px; line-height: 1.7; }
.tot-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.tot-hero-stats { display: flex; gap: 3rem; border-top: 1px solid rgba(107,56,56,.15); padding-top: 2rem; }
.tot-hero-stat-num { font-family: var(--tot-font-display); font-size: 2rem; color: var(--tot-burgundy); font-weight: 500; margin-bottom: 0.25rem; }
.tot-hero-stat-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-text-muted); }
.tot-hero-visual {
	position: relative;
	height: 580px;
}
.tot-hero-visual::before {
	content: '';
	position: absolute;
	top: 50%; left: 50%;
	width: 110%; height: 110%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, #E8B8A4 0%, transparent 70%);
	opacity: 0.45;
	filter: blur(10px);
	z-index: 0;
	pointer-events: none;
}
.tot-hero-img-wrap {
	position: absolute;
	z-index: 1;
}
.tot-hero-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Soft blend: edges fade into the background, no visible frame */
.tot-blend-on .tot-hero-img-wrap img {
	-webkit-mask-image: radial-gradient(ellipse 72% 76% at center, #000 62%, transparent 100%);
	mask-image: radial-gradient(ellipse 72% 76% at center, #000 62%, transparent 100%);
}
/* Frame mode (legacy/optional): clean edge, no shadow card */
.tot-blend-off .tot-hero-img-wrap img {
	border-radius: 4px;
}

/* Default layout: 2 images (no image_3) */
.tot-hero-count-2 .tot-hero-img-1 { top: 0; left: 4%; width: 62%; height: 78%; z-index: 2; }
.tot-hero-count-2 .tot-hero-img-2 { bottom: 0; right: 2%; width: 48%; height: 58%; z-index: 1; opacity: 0.94; }

/* 3-image layout */
.tot-hero-count-3 .tot-hero-img-1 { top: 2%; left: 2%; width: 64%; height: 80%; z-index: 2; }
.tot-hero-count-3 .tot-hero-img-2 { bottom: 0; right: 0; width: 50%; height: 56%; z-index: 1; opacity: 0.94; }
.tot-hero-count-3 .tot-hero-img-3 { top: 6%; right: 4%; width: 32%; height: 36%; z-index: 3; opacity: 0.9; }

/* CATEGORIES */
.tot-section-cats { padding: 4rem 2rem; max-width: 1400px; margin: 0 auto; }
.tot-cats-grid { display: grid; gap: 1.5rem; }
.tot-cat-card { position: relative; overflow: hidden; cursor: pointer; transition: all 0.3s; background: var(--tot-cream); }
.tot-cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107,56,56,.15); }
.tot-cat-image { width: 100%; background-size: cover; background-position: center; transition: transform 0.4s; }
.tot-cat-card:hover .tot-cat-image { transform: scale(1.05); }
.tot-cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,36,36,.7), transparent 60%); }
.tot-cat-info { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; color: var(--tot-white); }
.tot-cat-name { font-family: var(--tot-font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 0.3rem; }
.tot-cat-count { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; }

/* PRODUCTS */
.tot-products-widget { padding: 3rem 2rem; max-width: 1400px; margin: 0 auto; }
.tot-products-grid { display: grid; grid-template-columns: repeat(var(--tot-cols,4), 1fr); gap: 2rem; }
.tot-product-card { background: var(--tot-white); transition: all 0.3s; position: relative; display: flex; flex-direction: column; }
.tot-product-card:hover { box-shadow: 0 12px 32px rgba(107,56,56,.15); }
.tot-pc-image-link { display: block; }
.tot-pc-image-wrap { width: 100%; height: 380px; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--tot-rose-pale), var(--tot-cream-dark)); }
.tot-pc-image { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.4s; }
.tot-product-card:hover .tot-pc-image { transform: scale(1.04); }
.tot-pc-badge { position: absolute; top: 1rem; left: 1rem; background: var(--tot-burgundy); color: var(--tot-white); padding: 0.3rem 0.75rem; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; z-index: 2; font-weight: 600; }
.tot-pc-actions { position: absolute; top: 1rem; right: 1rem; display: flex; flex-direction: column; gap: 0.5rem; z-index: 3; }
.tot-pc-wishlist, .tot-pc-qv { width: 36px; height: 36px; border-radius: 50%; background: var(--tot-white); color: var(--tot-burgundy); display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: all 0.2s; }
.tot-pc-wishlist:hover, .tot-pc-qv:hover { background: var(--tot-burgundy); color: var(--tot-white); }
.tot-pc-wishlist.active { background: var(--tot-burgundy); color: var(--tot-white); }
.tot-pc-quick-view { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(74,36,36,.92); color: var(--tot-gold); text-align: center; padding: 0.75rem; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transform: translateY(100%); transition: transform 0.3s; cursor: pointer; }
.tot-product-card:hover .tot-pc-quick-view { transform: translateY(0); }
.tot-pc-info { padding: 1.25rem 0.25rem; flex: 1; display: flex; flex-direction: column; }
.tot-pc-vendor { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-rose); margin-bottom: 0.4rem; }
.tot-pc-verified { color: var(--tot-gold); }
.tot-pc-name { font-family: var(--tot-font-display); font-size: 1.2rem; color: var(--tot-burgundy-dark); margin: 0 0 0.5rem; font-weight: 500; line-height: 1.3; }
.tot-pc-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 0.75rem; border-top: 1px solid var(--tot-border); margin-top: auto; }
.tot-pc-price-label { font-size: 0.7rem; color: var(--tot-text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.1rem; }
.tot-pc-price { font-family: var(--tot-font-display); font-size: 1.2rem; color: var(--tot-burgundy); font-weight: 500; }
.tot-pc-price small { font-size: 0.7rem; font-family: var(--tot-font-body); }
.tot-pc-rating { color: var(--tot-gold); font-size: 0.85rem; }

.tot-empty { grid-column: 1/-1; text-align: center; padding: 4rem 2rem; color: var(--tot-text-muted); }
.tot-empty-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--tot-rose); }
.tot-empty h3 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 0 0 0.5rem; }

/* Carousel */
.tot-products-carousel { display: flex !important; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 1rem; grid-template-columns: none !important; }
.tot-products-carousel::-webkit-scrollbar { display: none; }
.tot-products-carousel .tot-product-card { flex: 0 0 calc((100% - 1.5rem * 3) / 4); scroll-snap-align: start; }

/* SHOP / FILTERS / TOOLBAR */
.tot-shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; margin-top: 2rem; }
.tot-shop-layout[data-with-filters=""] { grid-template-columns: 1fr; }
.tot-filter-sidebar { position: sticky; top: 100px; height: fit-content; }
.tot-mobile-filter-toggle { display: none; width: 100%; padding: 0.75rem; background: var(--tot-cream); border: none; margin-bottom: 1rem; cursor: pointer; }
.tot-filter-group { border-bottom: 1px solid var(--tot-border); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
.tot-filter-group h3 { font-family: var(--tot-font-display); font-size: 1rem; color: var(--tot-burgundy-dark); margin: 0 0 1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; }
.tot-filter-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.88rem; cursor: pointer; }
.tot-filter-option:hover { color: var(--tot-burgundy); }
.tot-filter-option input { accent-color: var(--tot-burgundy); }
.tot-filter-count { margin-left: auto; color: var(--tot-text-muted); font-size: 0.75rem; }
.tot-price-range { display: flex; gap: 0.5rem; }
.tot-price-range input { width: 100%; padding: 0.5rem; border: 1px solid var(--tot-border); font-size: 0.85rem; font-family: inherit; }
.tot-clear-filters { width: 100%; margin-top: 0.5rem; }
.tot-city-search-wrap { display: flex; flex-direction: column; }
.tot-city-options { max-height: 180px; overflow-y: auto; border: 1px solid var(--tot-border); padding: 0.4rem 0.5rem; }
.tot-city-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.35rem 0; font-size: 0.88rem; cursor: pointer; }
.tot-city-option.hidden { display: none; }
.tot-location-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }

.tot-shop-main { min-height: 400px; }
.tot-shop-search { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; padding: 0.75rem 1rem; border: 1px solid var(--tot-border); background: var(--tot-white); border-radius: 2px; }
.tot-shop-search svg { color: var(--tot-text-muted); flex-shrink: 0; }
.tot-shop-search-input { flex: 1; border: none; outline: none; background: transparent; font-size: 0.9rem; font-family: inherit; }

.tot-active-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.tot-active-tag { background: var(--tot-rose-pale); color: var(--tot-burgundy); padding: 0.4rem 0.8rem; font-size: 0.78rem; border-radius: 20px; display: inline-flex; align-items: center; gap: 0.4rem; }
.tot-active-tag button { background: none; border: none; cursor: pointer; color: inherit; font-size: 0.9rem; padding: 0; line-height: 1; }

.tot-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--tot-border); flex-wrap: wrap; gap: 0.75rem; }
.tot-results-count { color: var(--tot-text-muted); font-size: 0.85rem; }
.tot-results-count strong { color: var(--tot-burgundy-dark); }
.tot-toolbar-right { display: flex; gap: 0.75rem; align-items: center; }
.tot-sort-select { padding: 0.5rem 1rem; border: 1px solid var(--tot-border); background: var(--tot-white); font-size: 0.85rem; font-family: inherit; }
.tot-view-toggle { display: flex; border: 1px solid var(--tot-border); }
.tot-view-btn { width: 36px; height: 36px; background: var(--tot-white); border: none; cursor: pointer; color: var(--tot-text); font-size: 0.95rem; }
.tot-view-btn.active { background: var(--tot-burgundy); color: var(--tot-white); }

.tot-products-grid.list-view { grid-template-columns: 1fr !important; }
.tot-products-grid.list-view .tot-product-card { display: grid; grid-template-columns: 240px 1fr; gap: 1.5rem; align-items: stretch; }
.tot-products-grid.list-view .tot-pc-image-wrap { height: auto; }

.tot-pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.tot-pagination .page-numbers, .tot-pagination a, .tot-pagination span { min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--tot-border); color: var(--tot-text); font-size: 0.85rem; background: var(--tot-white); padding: 0 0.75rem; }
.tot-pagination .page-numbers:hover, .tot-pagination .current { background: var(--tot-burgundy); color: var(--tot-white); border-color: var(--tot-burgundy); }

/* QUICK VIEW */
.tot-qv-overlay { position: fixed; inset: 0; background: rgba(74,36,36,.7); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1.5rem; backdrop-filter: blur(4px); }
.tot-qv-modal { background: var(--tot-white); max-width: 900px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.tot-qv-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; background: var(--tot-cream); border-radius: 50%; border: none; font-size: 1.5rem; cursor: pointer; color: var(--tot-burgundy); z-index: 10; }
.tot-qv-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.tot-qv-image { aspect-ratio: 3/4; background: var(--tot-cream); overflow: hidden; }
.tot-qv-image img { width: 100%; height: 100%; object-fit: cover; }
.tot-qv-info { padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.tot-qv-info h2 { font-family: var(--tot-font-display); font-size: 1.8rem; color: var(--tot-burgundy-dark); margin: 0; }
.tot-qv-vendor { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-rose); }
.tot-qv-price { font-family: var(--tot-font-display); font-size: 1.8rem; color: var(--tot-burgundy); }
.tot-qv-meta div { font-size: 0.9rem; padding: 0.3rem 0; }

/* HOW IT WORKS */
.tot-how-it-works { background: var(--tot-off-white); padding: 5rem 2rem; }
.tot-steps-grid { display: grid; gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.tot-step-card { text-align: center; }
.tot-step-number { font-family: var(--tot-font-display); font-size: 3.5rem; color: var(--tot-rose); font-style: italic; line-height: 1; margin-bottom: 1rem; }
.tot-step-title { font-family: var(--tot-font-display); font-size: 1.5rem; color: var(--tot-burgundy-dark); margin-bottom: 0.75rem; font-weight: 500; }
.tot-step-desc { color: var(--tot-text-muted); font-size: 0.95rem; line-height: 1.7; }

/* WHY US */
.tot-why-us { background: var(--tot-burgundy-dark); padding: 5rem 2rem; }
.tot-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
.tot-feature-card { text-align: center; padding: 1rem; }
.tot-feature-icon { font-size: 2.5rem; color: var(--tot-rose-light); margin-bottom: 1rem; }
.tot-feature-title { font-family: var(--tot-font-display); font-size: 1.4rem; color: var(--tot-cream); margin-bottom: 0.75rem; font-weight: 500; }
.tot-feature-desc { color: rgba(245,239,231,.75); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* PRODUCT DETAIL */
.tot-product-detail-wrap { padding: 3rem 2rem; max-width: 1400px; margin: 0 auto; }
.tot-pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.tot-pd-main-image { aspect-ratio: 3/4; background: var(--tot-cream); overflow: hidden; margin-bottom: 1rem; }
.tot-pd-main-image img { width: 100%; height: 100%; object-fit: cover; }
.tot-pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.tot-pd-thumb { aspect-ratio: 1; background: var(--tot-cream); cursor: pointer; border: 2px solid transparent; overflow: hidden; }
.tot-pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tot-pd-thumb.active, .tot-pd-thumb:hover { border-color: var(--tot-burgundy); }
.tot-pd-vendor { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-rose); margin-bottom: 0.75rem; }
.tot-pd-vendor a { color: var(--tot-rose); }
.tot-pd-verified { background: var(--tot-gold); color: var(--tot-white); font-size: 0.65rem; padding: 0.2rem 0.5rem; margin-left: 0.5rem; }
.tot-pd-title { font-family: var(--tot-font-display); font-size: 2.5rem; color: var(--tot-burgundy-dark); margin: 0 0 1rem; font-weight: 400; line-height: 1.2; }
.tot-pd-rating { display: flex; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.9rem; }
.tot-pd-stars { color: var(--tot-gold); }
.tot-pd-rating a { color: var(--tot-burgundy); text-decoration: underline; }
.tot-pd-price-card { background: var(--tot-cream); padding: 1.75rem; margin-bottom: 1.5rem; }

/* Rent/Buy mode toggle pill on product detail */
.tot-pd-mode-toggle {
	display: inline-flex; background: var(--tot-white); border-radius: 30px;
	padding: 0.25rem; margin-bottom: 1.25rem; border: 1px solid var(--tot-border);
}
.tot-pd-mode-btn {
	border: none; background: none; padding: 0.5rem 1.4rem; border-radius: 26px;
	font-family: var(--tot-font-body); font-size: 0.8rem; letter-spacing: 1px;
	text-transform: uppercase; color: var(--tot-text-muted); cursor: pointer; transition: all 0.2s;
}
.tot-pd-mode-btn.active { background: var(--tot-burgundy); color: var(--tot-white); }

/* Listing type selector (Add Listing form) */
.tot-listing-type-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 0.5rem; }
.tot-listing-type-option {
	padding: 1.25rem 0.75rem; border: 2px solid var(--tot-border); background: var(--tot-white);
	cursor: pointer; text-align: center; transition: all 0.2s;
}
.tot-listing-type-option:hover, .tot-listing-type-option.selected { border-color: var(--tot-burgundy); background: var(--tot-cream); }
.tot-lt-icon { font-size: 1.6rem; color: var(--tot-burgundy); margin-bottom: 0.4rem; }
.tot-lt-name { font-family: var(--tot-font-display); font-size: 1rem; color: var(--tot-burgundy-dark); }

/* Buy/Rent inline tag next to price on product cards */
.tot-pc-type-tag {
	display: inline-block; margin-left: 0.5rem; padding: 0.18rem 0.55rem;
	background: var(--tot-rose-pale); color: var(--tot-burgundy); border-radius: 3px;
	font-size: 0.62rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600;
	vertical-align: middle;
}
.tot-pd-price-label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-burgundy); margin-bottom: 0.5rem; }
.tot-pd-price-display { display: flex; align-items: baseline; gap: 0.5rem; }
.tot-pd-price-amount { font-family: var(--tot-font-display); font-size: 2.5rem; color: var(--tot-burgundy-dark); font-weight: 500; }
.tot-pd-price-period { color: var(--tot-text-muted); font-size: 0.9rem; }
.tot-pd-deposit { margin-top: 0.5rem; font-size: 0.85rem; color: var(--tot-text-muted); }
.tot-size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tot-size-option { padding: 0.6rem 1.2rem; border: 1px solid var(--tot-border); background: var(--tot-white); cursor: pointer; font-size: 0.85rem; transition: all 0.2s; }
.tot-size-option:hover, .tot-size-option.selected { background: var(--tot-burgundy); color: var(--tot-white); border-color: var(--tot-burgundy); }
.tot-pd-availability-note { margin-bottom: 1rem; font-size: 0.85rem; }
.tot-pd-actions { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.tot-pd-actions .tot-btn { flex: 1; }
.tot-pd-trust { border-top: 1px solid var(--tot-border); padding-top: 1.5rem; }
.tot-report-link {
	background: none; border: none; color: var(--tot-text-muted); font-size: 0.78rem;
	cursor: pointer; margin-top: 1rem; text-decoration: underline; padding: 0; width: 100%;
}
.tot-report-link:hover { color: var(--tot-error); }

/* Star Rating */
.tot-star-rating { display: flex; gap: 0.4rem; font-size: 2rem; margin-bottom: 0.5rem; }
.tot-star { color: var(--tot-border); cursor: pointer; transition: color 0.15s; line-height: 1; }
.tot-star.active, .tot-star:hover { color: var(--tot-gold); }

/* Checklist Modal */
.tot-checklist-section-title {
	font-family: var(--tot-font-display); font-size: 1.05rem; color: var(--tot-burgundy-dark);
	margin: 1.25rem 0 0.6rem; font-weight: 500;
}
.tot-checklist-badge {
	display: inline-block; font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase;
	padding: 0.15rem 0.5rem; border-radius: 3px; margin-left: 0.5rem; vertical-align: middle;
}
.tot-checklist-required { background: #E8F5E9; color: var(--tot-success); }
.tot-checklist-recommended { background: #FFF4E0; color: var(--tot-warning); }
.tot-checklist-item { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.4rem 0; font-size: 0.9rem; }
.tot-checklist-item input { margin-top: 0.25rem; }
.tot-checklist-declaration {
	background: var(--tot-cream); padding: 1rem; margin-top: 1.5rem; font-size: 0.85rem; color: var(--tot-text-muted);
}
.tot-checklist-submitted-note {
	background: #E8F5E9; color: #2E7D32; padding: 0.75rem 1rem; margin-bottom: 1rem; font-size: 0.85rem;
}
.tot-trust-item { display: flex; gap: 1rem; margin-bottom: 1rem; }
.tot-trust-icon { width: 40px; height: 40px; background: var(--tot-cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--tot-burgundy); flex-shrink: 0; }
.tot-trust-text { font-size: 0.85rem; color: var(--tot-text-muted); }
.tot-trust-text strong { color: var(--tot-text); display: block; margin-bottom: 0.2rem; }

/* Tabs */
.tot-pd-tabs { margin-bottom: 3rem; }
.tot-tabs-nav { display: flex; gap: 2rem; border-bottom: 1px solid var(--tot-border); margin-bottom: 2rem; flex-wrap: wrap; }
.tot-tab-btn { background: none; border: none; padding: 1rem 0; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-text-muted); cursor: pointer; border-bottom: 2px solid transparent; font-family: inherit; font-weight: 500; }
.tot-tab-btn.active { color: var(--tot-burgundy); border-bottom-color: var(--tot-burgundy); }
.tot-tab-content { display: none; padding: 1rem 0; color: var(--tot-text-muted); }
.tot-tab-content.active { display: block; }
.tot-tab-content h3 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 1.5rem 0 0.75rem; }
.tot-tab-content ul { list-style: none; padding: 0; }
.tot-tab-content ul li { padding: 0.3rem 0 0.3rem 1.5rem; position: relative; }
.tot-tab-content ul li::before { content: '◆'; color: var(--tot-rose); position: absolute; left: 0; top: 0.6rem; font-size: 0.6rem; }
.tot-spec-table { width: 100%; border-collapse: collapse; }
.tot-spec-table tr { border-bottom: 1px solid var(--tot-border); }
.tot-spec-table td { padding: 0.9rem 0; }
.tot-spec-table td:first-child { color: var(--tot-text-muted); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; width: 200px; }
.tot-review { padding: 1.5rem 0; border-bottom: 1px solid var(--tot-border); }
.tot-review-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.tot-review-stars { color: var(--tot-gold); font-size: 0.85rem; margin-bottom: 0.5rem; }

/* Message Modal */
.tot-msg-modal-overlay { position: fixed; inset: 0; background: rgba(74,36,36,.7); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.tot-msg-modal { background: var(--tot-white); padding: 2.5rem; max-width: 500px; width: 100%; position: relative; }
.tot-msg-modal h3 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 0 0 1rem; }
.tot-msg-modal-close { position: absolute; top: 0.75rem; right: 1rem; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--tot-text-muted); line-height: 1; }

/* VENDOR PROFILE */
.tot-vp-header { padding: 3rem 2rem; background: linear-gradient(135deg, var(--tot-cream), var(--tot-rose-pale)); }
.tot-vp-header-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center; }
.tot-vp-avatar { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--tot-rose), var(--tot-burgundy)); color: var(--tot-white); display: flex; align-items: center; justify-content: center; font-family: var(--tot-font-display); font-size: 3rem; overflow: hidden; }
.tot-vp-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tot-vp-name-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.tot-vp-name { font-family: var(--tot-font-display); font-size: 2.5rem; color: var(--tot-burgundy-dark); margin: 0; font-weight: 400; }
.tot-vp-verified { background: var(--tot-gold); color: var(--tot-white); padding: 0.3rem 0.75rem; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.tot-vp-meta { display: flex; gap: 2rem; color: var(--tot-text-muted); font-size: 0.95rem; flex-wrap: wrap; }
.tot-vp-bio { margin: 1rem 0 0; color: var(--tot-text-muted); max-width: 600px; }
.tot-vp-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 2rem auto; padding: 0 2rem; }

.tot-vp-reviews { max-width: 1200px; margin: 0 auto 3rem; padding: 0 2rem; display: grid; gap: 1rem; }
.tot-vp-review-card { background: var(--tot-white); padding: 1.25rem 1.5rem; border-left: 3px solid var(--tot-gold); box-shadow: 0 2px 8px rgba(107,56,56,.05); }
.tot-vp-review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.tot-vp-review-header strong { color: var(--tot-burgundy-dark); font-family: var(--tot-font-display); font-size: 1.05rem; }
.tot-vp-review-stars { color: var(--tot-gold); font-size: 0.9rem; letter-spacing: 1px; }
.tot-vp-review-comment { color: var(--tot-text); font-size: 0.92rem; line-height: 1.6; margin: 0.4rem 0; }
.tot-vp-review-date { color: var(--tot-text-muted); font-size: 0.75rem; }

/* DASHBOARD */
.tot-dashboard-widget { padding: 2rem; max-width: 1400px; margin: 0 auto; }
.tot-dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; }
.tot-dash-sidebar { background: var(--tot-white); box-shadow: 0 2px 8px rgba(107,56,56,.06); height: fit-content; padding: 2rem 0; }
.tot-dash-user { text-align: center; padding: 0 2rem 1.5rem; border-bottom: 1px solid var(--tot-border); margin-bottom: 1.5rem; }
.tot-dash-avatar { width: 70px; height: 70px; margin: 0 auto 1rem; border-radius: 50%; background: linear-gradient(135deg, var(--tot-rose), var(--tot-burgundy)); color: var(--tot-white); display: flex; align-items: center; justify-content: center; font-family: var(--tot-font-display); font-size: 1.8rem; }
.tot-dash-name { font-family: var(--tot-font-display); font-size: 1.2rem; color: var(--tot-burgundy-dark); }
.tot-dash-role { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-rose); margin-top: 0.25rem; }
.tot-dash-nav { list-style: none; padding: 0; margin: 0; }
.tot-dash-nav a { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.85rem 2rem; color: var(--tot-text); font-size: 0.88rem; border-left: 3px solid transparent; transition: all 0.2s; }
.tot-dash-nav a:hover { background: var(--tot-cream); color: var(--tot-burgundy); }
.tot-dash-nav a.active { background: var(--tot-cream); color: var(--tot-burgundy); border-left-color: var(--tot-burgundy); font-weight: 600; }
.tot-dash-section-title { font-family: var(--tot-font-display); font-size: 1.8rem; color: var(--tot-burgundy-dark); margin: 0 0 1.5rem; font-weight: 500; }
.tot-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.tot-stat-card { background: var(--tot-white); padding: 1.5rem; box-shadow: 0 2px 8px rgba(107,56,56,.06); border-left: 3px solid var(--tot-burgundy); }
.tot-stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-text-muted); margin-bottom: 0.5rem; }
.tot-stat-value { font-family: var(--tot-font-display); font-size: 2rem; color: var(--tot-burgundy-dark); font-weight: 500; line-height: 1; }
.tot-dash-card { background: var(--tot-white); padding: 2rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(107,56,56,.06); }
.tot-dash-card h3 { font-family: var(--tot-font-display); font-size: 1.4rem; color: var(--tot-burgundy-dark); margin: 0 0 1.25rem; font-weight: 500; }
.tot-data-table { width: 100%; border-collapse: collapse; }
.tot-data-table th { text-align: left; padding: 0.85rem; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--tot-text-muted); background: var(--tot-cream); border-bottom: 1px solid var(--tot-border); font-weight: 500; }
.tot-data-table td { padding: 0.85rem; border-bottom: 1px solid var(--tot-border); font-size: 0.9rem; }
.tot-status-badge { display: inline-block; padding: 0.3rem 0.7rem; font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }
.status-confirmed, .status-completed, .status-publish, .status-active { background: #E8F5E9; color: var(--tot-success); }
.status-pending, .status-processing { background: #FFF4E0; color: var(--tot-warning); }
.status-failed, .status-cancelled, .status-draft { background: #FFE0E0; color: var(--tot-error); }
.tot-flex-between { display: flex; justify-content: space-between; align-items: center; }

/* AUTH */
.tot-auth-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 3rem 2rem; background: var(--tot-cream); }
.tot-auth-card { background: var(--tot-white); padding: 3rem; max-width: 480px; width: 100%; box-shadow: 0 4px 16px rgba(107,56,56,.1); }
.tot-auth-header { text-align: center; margin-bottom: 2rem; }
.tot-auth-title { font-family: var(--tot-font-display); font-size: 2rem; color: var(--tot-burgundy-dark); margin: 0 0 0.5rem; font-weight: 500; }
.tot-auth-title em { font-style: italic; }
.tot-auth-subtitle { color: var(--tot-text-muted); font-size: 0.9rem; margin: 0; }
.tot-role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.tot-role-option { padding: 1.5rem; border: 2px solid var(--tot-border); background: var(--tot-white); cursor: pointer; text-align: center; transition: all 0.2s; }
.tot-role-option:hover, .tot-role-option.selected { border-color: var(--tot-burgundy); background: var(--tot-cream); }
.tot-role-icon { font-size: 2rem; color: var(--tot-burgundy); margin-bottom: 0.5rem; }
.tot-role-name { font-family: var(--tot-font-display); font-size: 1.1rem; color: var(--tot-burgundy-dark); margin-bottom: 0.25rem; }
.tot-role-desc { font-size: 0.75rem; color: var(--tot-text-muted); }
.tot-auth-required { max-width: 500px; margin: 4rem auto; padding: 3rem; background: var(--tot-white); text-align: center; box-shadow: 0 4px 16px rgba(107,56,56,.08); }
.tot-auth-required h2 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 0 0 1rem; }

/* MESSAGES */
.tot-messages-widget { padding: 2rem; max-width: 1400px; margin: 0 auto; }
.tot-msg-container { display: grid; grid-template-columns: 320px 1fr; height: 70vh; min-height: 600px; background: var(--tot-white); box-shadow: 0 4px 16px rgba(107,56,56,.08); }
.tot-msg-list { border-right: 1px solid var(--tot-border); overflow-y: auto; }
.tot-msg-search { padding: 1rem; border-bottom: 1px solid var(--tot-border); }
.tot-msg-search-input { width: 100%; padding: 0.5rem 0.9rem; border: 1px solid var(--tot-border); font-size: 0.85rem; font-family: inherit; }
.tot-conv-item { padding: 1rem 1.25rem; border-bottom: 1px solid var(--tot-border); cursor: pointer; display: grid; grid-template-columns: 44px 1fr auto; gap: 0.75rem; align-items: center; }
.tot-conv-item:hover { background: var(--tot-cream); }
.tot-conv-item.active { background: var(--tot-cream); border-left: 3px solid var(--tot-burgundy); }
.tot-conv-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--tot-rose), var(--tot-burgundy)); color: var(--tot-white); display: flex; align-items: center; justify-content: center; font-family: var(--tot-font-display); font-size: 1rem; }
.tot-conv-info { min-width: 0; }
.tot-conv-name { font-weight: 600; color: var(--tot-burgundy-dark); font-size: 0.9rem; margin-bottom: 0.2rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tot-conv-preview { font-size: 0.78rem; color: var(--tot-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tot-conv-time { font-size: 0.7rem; color: var(--tot-text-muted); }
.tot-chat-area { display: flex; flex-direction: column; }
.tot-chat-header { padding: 1.25rem; border-bottom: 1px solid var(--tot-border); display: flex; align-items: center; gap: 0.75rem; }
.tot-chat-name { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); font-size: 1.1rem; margin: 0; }
.tot-chat-messages { flex: 1; padding: 1.5rem; overflow-y: auto; background: var(--tot-off-white); display: flex; flex-direction: column; gap: 0.75rem; }
.tot-msg { display: flex; flex-direction: column; max-width: 70%; }
.tot-msg.sent { align-self: flex-end; align-items: flex-end; }
.tot-msg-bubble { padding: 0.75rem 1rem; background: var(--tot-white); border: 1px solid var(--tot-border); color: var(--tot-text); font-size: 0.9rem; }
.tot-msg.sent .tot-msg-bubble { background: var(--tot-burgundy); color: var(--tot-white); border-color: var(--tot-burgundy); }
.tot-msg-time { font-size: 0.7rem; color: var(--tot-text-muted); margin-top: 0.25rem; }
.tot-chat-input-area { padding: 1rem; border-top: 1px solid var(--tot-border); display: flex; gap: 0.5rem; }
.tot-chat-input-area input { flex: 1; }

/* ADD LISTING */
.tot-listing-section { background: var(--tot-white); padding: 2.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(107,56,56,.06); }
.tot-listing-section h3 { font-family: var(--tot-font-display); font-size: 1.4rem; color: var(--tot-burgundy-dark); margin: 0 0 1.5rem; font-weight: 500; }
.tot-image-upload-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tot-upload-slot { aspect-ratio: 1; background: var(--tot-cream); border: 2px dashed var(--tot-border); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; overflow: hidden; }
.tot-upload-slot:hover { border-color: var(--tot-burgundy); background: var(--tot-rose-pale); }
.tot-upload-placeholder { text-align: center; color: var(--tot-text-muted); padding: 1rem; font-size: 0.85rem; }
.tot-upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.tot-checklist { background: var(--tot-cream); padding: 1.5rem; margin: 1rem 0; }
.tot-checklist label { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9rem; }
.tot-checkbox-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.tot-checkbox-row label { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; }

/* CHECKOUT */
.tot-checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.5rem; max-width: 1300px; margin: 3rem auto; padding: 0 2rem; }
.tot-co-step { background: var(--tot-white); padding: 2rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(107,56,56,.06); }
.tot-co-step h3 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 0 0 1.5rem; display: flex; align-items: center; gap: 1rem; font-weight: 500; }
.tot-co-step-num { width: 32px; height: 32px; background: var(--tot-burgundy); color: var(--tot-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-family: var(--tot-font-body); }
.tot-co-summary { background: var(--tot-white); padding: 1.75rem; height: fit-content; box-shadow: 0 2px 8px rgba(107,56,56,.06); position: sticky; top: 100px; }
.tot-co-summary h3 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 0 0 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--tot-border); }
.tot-co-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--tot-border); }
.tot-co-img { width: 70px; height: 90px; background: var(--tot-cream); overflow: hidden; flex-shrink: 0; }
.tot-co-img img { width: 100%; height: 100%; object-fit: cover; }
.tot-co-name { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); font-size: 1rem; margin-bottom: 0.25rem; }
.tot-co-meta { font-size: 0.78rem; color: var(--tot-text-muted); margin-bottom: 0.25rem; }
.tot-co-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.9rem; }
.tot-co-total { border-top: 1px solid var(--tot-border); padding-top: 0.75rem; margin-top: 0.75rem; font-weight: 600; color: var(--tot-burgundy-dark); font-size: 1.1rem; }
.tot-co-trust { margin-top: 1.5rem; border-top: 1px solid var(--tot-border); padding-top: 1.25rem; }
.tot-co-trust-item { font-size: 0.8rem; color: var(--tot-text-muted); margin-bottom: 0.5rem; }

/* WISHLIST */
.tot-wishlist-widget { max-width: 1400px; margin: 2rem auto; padding: 0 2rem; }
.tot-wishlist-empty { text-align: center; padding: 4rem 2rem; background: var(--tot-white); }
.tot-wishlist-empty-icon { font-size: 4rem; color: var(--tot-rose); margin-bottom: 1.5rem; }
.tot-wishlist-empty h3 { font-family: var(--tot-font-display); color: var(--tot-burgundy-dark); margin: 0 0 0.5rem; font-size: 1.8rem; }

/* PAGE HEADER */
.tot-page-header { text-align: center; border-bottom: 1px solid var(--tot-border); }
.tot-page-title { font-family: var(--tot-font-display); font-size: clamp(2rem,4vw,3rem); color: var(--tot-burgundy-dark); margin: 0; font-weight: 400; }
.tot-page-title em { font-style: italic; }

/* OUR STORY WIDGET */
.tot-our-story-widget { overflow: hidden; }
.tot-story-hero {
	padding: 5rem 2rem 4rem; text-align: center;
	background: linear-gradient(135deg, var(--tot-cream) 0%, var(--tot-rose-pale) 100%);
}
.tot-story-hero-title {
	font-family: var(--tot-font-display); font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	color: var(--tot-burgundy-dark); font-weight: 400; line-height: 1.15; margin: 1rem 0 1.25rem;
	max-width: 800px; margin-left: auto; margin-right: auto;
}
.tot-story-hero-title em { font-style: italic; color: var(--tot-burgundy); }
.tot-story-hero-subtitle {
	color: var(--tot-text-muted); max-width: 640px; margin: 0 auto; font-size: 1.02rem; line-height: 1.7;
}

.tot-story-section { padding: 5rem 2rem; max-width: 1300px; margin: 0 auto; }
.tot-story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.tot-story-image {
	aspect-ratio: 4/5; background: var(--tot-cream); overflow: hidden; border-radius: 2px;
}
.tot-story-image img { width: 100%; height: 100%; object-fit: cover; }
.tot-story-content-title {
	font-family: var(--tot-font-display); font-size: 2rem; color: var(--tot-burgundy-dark);
	font-weight: 400; margin: 1rem 0 1.25rem; line-height: 1.25;
}
.tot-story-content-title em { font-style: italic; color: var(--tot-burgundy); }
.tot-story-text { color: var(--tot-text-muted); line-height: 1.8; }
.tot-story-text p { margin: 0 0 1.1rem; }

.tot-story-values { padding: 5rem 2rem; background: var(--tot-cream); }
.tot-values-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
	max-width: 1300px; margin: 0 auto;
}
.tot-value-card {
	background: var(--tot-white); padding: 2.25rem 1.75rem; text-align: center;
	box-shadow: 0 2px 10px rgba(107,56,56,.06);
}
.tot-value-icon { font-size: 2.2rem; color: var(--tot-burgundy); margin-bottom: 1rem; }
.tot-value-card h3 {
	font-family: var(--tot-font-display); font-size: 1.3rem; color: var(--tot-burgundy-dark);
	margin: 0 0 0.6rem; font-weight: 500;
}
.tot-value-card p, .tot-value-card div { color: var(--tot-text-muted); font-size: 0.92rem; line-height: 1.65; margin: 0; }

.tot-story-stats-section { padding: 5rem 2rem; }
.tot-story-stats-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
	max-width: 1000px; margin: 0 auto;
}
.tot-story-stat-card {
	text-align: center; padding: 1.5rem 1rem; border-top: 3px solid var(--tot-burgundy);
}
.tot-story-stat-num {
	font-family: var(--tot-font-display); font-size: 2.4rem; color: var(--tot-burgundy);
	font-weight: 500; line-height: 1; margin-bottom: 0.4rem;
}
.tot-story-stat-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tot-text-muted); }

.tot-story-cta { padding: 5rem 2rem; background: var(--tot-burgundy-dark); text-align: center; }
.tot-story-cta h2 {
	font-family: var(--tot-font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	color: var(--tot-cream); font-weight: 400; margin: 0 0 1rem;
}
.tot-story-cta h2 em { font-style: italic; color: var(--tot-rose-light); }
.tot-story-cta p {
	color: rgba(245,239,231,.75); max-width: 560px; margin: 0 auto 2rem; line-height: 1.7;
}
.tot-story-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FAQ WIDGET */
.tot-faq-widget { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; }
.tot-faq-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.tot-faq-tab {
	padding: 0.65rem 1.4rem; border: none; background: var(--tot-cream); color: var(--tot-text-muted);
	font-family: var(--tot-font-body); font-size: 0.82rem; letter-spacing: 0.5px; cursor: pointer;
	border-radius: 2px; transition: all 0.2s;
}
.tot-faq-tab:hover { background: var(--tot-rose-pale); color: var(--tot-burgundy); }
.tot-faq-tab.active { background: var(--tot-burgundy); color: var(--tot-white); }
.tot-faq-panel { animation: tot-fade-in 0.25s ease; }
@keyframes tot-fade-in { from { opacity: 0; } to { opacity: 1; } }
.tot-faq-item { border-bottom: 1px solid var(--tot-border); padding: 0.25rem 0; }
.tot-faq-question {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1.1rem 0.25rem; cursor: pointer; font-family: var(--tot-font-display);
	font-size: 1.15rem; color: var(--tot-burgundy-dark); font-weight: 500;
}
.tot-faq-icon { color: var(--tot-burgundy); font-size: 1.3rem; flex-shrink: 0; line-height: 1; font-family: var(--tot-font-body); }
.tot-faq-answer { padding: 0 0.25rem 1.25rem; color: var(--tot-text-muted); line-height: 1.7; font-size: 0.95rem; }
.tot-faq-contact {
	text-align: center; margin-top: 3.5rem; padding: 2.5rem 2rem; background: var(--tot-cream);
}
.tot-faq-contact h3 {
	font-family: var(--tot-font-display); font-size: 1.6rem; color: var(--tot-burgundy-dark);
	margin: 0 0 0.75rem; font-weight: 500;
}
.tot-faq-contact p { color: var(--tot-text-muted); margin: 0 0 1.5rem; }
.tot-faq-contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 1024px) {
	.tot-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
	.tot-hero-visual { height: 380px; }
	.tot-products-grid { grid-template-columns: repeat(var(--tot-cols-t, 3), 1fr); }
	.tot-pd-grid { grid-template-columns: 1fr; gap: 2rem; }
	.tot-dash-layout { grid-template-columns: 1fr; }
	.tot-vp-header-inner { grid-template-columns: 1fr; text-align: center; }
	.tot-vp-meta { justify-content: center; }
	.tot-checkout-layout { grid-template-columns: 1fr; }
	.tot-msg-container { grid-template-columns: 260px 1fr; }
}

@media (max-width: 768px) {
	.tot-h-inner { grid-template-columns: auto 1fr auto; gap: 0.5rem; padding: 0; }
	.tot-mobile-toggle { display: block; }
	.tot-h-quick-icons, .tot-h-search-trigger, .tot-h-cta { display: none !important; }
	.tot-h-icon-label { display: none; }
	.tot-h-icons { gap: 0.75rem; }
	.tot-h-nav { display: none; }
	.tot-header-main { padding: 1rem 1.5rem; }

	.tot-section-header { margin-bottom: 2rem; }
	.tot-shop-layout { grid-template-columns: 1fr; }
	.tot-filter-sidebar { position: static; display: block; padding: 0; background: transparent; }
	.tot-filter-inner { display: none; padding: 1rem; background: var(--tot-cream); margin-top: 0.5rem; }
	.tot-filter-sidebar.open .tot-filter-inner { display: block; }
	.tot-mobile-filter-toggle { display: block; }
	.tot-products-grid { grid-template-columns: repeat(var(--tot-cols-m, 2), 1fr); gap: 1rem; }
	.tot-products-carousel .tot-product-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
	.tot-pc-image-wrap { height: 280px; }
	.tot-products-grid.list-view .tot-product-card { grid-template-columns: 1fr; }

	.tot-image-upload-grid { grid-template-columns: repeat(2, 1fr); }
	.tot-form-row { grid-template-columns: 1fr; }
	.tot-location-row { grid-template-columns: 1fr; }
	.tot-role-selector { grid-template-columns: 1fr; }
	.tot-msg-container { grid-template-columns: 1fr; height: auto; }
	.tot-msg-list { max-height: 240px; border-right: none; border-bottom: 1px solid var(--tot-border); }
	.tot-pd-actions { flex-direction: column; }
	.tot-qv-content { grid-template-columns: 1fr; }
	.tot-pd-title { font-size: 1.8rem; }
	.tot-listing-section { padding: 1.5rem; }
	.tot-auth-card { padding: 2rem; }

	/* Dashboard mobile responsive */
	.tot-dashboard-widget { padding: 1rem; }
	.tot-dash-card { padding: 1.25rem; overflow-x: auto; }
	.tot-data-table { min-width: 560px; }
	.tot-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
	.tot-stat-card { padding: 1rem; }
	.tot-stat-value { font-size: 1.5rem; }
	.tot-dash-section-title { font-size: 1.4rem; }
	.tot-flex-between { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

	.tot-faq-widget { padding: 2rem 1.25rem; }
	.tot-faq-tabs { gap: 0.4rem; }
	.tot-faq-tab { padding: 0.5rem 1rem; font-size: 0.75rem; }
	.tot-faq-question { font-size: 1rem; }
	.tot-faq-contact { padding: 2rem 1.25rem; }

	.tot-story-hero { padding: 3rem 1.25rem 2.5rem; }
	.tot-story-section { padding: 3rem 1.25rem; }
	.tot-story-grid { grid-template-columns: 1fr; gap: 2rem; }
	.tot-story-image { aspect-ratio: 16/10; }
	.tot-story-values, .tot-story-stats-section, .tot-story-cta { padding: 3rem 1.25rem; }
	.tot-values-grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.tot-story-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
