/* Font Faces */
@font-face {
	font-family: 'Amazon Ember Display';
	font-style: normal;
	font-weight: 300;
	src: url('./assets/fonts/AMAZONEMBERDISPLAY_LT.TTF') format('truetype');
}

@font-face {
	font-family: 'Amazon Ember Display';
	font-style: normal;
	font-weight: 400;
	src: url('./assets/fonts/AMAZONEMBERDISPLAY_RG.TTF') format('truetype');
}

@font-face {
	font-family: 'Amazon Ember Display';
	font-style: normal;
	font-weight: 500;
	src: url('./assets/fonts/AMAZONEMBERDISPLAY_MD.TTF') format('truetype');
}

@font-face {
	font-family: 'Amazon Ember Display';
	font-style: normal;
	font-weight: 700;
	src: url('./assets/fonts/AMAZONEMBERDISPLAY_HE.TTF') format('truetype');
}

:root {
	--ten2-font-body: 'Amazon Ember Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ten2-font-heading: 'Amazon Ember Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--ten2-color-bg: #f2f2f2;
	--ten2-color-surface: #ffffff;
	--ten2-color-border: #bcbcbc;
	--ten2-color-text: #192335;
	--ten2-color-text-muted: #616161;
	--ten2-color-accent: #173f7e;
	--ten2-color-accent-strong: #173f7e;
	--ten2-color-blue: #173f7e;
	--ten2-color-purple: #173f7e;
	--ten2-color-black: #192335;
	--ten2-color-red: #f81a74;
	--ten2-color-light-blue: #00a3d9;
	--ten2-radius-sm: 8px;
	--ten2-radius-md: 8px;
	--ten2-radius-lg: 8px;
	--ten2-gap-xs: 8px;
	--ten2-gap-sm: 16px;
	--ten2-gap-md: 24px;
	--ten2-gap-lg: 32px;
	--ten2-gap-xl: 48px;
	--ten2-shadow-sm: 0 18px 44px rgba(15, 31, 55, 0.14);
	--ten2-shadow-md: 0 18px 44px rgba(15, 31, 55, 0.14);
	--ten2-shadow-lg: 0 18px 44px rgba(15, 31, 55, 0.14);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--ten2-font-body);
	font-size: 16px;
	line-height: 1.6;
	background: var(--ten2-color-bg);
	color: var(--ten2-color-text);
	min-height: 100vh;
}

body.ten2-menu-open {
	overflow: hidden;
}

/* Grid System */
.ten2-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.ten2-site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.ten2-site-main {
	flex: 1;
}

/* Typography */
.ten2-title {
	font-family: var(--ten2-font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.ten2-title-4 {
	font-size: 1.5rem;
}

.ten2-title-5 {
	font-size: 1.25rem;
}

.ten2-text {
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0;
}

.ten2-letter-icon {
	font-size: 2rem;
	font-weight: 400;
	color: var(--ten2-color-accent);
	margin-right: 0.5rem;
}

/* Universal input styling for entire site */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea,
select {
	border: 1px solid var(--ten2-color-accent);
	border-radius: var(--ten2-radius-md);
	background: transparent;
	color: var(--ten2-color-accent);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
	outline: none;
	background: rgba(23, 63, 126, 0.05);
	border-color: var(--ten2-color-accent);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder,
select::placeholder {
	color: var(--ten2-color-accent);
	opacity: 0.7;
}

/* Universal button styling for entire site */
button,
input[type="submit"],
input[type="button"],
.ten2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--ten2-color-accent);
	border-radius: var(--ten2-radius-md);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	background: transparent;
	color: var(--ten2-color-accent) !important;
}

/* Menu toggle button - remove all borders and styling */
.ten2-nav-toggle.ten2-btn {
	border: none !important;
	background: transparent !important;
	padding: 0.5rem;
	min-width: auto;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	text-decoration: none !important;
}

.ten2-nav-toggle.ten2-btn:hover,
.ten2-nav-toggle.ten2-btn:focus,
.ten2-nav-toggle.ten2-btn:active {
	background: transparent !important;
	border: none !important;
	box-shadow: none !important;
	outline: none !important;
	text-decoration: none !important;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.ten2-btn:hover,
.ten2-btn:focus {
	background: var(--ten2-color-accent);
	color: white !important;
	transform: translateY(-1px);
	box-shadow: none;
}

.ten2-btn_lg {
	padding: 1rem 2rem;
	font-size: 1rem;
}

.ten2-btn_mask-black {
	border-radius: var(--ten2-radius-lg);
	padding: 0.875rem 2.5rem;
}

/* Reset styles for admin/system buttons */
.admin-bar button,
.admin-bar input[type="submit"],
.admin-bar input[type="button"],
#wpadminbar button,
#wpadminbar input[type="submit"],
#wpadminbar input[type="button"] {
	all: unset;
}

/* Header */
.ten2-site-header {
	padding: 1rem 0;
	background: var(--ten2-color-bg);
}

.ten2-header-inner {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 0 1rem;
	gap: 1rem;
}

.ten2-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.ten2-header-search {
	width: 100%;
	max-width: none;
	margin: 300px 0 20px 0;
	padding: 0 1rem;
	box-sizing: border-box;
}

.ten2-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}

