/*
Theme Name: Kadence Child - Thai Express
Template: kadence
Version: 1.0.13
Text Domain: kadence-child
*/

/* ==========================================================================
   Thai Express design tokens (see Kadence Global Palette for base colors)
   Primary/Accent1: #0F5C4E (deep teal)
   Accent2: #C97B3D (warm terracotta)
   ========================================================================== */

:root {
    	--te-color-primary: #0F5C4E;
    	--te-color-primary-dark: #0A3F35;
    	--te-color-accent: #C97B3D;
    	--te-color-accent-dark: #A8622D;
    	--te-color-ink: #1F2523;
    	--te-color-muted: #5B6864;
    	--te-color-surface: #FFFFFF;
    	--te-color-surface-alt: #F5F3EE;
    	--te-radius-sm: 6px;
    	--te-radius-md: 10px;
    	--te-radius-lg: 16px;
    	--te-shadow-sm: 0 1px 2px rgba(15, 30, 26, 0.08);
    	--te-shadow-md: 0 4px 16px rgba(15, 30, 26, 0.10);
}

.te-hero {
    	background-color: var(--te-color-primary);
    	color: #fff;
    	padding: 64px 24px;
    	border-radius: var(--te-radius-lg);
}

.te-hero__eyebrow {
    	text-transform: uppercase;
    	letter-spacing: 0.08em;
    	font-size: 13px;
    	color: var(--te-color-accent);
    	font-weight: 600;
}

.te-hero__title {
    	font-size: clamp(28px, 4vw, 44px);
    	line-height: 1.2;
    	margin: 12px 0 16px;
}

.te-hero__subtitle {
    	font-size: 18px;
    	color: rgba(255,255,255,0.85);
    	max-width: 640px;
    	margin-bottom: 28px;
}

