:root {
	--ll-red: #e2231a;
	--ll-red-dark: #b91b14;
	--ll-black: #1a1a1a;
	--ll-gray: #666;
	--ll-light: #f7f7f7;
	--ll-border: #e5e5e5;
	--ll-white: #fff;
	--ll-radius: 6px;
	--ll-max: 1240px;
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--ll-black);
	background: var(--ll-white);
	line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ll-red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
	border: 0; padding: 0; margin: -1px;
}

.ll-container {
	max-width: var(--ll-max);
	margin: 0 auto;
	padding: 0 20px;
}

h1, h2, h3, h4 { line-height: 1.25; margin: 0 0 .5em; }
p { margin: 0 0 1em; }

.ll-btn {
	display: inline-block;
	background: var(--ll-red);
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: var(--ll-radius);
	font-weight: 600;
	cursor: pointer;
	transition: background .15s ease;
}
.ll-btn:hover { background: var(--ll-red-dark); color: #fff; }

/* ---------- Ticker ---------- */
.ll-ticker {
	background: var(--ll-light);
	border-bottom: 1px solid var(--ll-border);
	overflow: hidden;
	white-space: nowrap;
	padding: 9px 0;
}
.ll-ticker-track {
	display: inline-flex;
	width: max-content;
	animation: ll-ticker-scroll 45s linear infinite;
}
.ll-ticker-item {
	color: var(--ll-black);
	font-size: 12.5px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 0 22px;
	position: relative;
}
.ll-ticker-item::after {
	content: "\2022";
	position: absolute;
	right: -3px;
	color: var(--ll-red);
}
@keyframes ll-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.ll-ticker-track { animation: none; }
}

/* ---------- Header ---------- */
.ll-topbar {
	background: var(--ll-black);
	color: #ccc;
	font-size: 13px;
}
.ll-topbar .ll-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 6px;
	padding-bottom: 6px;
	flex-wrap: wrap;
	gap: 6px;
}
.ll-topbar a { color: #ccc; }
.ll-topbar a:hover { color: #fff; }

.ll-header {
	border-bottom: 1px solid var(--ll-border);
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 100;
}
.ll-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 0;
}
.ll-logo img { height: 46px; width: auto; }

.ll-nav { flex: 1; }
.ll-nav > ul {
	display: flex;
	gap: 22px;
	align-items: center;
	flex-wrap: wrap;
}
.ll-nav > ul > li { position: relative; }
.ll-nav > ul > li > a {
	font-weight: 600;
	font-size: 15px;
	padding: 10px 0;
	display: inline-block;
}
.ll-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid var(--ll-border);
	border-radius: var(--ll-radius);
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	min-width: 240px;
	max-height: 70vh;
	overflow-y: auto;
	padding: 10px 0;
	columns: 2;
	column-gap: 0;
}
.ll-nav .sub-menu.ll-mega { min-width: 520px; }
.ll-nav > ul > li:hover > .sub-menu { display: block; }
.ll-nav .sub-menu li a {
	display: block;
	padding: 6px 18px;
	font-size: 14px;
	break-inside: avoid;
}
.ll-nav .sub-menu li a:hover { background: var(--ll-light); }