.ten2-header-cart {
	position: relative;
}

.ten2-cart-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background: var(--ten2-color-accent);
	color: white;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 600;
	min-width: 18px;
}

.ten2-branding {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ten2-color-text);
	text-decoration: none;
}

.ten2-logo {
	font-size: 1.5rem;
	font-weight: 700;
}

.ten2-header-logo {
	display: flex;
	align-items: center;
}

.ten2-logo-link {
	display: inline-block;
	text-decoration: none;
	color: var(--ten2-color-text);
	transition: opacity 0.2s ease;
}

.ten2-logo-link:hover {
	opacity: 0.8;
}

.ten2-logo-image {
	height: 40px;
	width: auto;
	max-width: 150px;
	object-fit: contain;
}

.ten2-header-right {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ten2-header-link {
	background: transparent;
	border: 1px solid var(--ten2-color-border);
	padding: 0.5rem 1rem;
	border-radius: var(--ten2-radius-md);
	color: var(--ten2-color-text);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ten2-header-link:hover {
	background: var(--ten2-color-surface);
}

.ten2-header-user {
	border: 1px solid var(--ten2-color-border);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 0;
	justify-content: center;
	background: var(--ten2-color-surface);
}

.ten2-header-user:hover {
	background: var(--ten2-color-accent);
	color: white;
}

/* Fullscreen Menu */
.ten2-menu-main {
	position: fixed;
	inset: 0;
	background: rgba(242, 242, 242, 0.85);
	backdrop-filter: blur(20px);
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 1000;
}

.ten2-menu-main.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Fullscreen Contact Page */
.ten2-contact-page {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	min-height: 100vh;
}

.ten2-contact-page__container {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 600px;
	margin: 0 auto;
	padding: 2rem 1rem;
	width: 100%;
}

@media (min-width: 768px) {
	.ten2-contact-page__container {
		max-width: 800px;
		padding: 3rem 2rem;
	}
}

@media (min-width: 1024px) {
	.ten2-contact-page__container {
		max-width: 1000px;
		padding: 4rem 3rem;
	}
}

@media (min-width: 1440px) {
	.ten2-contact-page__container {
		max-width: 1200px;
		padding: 4rem;
	}
}

/* Contact form responsive fields */
@media (min-width: 768px) {
	.ten2-contact-page .ten2-form__grid .row .col-6 {
		flex: 0 0 45%;
		max-width: 45%;
	}
}

@media (min-width: 1024px) {
	.ten2-contact-page .ten2-form__grid .row .col-6 {
		flex: 0 0 42%;
		max-width: 42%;
	}
}

/* Hide header and footer on contact page */
body.ten2-contact-page-active .ten2-site-header,
body.ten2-contact-page-active .ten2-footer {
	display: none;
}

body.ten2-contact-page-active .ten2-site {
	min-height: 100vh;
}

.ten2-menu-main__viewport {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ten2-menu-main__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
}

.ten2-menu-main__logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ten2-color-text);
	text-decoration: none;
}

.ten2-menu-main__close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1001;
	transition: opacity 0.2s ease;
	padding: 0;
}