.te-btn {
    	display: inline-flex;
    	align-items: center;
    	justify-content: center;
    	padding: 12px 24px;
    	border-radius: var(--te-radius-sm);
    	font-weight: 600;
    	text-decoration: none;
    	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.te-btn--primary {
    	background-color: var(--te-color-accent);
    	color: #fff;
}

.te-btn--primary:hover {
    	background-color: var(--te-color-accent-dark);
    	transform: translateY(-1px);
    	box-shadow: var(--te-shadow-md);
    	color: #fff;
}

.te-btn--outline {
    	background-color: transparent;
    	color: #fff;
    	border: 1px solid rgba(255,255,255,0.6);
}

.te-btn--outline:hover {
    	background-color: rgba(255,255,255,0.12);
    	color: #fff;
}

.te-card-grid {
    	display: grid;
    	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    	gap: 20px;
    	margin: 40px 0;
}

.te-card {
    	background: var(--te-color-surface);
    	border: 1px solid #E7E3DA;
    	border-radius: var(--te-radius-md);
    	padding: 24px;
    	box-shadow: var(--te-shadow-sm);
    	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

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

.te-card__icon {
    	color: var(--te-color-primary);
    	margin-bottom: 12px;
}

.te-card__title {
    	font-size: 18px;
    	font-weight: 700;
    	color: var(--te-color-ink);
    	margin-bottom: 8px;
}

.te-card__desc {
    	font-size: 14px;
    	color: var(--te-color-muted);
    	line-height: 1.5;
}

.te-section {
    	padding: 56px 0;
}

.te-section--alt {
    	background-color: var(--te-color-surface-alt);
}

.te-section__heading {
    	font-size: clamp(22px, 3vw, 32px);
    	color: var(--te-color-ink);
    	margin-bottom: 8px;
}

.te-section__sub {
    	color: var(--te-color-muted);
    	margin-bottom: 32px;
}

/* ==========================================================================
   WooCommerce - Shop / Product / Cart / Checkout styling
   ========================================================================== */

.woocommerce ul.products,
.woocommerce-page ul.products {
    	display: grid;
    	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    	gap: 24px;
    	margin: 0 0 32px;
    	padding: 0;
    	list-style: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    	background-color: var(--te-color-surface);
    	border-radius: var(--te-radius-md);
    	box-shadow: var(--te-shadow-sm);
    	padding: 16px;
    	transition: transform 0.15s ease, box-shadow 0.15s ease;
    	text-align: left;
}

.woocommerce ul.products li.product:hover {
    	transform: translateY(-4px);
    	box-shadow: var(--te-shadow-md);
}

.woocommerce ul.products li.product img {
    	border-radius: var(--te-radius-sm);
    	margin-bottom: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    	font-size: 16px;
    	font-weight: 700;
    	color: var(--te-color-ink);
    	margin: 8px 0 4px;
}

.woocommerce ul.products li.product .price {
    	color: var(--te-color-accent-dark);
    	font-weight: 700;
}

.woocommerce ul.products li.product .price del {
    	color: var(--te-color-muted);
    	opacity: 0.7;
    	font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    	text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
    	display: inline-block;
    	margin-top: 12px;
    	padding: 10px 18px;
    	border-radius: var(--te-radius-sm);
    	background-color: var(--te-color-primary);
    	color: #fff;
    	font-weight: 600;
    	text-decoration: none;
    	transition: background-color 0.15s ease;
}

.woocommerce ul.products li.product .button:hover {
    	background-color: var(--te-color-primary-dark);
    	color: #fff;
}

.woocommerce span.onsale {
    	background-color: var(--te-color-accent);
    	color: #fff;
    	border-radius: var(--te-radius-sm);
    	font-weight: 700;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    	color: var(--te-color-muted);
}

.woocommerce .woocommerce-ordering select {
    	border-radius: var(--te-radius-sm);
    	border: 1px solid var(--te-color-muted);
    	padding: 6px 10px;
}

.woocommerce-breadcrumb {
    	color: var(--te-color-muted);
    	margin-bottom: 24px;
}

.woocommerce-breadcrumb a {
    	color: var(--te-color-primary);
}

.woocommerce div.product .woocommerce-product-gallery {
    	border-radius: var(--te-radius-md);
    	overflow: hidden;
}

.woocommerce div.product .product_title {
    	color: var(--te-color-ink);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    	color: var(--te-color-accent-dark);
    	font-size: 24px;
    	font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    	color: var(--te-color-muted);
    	line-height: 1.7;
    	margin: 16px 0;
}

.woocommerce div.product form.cart .quantity input.qty {
    	border: 1px solid var(--te-color-muted);
    	border-radius: var(--te-radius-sm);
    	padding: 10px;
    	width: 70px;
    	text-align: center;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button {
    	background-color: var(--te-color-accent);
    	color: #fff;
    	border-radius: var(--te-radius-sm);
    	padding: 14px 32px;
    	font-weight: 700;
    	font-size: 16px;
    	border: none;
    	transition: background-color 0.15s ease, transform 0.15s ease;
}

.woocommerce div.product form.cart .single_add_to_cart_button.button:hover {
    	background-color: var(--te-color-accent-dark);
    	transform: translateY(-1px);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    	color: var(--te-color-ink);
    	font-weight: 600;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    	color: var(--te-color-primary);
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    	border-radius: var(--te-radius-sm);
    	box-shadow: var(--te-shadow-sm);
}

.woocommerce .related.products > h2,
.woocommerce .upsells.products > h2 {
    	font-size: clamp(20px, 3vw, 28px);
    	color: var(--te-color-ink);
    	margin-bottom: 24px;
}

.woocommerce table.shop_table {
    	border-collapse: collapse;
    	width: 100%;
    	border: none;
    	border-radius: var(--te-radius-md);
    	overflow: hidden;
    	box-shadow: var(--te-shadow-sm);
}

.woocommerce table.shop_table th {
    	background-color: var(--te-color-surface-alt);
    	color: var(--te-color-ink);
    	padding: 14px;
    	text-align: left;
}

.woocommerce table.shop_table td {
    	padding: 14px;
    	border-top: 1px solid var(--te-color-surface-alt);
    	vertical-align: middle;
}

.woocommerce table.shop_table td.product-remove a {
    	color: var(--te-color-accent-dark);
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    	border: 1px solid var(--te-color-muted);
    	border-radius: var(--te-radius-sm);
    	padding: 10px;
}

.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart .cart-collaterals .checkout-button,
.woocommerce a.checkout-button {
    	background-color: var(--te-color-primary);
    	color: #fff;
    	border-radius: var(--te-radius-sm);
    	padding: 14px 24px;
    	font-weight: 700;
    	text-decoration: none;
    	display: inline-block;
}

.woocommerce-cart table.cart td.actions .button:hover,
.woocommerce-cart .cart-collaterals .checkout-button:hover,
.woocommerce a.checkout-button:hover {
    	background-color: var(--te-color-primary-dark);
    	color: #fff;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    	background-color: var(--te-color-surface-alt);
    	border-radius: var(--te-radius-md);
    	padding: 24px;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
    	color: var(--te-color-ink);
}

.woocommerce form .form-row label {
    	color: var(--te-color-ink);
    	font-weight: 600;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce-checkout select {
    	border: 1px solid var(--te-color-muted);
    	border-radius: var(--te-radius-sm);
    	padding: 10px 12px;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout-review-order {
    	background-color: var(--te-color-surface-alt);
    	border-radius: var(--te-radius-md);
    	padding: 24px;
}

.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
    	border-top: 1px solid rgba(15, 30, 26, 0.08);
}

.woocommerce-checkout #payment div.payment_box {
    	background-color: var(--te-color-surface);
    	border-radius: var(--te-radius-sm);
    	color: var(--te-color-muted);
}

.woocommerce-checkout #payment div.payment_box::before {
    	border-bottom-color: var(--te-color-surface);
}

.woocommerce #place_order,
.woocommerce-checkout #payment #place_order {
    	background-color: var(--te-color-accent);
    	color: #fff;
    	border-radius: var(--te-radius-sm);
    	padding: 16px 32px;
    	font-weight: 700;
    	font-size: 16px;
    	border: none;
    	width: 100%;
}

.woocommerce #place_order:hover {
    	background-color: var(--te-color-accent-dark);
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
    	background-color: var(--te-color-surface-alt);
    	border-left: 4px solid var(--te-color-primary);
    	padding: 20px;
    	border-radius: var(--te-radius-sm);
    	color: var(--te-color-ink);
    	font-weight: 600;
}