.ll-header-actions { display: flex; align-items: center; gap: 18px; }
.ll-header-actions a, .ll-header-actions button {
	background: none; border: none; cursor: pointer; color: var(--ll-black);
	display: flex; align-items: center; gap: 6px; font-size: 14px;
}
.ll-cart-count {
	background: var(--ll-red); color: #fff; border-radius: 50%;
	width: 18px; height: 18px; font-size: 11px; display: inline-flex;
	align-items: center; justify-content: center;
}
.ll-burger { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

.ll-search-box { display: none; padding: 12px 0; border-top: 1px solid var(--ll-border); }
.ll-search-box.active { display: block; }
.ll-search-box form { display: flex; }
.ll-search-box input[type="search"] { flex: 1; padding: 10px; border: 1px solid var(--ll-border); border-radius: var(--ll-radius) 0 0 var(--ll-radius); }
.ll-search-box button { border-radius: 0 var(--ll-radius) var(--ll-radius) 0; }

@media (max-width: 900px) {
	.ll-nav { display: none; width: 100%; order: 3; }
	.ll-nav.active { display: block; }
	.ll-nav > ul { flex-direction: column; align-items: flex-start; gap: 0; }
	.ll-nav .sub-menu { position: static; display: none; box-shadow: none; border: none; columns: 1; padding-left: 12px; }
	.ll-nav li.active > .sub-menu { display: block; }
	.ll-header-inner { flex-wrap: wrap; }
	.ll-burger { display: block; }
}

/* ---------- Hero ---------- */
.ll-hero { background: #fff; padding: 64px 20px; }
.ll-hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}
.ll-hero-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 14px;
}
.ll-hero-copy { text-align: left; }
.ll-hero h1 {
	font-size: clamp(2rem, 3.6vw, 2.8rem);
	font-weight: 800;
	letter-spacing: -.02em;
	color: var(--ll-black);
	margin-bottom: .4em;
}
.ll-hero p { max-width: 480px; margin: 0 0 1.8em; font-size: 1.02rem; line-height: 1.7; color: var(--ll-gray); }
.ll-hero .ll-btn-outline {
	background: #fff; color: var(--ll-black);
	border: 1.5px solid var(--ll-red);
	padding: 13px 30px;
}
.ll-hero .ll-btn-outline:hover { background: var(--ll-red); color: #fff; }

@media (max-width: 780px) {
	.ll-hero-grid { grid-template-columns: 1fr; }
	.ll-hero-copy { text-align: center; margin: 0 auto; }
	.ll-hero p { margin-left: auto; margin-right: auto; }
}

/* ---------- Generic sections ---------- */
.ll-section { padding: 64px 0; }
.ll-section-alt {
	background:
		linear-gradient(var(--ll-light), var(--ll-light)) padding-box,
		repeating-linear-gradient(45deg, rgba(0,0,0,.02) 0px, rgba(0,0,0,.02) 1px, transparent 1px, transparent 12px);
}
.ll-section h2 {
	text-align: center;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 800;
	letter-spacing: -.01em;
	margin-bottom: .3em;
	position: relative;
}
.ll-section h2::after {
	content: "";
	display: block;
	width: 48px; height: 3px;
	background: var(--ll-red);
	margin: 14px auto 0;
	border-radius: 2px;
}
.ll-section > .ll-container > h2 { margin-bottom: 1.3em; }

.ll-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ll-features .ll-feature {
	text-align: center; padding: 32px 24px;
	background: #fff; border: 1px solid var(--ll-border); border-radius: 12px;
	transition: box-shadow .2s ease, transform .2s ease;
}
.ll-features .ll-feature:hover { box-shadow: 0 16px 32px rgba(0,0,0,.06); transform: translateY(-3px); }
.ll-features h3 { font-size: 1.1rem; font-weight: 700; }
.ll-features p { color: var(--ll-gray); font-size: .95rem; margin-bottom: 0; }

.ll-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.ll-stats .ll-stat-num { font-size: 2.8rem; font-weight: 800; color: var(--ll-red); letter-spacing: -.02em; }
.ll-stats .ll-stat-label { color: var(--ll-gray); font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; }

.ll-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.ll-steps .ll-step { background: #fff; border: 1px solid var(--ll-border); border-radius: var(--ll-radius); padding: 20px; }
.ll-steps .ll-step-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%; background: var(--ll-red); color: #fff;
	font-weight: 700; margin-bottom: 10px;
}

@media (max-width: 780px) {
	.ll-features, .ll-stats { grid-template-columns: 1fr; }
}

/* ---------- Product slider ---------- */
.ll-product-slider { position: relative; display: flex; align-items: center; gap: 12px; }
.ll-slider-track {
	flex: 1;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.ll-slider-track::-webkit-scrollbar { display: none; }
.ll-slider-nav {
	flex: 0 0 auto;
	width: 42px; height: 42px;
	border-radius: 50%;
	border: 1px solid var(--ll-border);
	background: #fff;
	color: var(--ll-black);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.ll-slider-nav:hover { background: var(--ll-black); color: #fff; }

/* ---------- Product grid (WooCommerce) ---------- */
ul.products {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 26px;
	list-style: none;
}
ul.products li.product {
	display: flex;
	flex-direction: column;
	flex: 0 0 250px;
	width: 250px;
	scroll-snap-align: start;
	background: #fff;
	border: 1px solid var(--ll-border);
	border-radius: 10px;
	padding: 16px;
	text-align: center;
	position: relative;
	transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
ul.products li.product:hover {
	box-shadow: 0 16px 32px rgba(0,0,0,.1);
	transform: translateY(-3px);
	border-color: transparent;
}
ul.products li.product a.woocommerce-LoopProduct-link { display: block; }
ul.products li.product img {
	aspect-ratio: 4 / 3;
	width: 100%;
	object-fit: cover;
	border-radius: 7px;
	margin-bottom: 14px;
	background: var(--ll-light);
}
ul.products li.product .woocommerce-loop-product__title {
	font-size: .96rem;
	font-weight: 600;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.6em;
	margin-bottom: .4em;
}
ul.products li.product .price {
	color: var(--ll-red); font-weight: 800; font-size: 1.02rem;
	display: block; margin-bottom: 12px;
}
ul.products li.product .price del { color: #999; font-weight: 400; font-size: .88em; margin-right: 6px; opacity: .75; }
ul.products li.product .onsale {
	position: absolute; top: 12px; left: 12px; background: var(--ll-black); color: #fff;
	text-transform: uppercase; letter-spacing: .05em;
	font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; z-index: 1;
}
ul.products li.product .button {
	display: inline-block; margin-top: auto; align-self: stretch; padding: 10px 18px;
	background: var(--ll-black); color: #fff; border-radius: var(--ll-radius);
	font-size: 13.5px; font-weight: 600;
	transition: background .15s ease;
}
ul.products li.product .button:hover { background: var(--ll-red); color: #fff; }

/* ---------- Single product ---------- */
.single-product .product { display: flex; gap: 40px; flex-wrap: wrap; }
.single-product .product > .woocommerce-product-gallery { flex: 1 1 400px; }
.single-product .summary { flex: 1 1 400px; }
.single-product .price { color: var(--ll-red); font-size: 1.4rem; font-weight: 700; }

/* ---------- Cart / Checkout ---------- */
table.shop_table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
table.shop_table th, table.shop_table td { padding: 12px; border-bottom: 1px solid var(--ll-border); text-align: left; }
.woocommerce-checkout input.input-text, .woocommerce-checkout select, .woocommerce form .input-text, .woocommerce form select {
	width: 100%; padding: 10px; border: 1px solid var(--ll-border); border-radius: var(--ll-radius);
}
.woocommerce-checkout #payment { background: var(--ll-light); border-radius: var(--ll-radius); padding: 16px; }

/* ---------- Generic content page ---------- */
.ll-page-header { background: var(--ll-black); color: #fff; padding: 40px 0; text-align: center; }
.ll-page-header h1 { margin: 0; font-size: 2rem; }
.ll-content { padding: 48px 0; max-width: 820px; }
.ll-content h2 { font-size: 1.3rem; margin-top: 1.6em; }

/* ---------- Contact page ---------- */
.ll-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.ll-contact-info .ll-info-block { margin-bottom: 24px; }
.ll-contact-info h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ll-gray); }
@media (max-width: 780px) { .ll-contact-grid { grid-template-columns: 1fr; } }

.ll-form-row { margin-bottom: 16px; }
.ll-form-row label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .9rem; }
.ll-form-row input, .ll-form-row select, .ll-form-row textarea {
	width: 100%; padding: 10px; border: 1px solid var(--ll-border); border-radius: var(--ll-radius); font: inherit;
}

/* ---------- Order tracking ---------- */
.ll-tracking-result { margin-top: 30px; padding: 20px; border: 1px solid var(--ll-border); border-radius: var(--ll-radius); }
.ll-tracking-result.ll-error { border-color: var(--ll-red); color: var(--ll-red-dark); }

/* ---------- WhatsApp float ---------- */
.ll-wa-float {
	position: fixed; bottom: 22px; right: 22px; background: #25D366; color: #fff;
	width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center;
	justify-content: center; box-shadow: 0 4px 14px rgba(0,0,0,.2); z-index: 200; font-size: 26px;
}
.ll-wa-float:hover { color: #fff; opacity: .9; }

/* ---------- Contact Form 7 ---------- */
.wpcf7-form p { margin-bottom: 14px; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea {
	width: 100%; padding: 10px; border: 1px solid var(--ll-border); border-radius: var(--ll-radius); font: inherit;
}
.wpcf7-form input[type="submit"] {
	background: var(--ll-red); color: #fff; border: none; padding: 12px 28px;
	border-radius: var(--ll-radius); font-weight: 600; cursor: pointer;
}
.wpcf7-form input[type="submit"]:hover { background: var(--ll-red-dark); }
.wpcf7-not-valid-tip { color: var(--ll-red); font-size: .85rem; }
.wpcf7-response-output { border-radius: var(--ll-radius); padding: 10px 14px; margin-top: 14px; }

/* ---------- Footer ---------- */
.ll-footer { background: var(--ll-black); color: #ccc; padding: 48px 0 20px; margin-top: 60px; }
.ll-footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 30px; }
.ll-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.ll-footer a { color: #ccc; }
.ll-footer a:hover { color: #fff; }
.ll-footer li { margin-bottom: 8px; font-size: .92rem; }
.ll-footer-bottom {
	border-top: 1px solid #333; padding-top: 18px; text-align: center; font-size: .85rem; color: #999;
}
@media (max-width: 900px) { .ll-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .ll-footer-grid { grid-template-columns: 1fr; } }