.ten2-menu-main__close img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ten2-menu-main__close:hover {
	opacity: 0.7;
}

.ten2-menu-main__container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 2rem 2rem;
	text-align: center;
}

.ten2-nav {
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	list-style: none;
}

.ten2-menu-main .ten2-nav__item {
	display: inline-block;
	color: var(--ten2-color-accent);
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 500;
	padding: 0.75rem 1.5rem;
	border: 1px solid var(--ten2-color-accent);
	border-radius: var(--ten2-radius-md);
	background: transparent;
	transition: all 0.2s ease;
	text-align: center;
	min-width: 200px;
}

.ten2-menu-main .ten2-nav__item:hover {
	background: var(--ten2-color-accent);
	color: white;
	transform: translateY(-1px);
	box-shadow: var(--ten2-shadow-md);
}

.ten2-menu-main .ten2-nav__item_act {
	font-weight: 700;
	background: var(--ten2-color-accent);
	color: white;
}

.ten2-menu-main__caption {
	display: block;
	font-size: 1rem;
	color: var(--ten2-color-text-muted);
	margin-bottom: 1rem;
}



/* New Search Form Styles */
.ten2-search-container {
	width: 100%;
	max-width: none;
	margin-bottom: 2rem;
	padding: 0 1rem;
	box-sizing: border-box;
}

.ten2-search-form-new {
	width: 100%;
}

.ten2-search-input-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.ten2-search-input {
	flex: 1;
	border: 1px solid var(--ten2-color-accent);
	border-radius: var(--ten2-radius-md);
	background: transparent;
	color: var(--ten2-color-accent);
	padding: 1rem 3rem 1rem 1rem;
	font-size: 1rem;
	transition: all 0.2s ease;
	box-sizing: border-box;
	min-height: 48px;
}

.ten2-search-input:focus {
	outline: none;
	background: rgba(23, 63, 126, 0.05);
	border-color: var(--ten2-color-accent);
}

.ten2-search-input::placeholder {
	color: var(--ten2-color-accent);
	opacity: 0.7;
}

.ten2-search-button {
	position: absolute;
	right: 0.5rem;
	background: transparent;
	border: none;
	color: var(--ten2-color-accent);
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	border-radius: var(--ten2-radius-sm);
}

.ten2-search-button:hover {
	background: var(--ten2-color-accent);
	color: white;
}



.ten2-homepage-search-input:focus {
	background: rgba(23, 63, 126, 0.05);
	border-color: var(--ten2-color-accent);
}

.ten2-homepage-search-input::placeholder {
	color: var(--ten2-color-accent);
	opacity: 0.7;
	font-weight: 400;
}

/* Hide search input clear button (x) */
.ten2-homepage-search-input::-webkit-search-cancel-button {
	display: none;
}
.ten2-homepage-search-input::-webkit-search-decoration {
	display: none;
}
.ten2-homepage-search-input::-webkit-search-results-button {
	display: none;
}
.ten2-homepage-search-input::-webkit-search-results-decoration {
	display: none;
}

.ten2-search-submit-btn {
	position: absolute;
	right: 20px; /* Adjusted to match reduced padding */
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ten2-search-submit-btn:hover {
	opacity: 0.8;
}

.ten2-search-icon-right {
	width: 24px;
	height: 24px;
	color: #ffffff;
}


/* Form keeps 80% width on all devices */

/* Products */
.ten2-products-main {
	padding: 4rem 0;
}

.ten2-title-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.ten2-product-card {
	background: var(--ten2-color-surface);
	border-radius: var(--ten2-radius-lg);
	padding: 1.5rem;
	margin-bottom: 1rem;
	box-shadow: var(--ten2-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	position: relative;
}

.ten2-product-card__image {
	width: 100%;
	height: 200px;
	border-radius: var(--ten2-radius-md);
	background: var(--ten2-color-border);
	margin-bottom: 1rem;
	overflow: hidden;
}

.ten2-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ten2-product-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ten2-shadow-md);
}

.ten2-product-card__date {
	display: block;
	font-size: 0.875rem;
	color: var(--ten2-color-text-muted);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.ten2-product-card__content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1rem;
}

.ten2-product-card__text p {
	margin: 0 0 0.25rem 0;
	font-size: 0.875rem;
	line-height: 1.4;
}