.woocommerce-order-received ul.woocommerce-order-overview {
    	background-color: var(--te-color-surface);
    	border-radius: var(--te-radius-md);
    	box-shadow: var(--te-shadow-sm);
    	padding: 24px;
    	list-style: none;
}

.woocommerce-order-received ul.woocommerce-order-overview li {
    	border: none;
    	padding: 6px 0;
}

.woocommerce-message,
.woocommerce-info {
    	border-top-color: var(--te-color-primary);
}

.woocommerce-message::before,
.woocommerce-info::before {
    	color: var(--te-color-primary);
}

.woocommerce-error {
    	border-top-color: var(--te-color-accent-dark);
}

.woocommerce-error::before {
    	color: var(--te-color-accent-dark);
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    	border-radius: var(--te-radius-sm);
    	color: var(--te-color-ink);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    	background-color: var(--te-color-primary);
    	color: #fff;
}

@media (max-width: 480px) {
    	.woocommerce ul.products {
            		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            		gap: 16px;
    }
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    	overflow: visible;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    	overflow: visible !important;
}

/* ========================================================================
   Blog - Archive / Category listing & Single post styling
   ======================================================================== */

.loop-entry.entry {
    	border-radius: var(--te-radius-md);
    	overflow: hidden;
    	box-shadow: var(--te-shadow-sm);
    	transition: box-shadow 0.15s ease, transform 0.15s ease;
    	background-color: var(--te-color-surface);
}
.loop-entry.entry:hover {
    	box-shadow: var(--te-shadow-md);
    	transform: translateY(-4px);
}
.loop-entry .entry-taxonomies .category-links a {
    	color: var(--te-color-accent-dark);
    	text-transform: uppercase;
    	letter-spacing: 0.04em;
    	font-size: 12px;
    	font-weight: 700;
    	text-decoration: none;
}
.loop-entry .entry-title a,
.single .entry-title {
    	color: var(--te-color-ink);
}
.loop-entry .entry-title a:hover {
    	color: var(--te-color-primary);
}
.loop-entry .post-more-link {
    	color: var(--te-color-primary);
    	font-weight: 700;
    	text-decoration: none;
}
.loop-entry .post-more-link:hover {
    	color: var(--te-color-primary-dark);
}