.ten2-product-card__title {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--ten2-color-text);
	margin-left: 1rem;
	white-space: nowrap;
}

.ten2-product-card__btn {
	width: 100%;
}

/* Clean Product Card */
.ten2-product-card-clean {
	max-width: 100%;
	margin-bottom: 2rem;
}

.ten2-product-main-image {
	width: 100%;
	margin-bottom: 1rem;
}

.ten2-product-main-img {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: contain;
	border-radius: var(--ten2-radius-md);
}

.ten2-no-image {
	background: var(--ten2-color-border);
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ten2-color-text-muted);
	font-size: 1.125rem;
}

.ten2-product-thumbnails {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.ten2-product-thumb {
	aspect-ratio: 1;
	border-radius: var(--ten2-radius-sm);
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.ten2-product-thumb:hover {
	transform: scale(1.05);
}

.ten2-product-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ten2-product-title-clean {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--ten2-color-text);
	margin: 0 0 1rem 0;
	line-height: 1.3;
	word-wrap: break-word;
}

.ten2-product-price-cart {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.ten2-product-price-clean {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--ten2-color-accent);
}

.ten2-product-price-clean .woocommerce-Price-amount {
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}

.ten2-product-cart-clean .single_add_to_cart_button {
	padding: 0.75rem 1.5rem;
	background: var(--ten2-color-accent);
	color: white;
	border: none;
	border-radius: var(--ten2-radius-md);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
	min-width: 150px;
}

.ten2-product-cart-clean .single_add_to_cart_button:hover {
	background: var(--ten2-color-accent-strong);
}

.ten2-product-attributes-clean {
	margin-bottom: 1.5rem;
}

.ten2-attribute-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
}

.ten2-attribute-item:last-child {
	border-bottom: none;
}

.ten2-attribute-name {
	font-weight: 600;
	color: var(--ten2-color-text);
	font-size: 0.9rem;
}

.ten2-attribute-value {
	color: var(--ten2-color-text-muted);
	font-size: 0.9rem;
	text-align: right;
	flex: 1;
}

.ten2-product-description-clean {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ten2-color-text);
}

.ten2-product-description-clean p {
	margin: 0 0 1rem 0;
}

.ten2-product-description-clean p:last-child {
	margin-bottom: 0;
}

.ten2-product-condition-single {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: var(--ten2-radius-md);
	border-left: 4px solid var(--ten2-color-accent);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.ten2-product-main-img {
		max-height: 300px;
	}

	.ten2-product-thumbnails {
		grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
		gap: 0.375rem;
		margin-bottom: 1rem;
	}

	.ten2-product-title-clean {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}

	.ten2-product-price-cart {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.ten2-product-price-clean {
		font-size: 1.125rem;
	}

	.ten2-product-cart-clean .single_add_to_cart_button {
		width: 100%;
		padding: 0.625rem 1rem;
		font-size: 0.9rem;
		min-width: unset;
	}
}

@media (max-width: 480px) {
	.ten2-product-main-img {
		max-height: 250px;
	}

	.ten2-product-thumbnails {
		grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
		gap: 0.25rem;
	}

	.ten2-product-title-clean {
		font-size: 1.125rem;
	}

	.ten2-product-price-clean {
		font-size: 1rem;
	}

	.ten2-attribute-name,
	.ten2-attribute-value {
		font-size: 0.85rem;
	}

	.ten2-product-description-clean {
		font-size: 0.95rem;
	}
}

/* Videos Grid */
.ten2-videos-viewport {
	padding: 4rem 0;
}

.ten2-videos__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.ten2-video-card {
	background: var(--ten2-color-surface);
	border-radius: var(--ten2-radius-lg);
	overflow: hidden;
	box-shadow: var(--ten2-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ten2-video-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ten2-shadow-md);
}

.ten2-video-card__img-wrap {
	position: relative;
	padding-top: 56.25%; /* 16:9 aspect ratio */
	overflow: hidden;
	background: var(--ten2-color-border);
}

.ten2-video-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ten2-video-card__content {
	padding: 1.5rem;
}

.ten2-video-card__left {
	margin-bottom: 1rem;
}

.ten2-video-card__title {
	display: block;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--ten2-color-text);
}

.ten2-video-card__date {
	display: block;
	font-size: 0.875rem;
	color: var(--ten2-color-text-muted);
}

.ten2-video-card__right {
	display: flex;
	justify-content: flex-end;
}

.ten2-video-card__btns {
	display: flex;
	gap: 0.5rem;
}

/* Forms */
.ten2-form {
	padding: 2rem;
}

.ten2-form__title {
	display: block;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--ten2-color-accent);
}

.ten2-form__grid {
	margin-bottom: 1.5rem;
}

.ten2-form__grid .row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ten2-form__grid .col-6 {
	flex: 1;
}

.ten2-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--ten2-color-accent);
	border-radius: var(--ten2-radius-md);
	font-size: 0.875rem;
	background: transparent;
	transition: all 0.2s ease;
	color: var(--ten2-color-accent);
}

.ten2-input:focus {
	outline: none;
	background: rgba(23, 63, 126, 0.05);
	border-color: var(--ten2-color-accent);
}

.ten2-input::placeholder {
	color: var(--ten2-color-accent);
	opacity: 0.7;
}


/* Contact page submit button styling */
.ten2-contact-page input[type="submit"],
.ten2-contact-page button[type="submit"],
.ten2-contact-page .wpcf7-submit,
.ten2-contact-page .contact-submit {
	border: 1px solid var(--ten2-color-accent);
	border-radius: var(--ten2-radius-md);
	background: transparent;
	color: var(--ten2-color-accent) !important;
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
}

.ten2-contact-page input[type="submit"]:hover,
.ten2-contact-page button[type="submit"]:hover,
.ten2-contact-page .wpcf7-submit:hover,
.ten2-contact-page .contact-submit:hover {
	background: var(--ten2-color-accent);
	color: white;
	transform: translateY(-1px);
	box-shadow: var(--ten2-shadow-md);
}

.ten2-form__submit-wrap {
	text-align: center;
}

/* Footer */
.ten2-footer {
	background: var(--ten2-color-surface);
	padding: 4rem 0 2rem;
	margin-top: 4rem;
}


.ten2-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.ten2-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 600px;
	margin: 0 auto;
}

.ten2-footer__l,
.ten2-footer__r {
	display: flex;
	flex-direction: column;
}

.ten2-footer__title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	color: var(--ten2-color-text);
}

.ten2-nav__wrap {
	margin-bottom: 0.75rem;
}

.ten2-nav__item {
	color: var(--ten2-color-text);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.2s ease;
	list-style: none;
}

.ten2-nav__item:hover {
	color: var(--ten2-color-accent);
}

.ten2-bottom-text {
	margin-top: auto;
	padding-top: 2rem;
}

.ten2-bottom-text p {
	font-size: 0.75rem;
	color: var(--ten2-color-text-muted);
	margin: 0;
	line-height: 1.4;
}

.ten2-footer__form {
	grid-column: 1 / -1;
	margin: 2rem 0;
}

.ten2-footer__links {
	margin-bottom: 2rem;
}

.ten2-footer__link {
	display: block;
	font-size: 0.875rem;
	color: var(--ten2-color-text);
	text-decoration: none;
	margin-bottom: 0.25rem;
	line-height: 1.4;
}

.ten2-footer__link_bold {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.ten2-payments {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
}

.ten2-payments__item {
	width: 32px;
	height: 20px;
	object-fit: contain;
}

/* Modal */
.ten2-modal {
	display: none;
}

.ten2-modal.is-open {
	display: flex;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
	.ten2-search-container {
		padding: 0 2rem;
	}
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
	.ten2-search-container {
		padding: 0 4rem;
	}
}

/* Homepage Features */
.ten2-homepage-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
	margin-bottom: 0;
	padding: 0 1rem;
	flex-wrap: wrap;
}

.ten2-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem;
	border: none;
	min-width: 80px;
	cursor: pointer;
	transition: transform 0.2s ease;
	text-decoration: none;
	color: inherit;
}

.ten2-feature-item:hover {
	transform: scale(1.05);
}