.single .entry-taxonomies .category-links a {
    	color: var(--te-color-accent-dark);
    	text-transform: uppercase;
    	letter-spacing: 0.04em;
    	font-size: 13px;
    	font-weight: 700;
    	text-decoration: none;
}
.single .entry-content {
    	color: var(--te-color-ink);
    	line-height: 1.8;
}
.single .entry-content h2 {
    	margin-top: 40px;
    	margin-bottom: 16px;
    	color: var(--te-color-ink);
}
.single .entry-content p {
    	margin-bottom: 20px;
    	color: var(--te-color-muted);
}
.single .entry-content blockquote {
    	border-left: 4px solid var(--te-color-accent);
    	background-color: var(--te-color-surface-alt);
    	padding: 16px 20px;
    	border-radius: var(--te-radius-sm);
    	color: var(--te-color-ink);
}

/* Table of contents (auto-generated via te_generate_toc) */
.te-toc {
    	background-color: var(--te-color-surface-alt);
    	border-left: 4px solid var(--te-color-primary);
    	border-radius: var(--te-radius-sm);
    	padding: 20px 24px;
    	margin: 0 0 32px;
}
.te-toc__title {
    	font-weight: 700;
    	color: var(--te-color-ink);
    	margin: 0 0 10px;
}
.te-toc__list {
    	margin: 0;
    	padding-left: 20px;
}
.te-toc__list li {
    	margin-bottom: 6px;
}
.te-toc__list a {
    	color: var(--te-color-primary);
    	text-decoration: none;
}
.te-toc__list a:hover {
    	color: var(--te-color-primary-dark);
    	text-decoration: underline;
}

/* Related posts (auto-generated via te_after_post_content) */
.te-related-posts {
    	margin: 48px 0 32px;
    	padding-top: 32px;
    	border-top: 1px solid #E7E3DA;
}
.te-related-posts__title {
    	font-size: 20px;
    	color: var(--te-color-ink);
    	margin: 0 0 20px;
}
.te-related-posts__grid {
    	display: grid;
    	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    	gap: 20px;
}
.te-related-posts__item {
    	display: flex;
    	flex-direction: column;
    	text-decoration: none;
    	border-radius: var(--te-radius-md);
    	overflow: hidden;
    	box-shadow: var(--te-shadow-sm);
    	background-color: var(--te-color-surface);
    	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.te-related-posts__item:hover {
    	box-shadow: var(--te-shadow-md);
    	transform: translateY(-2px);
}
.te-related-posts__thumb {
    	display: block;
    	line-height: 0;
}
.te-related-posts__thumb img {
    	width: 100%;
    	height: 140px;
    	object-fit: cover;
    	display: block;
}
.te-related-posts__item-title {
    	padding: 12px 14px;
    	font-size: 14px;
    	font-weight: 600;
    	color: var(--te-color-ink);
    	line-height: 1.4;
}

/* Shipping-forwarding cross-link banner (auto-generated via te_after_post_content) */
.te-cta-banner {
    	margin: 32px 0;
    	padding: 32px;
    	border-radius: var(--te-radius-lg);
    	background: linear-gradient(135deg, var(--te-color-primary), var(--te-color-primary-dark));
    	color: #fff;
    	text-align: center;
}
.te-cta-banner__eyebrow {
    	font-weight: 700;
    	font-size: 18px;
    	margin: 0 0 8px;
    	color: #fff;
}
.te-cta-banner__text {
    	color: rgba(255, 255, 255, 0.85);
    	margin: 0 0 20px;
}
.te-cta-banner .te-btn--primary {
    	background-color: var(--te-color-accent);
}
.te-cta-banner .te-btn--primary:hover {
    	background-color: var(--te-color-accent-dark);
}
/* ========================================================================
   Shipping-forwarding service page (배송대행)
   ======================================================================== */

.te-info-table {
	width: 100%;
	border-collapse: collapse;
	border-radius: var(--te-radius-md);
	overflow: hidden;
	box-shadow: var(--te-shadow-sm);
	margin: 24px 0;
}
.te-info-table th {
	background-color: var(--te-color-surface-alt);
	color: var(--te-color-ink);
	text-align: left;
	padding: 14px;
}
.te-info-table td {
	padding: 14px;
	border-top: 1px solid var(--te-color-surface-alt);
	color: var(--te-color-muted);
}
.te-info-table td.te-todo {
	color: var(--te-color-accent-dark);
	font-weight: 600;
}

.te-step-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 20px;
}
.te-step-list li {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: var(--te-color-surface);
	border-radius: var(--te-radius-md);
	box-shadow: var(--te-shadow-sm);
	padding: 20px;
}
.te-step-list__num {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--te-color-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.te-step-list__body strong {
	display: block;
	color: var(--te-color-ink);
	margin-bottom: 4px;
}
.te-step-list__body p {
	color: var(--te-color-muted);
	margin: 0;
}

.te-faq-item {
	border-bottom: 1px solid #E7E3DA;
	padding: 20px 0;
}
.te-faq-item:last-child {
	border-bottom: none;
}
.te-faq-item__q {
	font-weight: 700;
	color: var(--te-color-ink);
	margin: 0 0 8px;
}
.te-faq-item__a {
	color: var(--te-color-muted);
	margin: 0;
	line-height: 1.7;
}

.te-shipping-form-wrap {
	background: var(--te-color-surface);
	border-radius: var(--te-radius-lg);
	box-shadow: var(--te-shadow-md);
	padding: 32px;
	max-width: 640px;
	margin: 0 auto;
}
.te-shipping-form-wrap .wpcf7-form label {
	display: block;
	font-weight: 600;
	color: var(--te-color-ink);
	margin-bottom: 16px;
}
.te-shipping-form-wrap .wpcf7-form input[type="text"],
.te-shipping-form-wrap .wpcf7-form input[type="email"],
.te-shipping-form-wrap .wpcf7-form input[type="tel"],
.te-shipping-form-wrap .wpcf7-form input[type="url"],
.te-shipping-form-wrap .wpcf7-form input[type="number"],
.te-shipping-form-wrap .wpcf7-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	border: 1px solid var(--te-color-muted);
	border-radius: var(--te-radius-sm);
	padding: 10px 12px;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
}
.te-shipping-form-wrap .wpcf7-form input[type="file"] {
	display: block;
	margin-top: 6px;
}
.te-shipping-form-wrap .wpcf7-form textarea {
	min-height: 100px;
}
.te-shipping-form-wrap .wpcf7-form input[type="submit"] {
	background-color: var(--te-color-accent);
	color: #fff;
	border: none;
	border-radius: var(--te-radius-sm);
	padding: 14px 32px;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	width: 100%;
	transition: background-color 0.15s ease;
}
.te-shipping-form-wrap .wpcf7-form input[type="submit"]:hover {
	background-color: var(--te-color-accent-dark);
}
.te-shipping-form-wrap .wpcf7-form .wpcf7-not-valid-tip {
	color: #B3261E;
	font-size: 13px;
	margin-top: 4px;
}
.te-shipping-form-wrap .wpcf7-response-output {
	border-radius: var(--te-radius-sm);
	margin-top: 20px;
	padding: 14px;
}

/* ========================================================================
   Elementor-page appended content container (e.g. 회사소개)
   Elementor pages' .entry-content has no theme-level max-width/padding
   (Elementor manages its own boxed width internally), so content appended
   via the_content filter after Elementor's own output needs its own
   container to match Elementor's boxed width (1140px) instead of
   stretching edge-to-edge with no side padding.
   ======================================================================== */

.te-elementor-append {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
}


/* select field styling (used by 문의하기 폼's 문의 유형 field) */
.te-shipping-form-wrap .wpcf7-form select {
	display: block;
	width: 100%;
	margin-top: 6px;
	border: 1px solid var(--te-color-muted);
	border-radius: var(--te-radius-sm);
	padding: 10px 12px;
	font-family: inherit;
	font-size: 15px;
	box-sizing: border-box;
	background-color: #fff;
}