.ten2-feature-icon-img {
	width: 100px;
	height: 100px;
	object-fit: contain;
	flex-shrink: 0;
	margin-bottom: 0;
}

.ten2-feature-content {
	text-align: center;
}

.ten2-feature-title {
	font-family: var(--ten2-font-body);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--ten2-color-text);
	margin: 0 0 0.5rem 0;
}

.ten2-feature-description {
	font-size: 0.875rem;
	color: var(--ten2-color-text-muted);
	margin: 0;
}

/* Homepage Products */
.ten2-homepage-products {
	margin-top: 1rem;
	padding: 0 1rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.ten2-product-card-compact {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	border: 1px solid var(--ten2-color-border);
	border-radius: var(--ten2-radius-sm);
}

.ten2-product-image {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: var(--ten2-radius-md);
	overflow: hidden;
	background: var(--ten2-color-border);
}

.ten2-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ten2-product-info {
	flex: 1;
	min-width: 0; /* Prevent flex item from overflowing */
}

.ten2-product-title {
	font-family: var(--ten2-font-body);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--ten2-color-text);
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}

.ten2-product-title a {
	color: inherit;
	text-decoration: none;
}

.ten2-product-title a:hover {
	color: var(--ten2-color-accent);
}

.ten2-product-condition {
	font-size: 0.875rem;
	color: var(--ten2-color-text-muted);
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.ten2-product-price {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ten2-color-accent);
	margin-bottom: 0.75rem;
}

.ten2-product-price ins {
	text-decoration: none;
}

.ten2-product-price del {
	font-size: 0.875rem;
	color: var(--ten2-color-text-muted);
	margin-right: 0.5rem;
}

/* Minimalist WooCommerce buttons in product cards */
.ten2-product-card-compact .button,
.ten2-product-card-compact .add_to_cart_button {
	background: transparent !important;
	border: 1px solid var(--ten2-color-accent) !important;
	color: var(--ten2-color-accent) !important;
	border-radius: var(--ten2-radius-sm) !important;
	padding: 0.5rem 1rem !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	transition: all 0.2s ease !important;
	text-decoration: none !important;
	display: inline-block !important;
}

.ten2-product-card-compact .button:hover,
.ten2-product-card-compact .add_to_cart_button:hover {
	background: var(--ten2-color-accent) !important;
	color: white !important;
}

	.ten2-footer__grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ten2-form {
		padding: 1.5rem;
	}

	.ten2-form__grid .row {
		flex-direction: column;
		gap: 0.5rem;
	}

	.ten2-menu-main__container {
		padding: 0 1rem 1rem;
	}

	.ten2-nav__item {
		font-size: 1.125rem;
	}
}

/* Mobile: vertical layout */
@media (max-width: 767px) {
	.ten2-homepage-features {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
		margin-top: 2rem;
	}

	.ten2-feature-item {
		min-width: auto;
		width: 100%;
		max-width: 300px;
		padding: 0.5rem;
	}

	.ten2-feature-icon-img {
		width: 100px;
		height: 100px;
		margin-bottom: 0;
		flex-shrink: 0;
	}

	.ten2-feature-title {
		font-size: 1rem;
	}

	.ten2-feature-description {
		font-size: 0.8rem;
	}
}

/* Tablet and up: horizontal layout */
@media (min-width: 768px) {
	.ten2-homepage-features {
		flex-direction: row;
		justify-content: center;
		align-items: flex-start;
		gap: 2rem;
		margin-top: 3rem;
		flex-wrap: wrap;
	}

	.ten2-feature-item {
		min-width: 80px;
		width: auto;
		max-width: none;
		flex: 1;
		max-width: 150px;
		padding: 1rem;
	}

	.ten2-homepage-products {
		margin-top: 2rem;
		padding: 0 0.5rem;
	}

	.ten2-product-card-compact {
		flex-direction: row;
		text-align: left;
		padding: 0.75rem;
		gap: 0.75rem;
		align-items: flex-start;
		border: 1px solid var(--ten2-color-border);
		border-radius: var(--ten2-radius-sm);
	}

	.ten2-product-image {
		width: 80px;
		height: 80px;
		flex-shrink: 0;
	}

	.ten2-product-title {
		font-size: 0.9rem;
		line-height: 1.3;
	}

	.ten2-product-condition {
		font-size: 0.8rem;
		margin-bottom: 0.25rem;
	}

	.ten2-product-price {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}
}

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