/* ========================================================================
   문의하기 (post 73) - the page's original Elementor layout has a second
   flex column that is completely empty (no content was ever added there),
   which made the visible "고객센터" info column look pinned to the left
   with a large empty gap on the right. Hiding the empty column and letting
   the visible one take a sensible centered max-width fixes the visual
   imbalance without touching the page's Elementor data.
   ======================================================================== */
.elementor-73 .elementor-element-2a6c7c8 {
	display: none !important;
}
.elementor-73 .elementor-element-9fde3ef {
	width: 100% !important;
	max-width: 1140px !important;
	margin: 0 auto !important;
	padding: 0 24px !important;
	box-sizing: border-box !important;
}


/* 문의하기 (post 73) - per user request, remove the old static "고객센터"
   info block entirely (outdated placeholder email/location, no working
   form). Hidden via CSS rather than edited in Elementor's own data to
   avoid touching the page's _elementor_data (risk of corruption); the
   real, working inquiry form appended below (#contact-form-section)
   fully replaces this block's purpose. */
.elementor-73 .elementor-element-7527db2 {
	display: none !important;
}


/* 메인 메뉴: 쇼핑몰 / 배송대행 버튼 스타일 */
#primary-menu li.te-menu-btn {
  display: flex;
  align-items: center;
}
#primary-menu li.te-menu-btn > a {
  background-color: var(--te-color-accent);
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 999px;
  font-weight: 600;
  transition: background-color 0.15s ease;
}
#primary-menu li.te-menu-btn > a:hover,
#primary-menu li.te-menu-btn > a:focus {
  background-color: var(--te-color-accent-dark);
  color: #fff !important;
}


/* 히어로 2단 레이아웃 + 일러스트 */
.te-hero__inner {
	display: flex;
	align-items: center;
	gap: 48px;
	flex-wrap: wrap;
	max-width: 1420px;
	margin: 0 auto;
}
.te-hero__content {
	flex: 1 1 460px;
	max-width: 640px;
	min-width: 280px;
}
.te-hero__media {
	flex: 1 1 260px;
	max-width: 320px;
	margin: 0 auto;
}
.te-hero__media svg {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 680px) {
	.te-hero__inner {
		flex-direction: column-reverse;
	}
	.te-hero__media {
		max-width: 220px;
	}
}

/* 카드 아이콘 뱃지 */
.te-card__icon svg {
	display: block;
	width: 56px;
	height: 56px;
}


/* Hero 재구성: 텍스트 + 실사 이미지 분할 레이아웃 (2026-07-25) */
.te-hero {
	background: var(--te-color-surface-alt);
	color: var(--te-color-ink);
}
.te-hero__subtitle {
	color: var(--te-color-muted);
}
.te-hero .te-btn--outline {
	color: var(--te-color-ink);
	border-color: var(--te-color-ink);
}
.te-hero .te-btn--outline:hover {
	background-color: rgba(31,37,35,0.08);
	color: var(--te-color-ink);
}
.te-hero__media {
	display: block;
	flex: 1 1 480px;
	max-width: 680px;
	height: 560px;
	align-self: center;
	border-radius: var(--te-radius-lg);
	overflow: hidden;
	box-shadow: var(--te-shadow-md);
}
.te-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 20%;
}
.te-hero__title {
	color: var(--te-color-ink);
}