/* Single Product Page Styles - Ultra Minimalist */
.ten2-product-minimal {
	display: flex;
	flex-direction: column;
	gap: var(--ten2-gap-lg);
	max-width: 800px;
	margin: 0 auto;
	padding: var(--ten2-gap-xl) 0;
}

.ten2-product-description {
	line-height: 1.6;
	color: var(--ten2-color-text-secondary);
	font-size: var(--ten2-font-size-base);
	margin-bottom: var(--ten2-gap-lg);
}

.ten2-product-description p {
	margin-bottom: var(--ten2-gap-md);
}

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

.ten2-product-actions {
	display: flex;
	flex-direction: column;
	gap: var(--ten2-gap-sm);
	align-items: flex-start;
}

.ten2-product-actions .cart {
	display: flex;
	flex-direction: column;
	gap: var(--ten2-gap-sm);
}

.ten2-product-actions .quantity {
	display: flex;
	align-items: center;
	gap: var(--ten2-gap-sm);
}

.ten2-product-actions .quantity input {
	width: 80px;
	padding: var(--ten2-gap-xs);
	border: 1px solid var(--ten2-color-border);
	border-radius: var(--ten2-radius-sm);
	text-align: center;
	font-size: var(--ten2-font-size-base);
}

.ten2-product-actions .single_add_to_cart_button {
	background-color: var(--ten2-color-accent);
	color: white;
	border: none;
	padding: var(--ten2-gap-sm) var(--ten2-gap-md);
	border-radius: var(--ten2-radius-sm);
	font-size: var(--ten2-font-size-base);
	font-weight: var(--ten2-font-weight-semibold);
	cursor: pointer;
	transition: all 0.2s ease;
}

.ten2-product-actions .single_add_to_cart_button:hover {
	background-color: var(--ten2-color-accent);
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Product Page */
@media (max-width: 768px) {
	.ten2-product-minimal {
		padding: var(--ten2-gap-lg) var(--ten2-gap-md);
		gap: var(--ten2-gap-md);
	}

	.ten2-product-description {
		font-size: var(--ten2-font-size-sm);
	}
}

/* Shipping Modal */
.ten2-shipping-modal__container {
	padding: 2rem 0;
}

.ten2-shipping-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ten2-shipping-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--ten2-color-text);
	margin-bottom: 2rem;
	text-align: center;
}

.ten2-shipping-section {
	margin-bottom: 2rem;
}

.ten2-shipping-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--ten2-color-text);
	margin-bottom: 1rem;
}

.ten2-shipping-section p {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ten2-color-text);
	margin-bottom: 1rem;
}

.ten2-shipping-section p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.ten2-shipping-modal__container {
		padding: 1rem 0;
	}

	.ten2-shipping-content {
		padding: 0 1rem;
	}

	.ten2-shipping-title {
		font-size: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.ten2-shipping-section {
		margin-bottom: 1.5rem;
	}

	.ten2-shipping-section h3 {
		font-size: 1.125rem;
	}
}

/* View Cart Button Styling */
.view-cart-button,
.view-cart-button:hover,
.view-cart-button:focus,
.view-cart-button:active,
.ten2-product-cart-clean .view-cart-button,
.ten2-product-cart-clean .view-cart-button:hover,
.ten2-product-cart-clean .view-cart-button:focus,
.ten2-product-cart-clean .view-cart-button:active,
button.view-cart-button,
button.view-cart-button:hover,
button.view-cart-button:focus,
button.view-cart-button:active,
a.view-cart-button,
a.view-cart-button:hover,
a.view-cart-button:focus,
a.view-cart-button:active {
	background: #00a3d9 !important;
	color: white !important;
	border-color: #00a3d9 !important;
	box-shadow: none !important;
	outline: none !important;
	text-decoration: none !important;
}

.view-cart-button:hover,
.ten2-product-cart-clean .view-cart-button:hover,
button.view-cart-button:hover,
a.view-cart-button:hover {
	background: #0088b8 !important;
	border-color: #0088b8 !important;
}