/* 태국 정보 둘러보기: 블로그 카테고리 카드 (2026-07-25 v2, 이미지+아이콘뱃지+설명+CTA 구조) */
.te-blogcat-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}
.te-blogcat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--te-color-surface);
	border-radius: var(--te-radius-lg);
	overflow: hidden;
	box-shadow: var(--te-shadow-sm);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
}
.te-blogcat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--te-shadow-md);
}
.te-blogcat-card__media {
	aspect-ratio: 3 / 4;
	background-size: cover;
	background-position: center;
	background-color: #EFE9DD;
}
.te-blogcat-card__media--empty {
	background: linear-gradient(160deg, #F5F3EE, #E9E3D6);
}
.te-blogcat-card__body {
	padding: 20px 16px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}
.te-blogcat-card__icon {
	width: 56px;
	height: 56px;
	margin-top: -48px;
	margin-bottom: 14px;
	border-radius: 50%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.18);
	background: var(--te-color-surface);
}
.te-blogcat-card__icon svg {
	display: block;
	width: 56px;
	height: 56px;
}
.te-blogcat-card__title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 8px;
	padding-bottom: 8px;
	border-bottom: 2px solid currentColor;
}
.te-blogcat-card__desc {
	font-size: 13px;
	line-height: 1.5;
	color: var(--te-color-muted);
	margin: 0 0 16px;
	flex: 1;
}
.te-blogcat-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 8px 18px;
	border-radius: 999px;
	border: 1.5px solid currentColor;
	font-size: 13px;
	font-weight: 600;
}
.te-blogcat-card--products .te-blogcat-card__title,
.te-blogcat-card--products .te-blogcat-card__cta { color: #E2574C; }
.te-blogcat-card--shopping .te-blogcat-card__title,
.te-blogcat-card--shopping .te-blogcat-card__cta { color: #12968C; }
.te-blogcat-card--food .te-blogcat-card__title,
.te-blogcat-card--food .te-blogcat-card__cta { color: #E2861E; }
.te-blogcat-card--travel .te-blogcat-card__title,
.te-blogcat-card--travel .te-blogcat-card__cta { color: #8C5FC4; }
.te-blogcat-card--life .te-blogcat-card__title,
.te-blogcat-card--life .te-blogcat-card__cta { color: #3FA152; }
@media (max-width: 900px) {
	.te-blogcat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
	.te-blogcat-grid { grid-template-columns: repeat(2, 1fr); }
}

.te-footer-business-info {
	background: var(--te-color-primary-dark);
	padding: 30px 20px;
	text-align: center;
}
.te-footer-business-info::before {
	content: '';
	display: block;
	width: 44px;
	height: 2px;
	background: var(--te-color-accent);
	margin: 0 auto 18px;
}
.te-footer-business-info p {
	max-width: 860px;
	margin: 5px auto;
	font-size: 12.5px;
	line-height: 1.85;
	letter-spacing: 0.015em;
	color: rgba(255, 255, 255, 0.58);
}
.te-footer-business-info p:first-child {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
}
.te-footer-business-info a {
	color: var(--te-color-accent);
	text-decoration: none;
	border-bottom: 1px solid rgba(201, 123, 61, 0.45);
	padding-bottom: 1px;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.te-footer-business-info a:hover {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
	.te-footer-business-info { padding: 24px 16px; }
	.te-footer-business-info p { font-size: 11px; line-height: 1.7; }
}


/* 배송대행 요금 안내: 부피중량 박스 / 요금표 / 계산기 */
.te-volume-box {
    background: #fff;
    border: 1px solid rgba(15,92,78,0.12);
    border-radius: 12px;
    padding: 28px 20px;
    margin: 16px 0 28px;
}
.te-price-table-wrap {
    max-height: 420px;
    overflow-y: auto;
    border: 1px solid rgba(15,92,78,0.12);
    border-radius: 12px;
    margin: 16px 0 28px;
}
.te-price-table-wrap .te-info-table {
    margin: 0;
}
.te-price-table thead th {
    position: sticky;
    top: 0;
    background: var(--te-color-primary);
    color: #fff;
    z-index: 1;
}
.te-calc-box {
    background: #f9f5ee;
    border: 1px solid rgba(15,92,78,0.15);
    border-radius: 12px;
    padding: 24px 20px;
    margin: 16px 0 32px;
}
.te-calc-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}
.te-calc-inputs label {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    color: var(--te-color-ink);
    font-weight: 500;
    gap: 6px;
}
.te-calc-inputs input {
    padding: 10px 12px;
    border: 1px solid rgba(15,92,78,0.25);
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
}
.te-calc-inputs input:focus {
    outline: none;
    border-color: var(--te-color-primary);
}
.te-calc-result:empty {
    display: none;
}
.te-calc-error {
    color: #c0392b;
    font-size: 13px;
    margin-top: 12px;
}
.te-calc-note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}
@media (max-width: 600px) {
    .te-calc-inputs {
        grid-template-columns: 1fr 1fr;
    }
}
