/*--------------------------------------------------------------
# TinyGift Theme Styles
--------------------------------------------------------------*/

:root {
	--tg-color-pink: #f9d8e4;
	--tg-color-pink-strong: #f7c0d5;
	--tg-color-mint: #d8f5ef;
	--tg-color-beige: #f7f0e9;
	--tg-color-gold: #d4a373;
	--tg-color-cream: #fff7f4;
	--tg-color-dark: #49393b;
	--tg-color-text: #594c47;
	--tg-color-muted: #867a73;
	--tg-radius-lg: 32px;
	--tg-radius-md: 20px;
	--tg-radius-sm: 12px;
	--tg-shadow-soft: 0 20px 50px rgba(73, 57, 59, 0.1);
	--tg-shadow-card: 0 18px 40px rgba(73, 57, 59, 0.12);
	--tg-gradient-primary: linear-gradient(125deg, #f9d8e4, #d8f5ef);
	--tg-gradient-button: linear-gradient(135deg, #f7c0d5, #d8f5ef);
	--tg-gradient-button-hover: linear-gradient(135deg, #f5a6c8, #bceee3);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Poppins", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--tg-color-text);
	background-color: var(--tg-color-cream);
	line-height: 1.6;
	font-size: 16px;
}

body.nav-open {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--tg-color-gold);
	text-decoration: none;
	transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover,
a:focus {
	color: var(--tg-color-dark);
}

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	border: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.container {
	width: min(1240px, calc(100% - 40px));
	margin: 0 auto;
}

.tg-grid {
	display: grid;
	gap: 40px;
}

.tg-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}

.tg-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
}

.section-padding {
	padding: 80px 0;
}

.soft-bg {
	background: var(--tg-color-beige);
}

.tg-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 999px;
	font-weight: 600;
	background-image: var(--tg-gradient-button);
	color: var(--tg-color-dark);
	box-shadow: var(--tg-shadow-soft);
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.tg-button i {
	margin-left: 8px;
}

.tg-button:hover,
.tg-button:focus {
	transform: translateY(-2px);
	box-shadow: 0 18px 35px rgba(73, 57, 59, 0.18);
	background-image: var(--tg-gradient-button-hover);
	color: var(--tg-color-dark);
}

.tg-button.ghost {
	background: transparent;
	border: 2px solid rgba(73, 57, 59, 0.1);
	box-shadow: none;
}

.tg-button.ghost:hover {
	border-color: var(--tg-color-gold);
	color: var(--tg-color-gold);
}

.fade-up {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tg-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 247, 244, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 24px rgba(73, 57, 59, 0.05);
}

.tg-topbar {
	padding: 16px 0;
}

.tg-topbar .container {
	display: flex;
	align-items: center;
	gap: 24px;
}

.tg-branding {
	flex: 1 1 auto;
	font-size: 1.4rem;
	font-weight: 700;
}

.tg-site-title {
	color: var(--tg-color-dark);
}

.tg-nav-toggle {
	display: none;
	background: transparent;
	border: none;
	font-size: 24px;
	color: var(--tg-color-dark);
	cursor: pointer;
}

.tg-primary-nav {
	display: flex;
	flex: 2 1 auto;
	justify-content: center;
}

.tg-primary-nav ul {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 600;
}

.tg-primary-nav a {
	color: var(--tg-color-muted);
	position: relative;
	padding-bottom: 6px;
}

.tg-primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--tg-gradient-button);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.tg-primary-nav a:hover::after,
.tg-primary-nav .current-menu-item > a::after {
	transform: scaleX(1);
}

.tg-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.tg-search form {
	display: flex;
	background: #fff;
	border-radius: var(--tg-radius-sm);
	box-shadow: var(--tg-shadow-soft);
	overflow: hidden;
}

.tg-search input[type="search"] {
	border: none;
	padding: 10px 14px;
	font-size: 0.95rem;
	width: 200px;
}

.tg-search button,
.tg-search input[type="submit"] {
	display: none;
}

.tg-cart-link {
	position: relative;
	font-size: 22px;
	color: var(--tg-color-dark);
}

.tg-cart-count {
	position: absolute;
	top: -6px;
	right: -10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--tg-color-gold);
	color: #fff;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.tg-floating-cart {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: none;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: var(--tg-gradient-button);
	color: var(--tg-color-dark);
	border-radius: 999px;
	box-shadow: var(--tg-shadow-card);
}

.tg-hero {
	padding: 120px 0 80px;
	background: var(--tg-gradient-primary);
}

.tg-hero .container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: 60px;
}

.tg-hero h1 {
	font-size: clamp(2.6rem, 4vw, 3.4rem);
	margin-bottom: 16px;
	color: var(--tg-color-dark);
}

.tg-hero p {
	font-size: 1.1rem;
	margin-bottom: 28px;
	color: var(--tg-color-muted);
}

.tg-hero-card {
	width: 100%;
	padding-top: 75%;
	border-radius: var(--tg-radius-lg);
	background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent 65%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(247, 205, 222, 0.7));
	box-shadow: var(--tg-shadow-card);
	position: relative;
	overflow: hidden;
}

.tg-hero-card::after {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: calc(var(--tg-radius-lg) - 12px);
	border: 1px dashed rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
}

.section-header {
	text-align: center;
	margin-bottom: 48px;
}

.section-header h2 {
	margin-bottom: 12px;
	font-size: clamp(2rem, 3vw, 2.6rem);
	color: var(--tg-color-dark);
}

.section-header p {
	margin: 0 auto;
	max-width: 560px;
	color: var(--tg-color-muted);
}

.tg-category-card {
	padding: 36px 28px;
	border-radius: var(--tg-radius-md);
	background: #fff;
	box-shadow: var(--tg-shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.tg-category-card i {
	font-size: 28px;
	color: var(--tg-color-gold);
	margin-bottom: 16px;
}

.tg-category-card h3 {
	margin-bottom: 12px;
	color: var(--tg-color-dark);
}

.tg-category-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--tg-shadow-card);
}

.tg-category-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--tg-color-gold);
}

.products {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tg-product-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
	overflow: hidden;
	position: relative;
	min-height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tg-product-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--tg-shadow-card);
}

.tg-product-media {
	position: relative;
	overflow: hidden;
}

.tg-product-media img {
	width: 100%;
	height: auto;
	transition: transform 0.4s ease;
	object-fit: cover;
}

.tg-product-card:hover .tg-product-media img {
	transform: scale(1.06);
}

.tg-product-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: var(--tg-color-gold);
	color: #fff;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	box-shadow: var(--tg-shadow-soft);
	z-index: 2;
}

.tg-product-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.tg-product-content {
	display: flex;
	flex-direction: column;
	padding: 24px;
	gap: 12px;
	flex: 1;
}

.tg-product-title a {
	color: var(--tg-color-dark);
	font-weight: 600;
}

.tg-product-price {
	font-weight: 700;
	color: var(--tg-color-dark);
	display: flex;
	align-items: center;
	gap: 12px;
}

.tg-product-price del {
	color: var(--tg-color-muted);
	font-weight: 400;
}

.star-rating {
	font-size: 0.9rem;
	color: var(--tg-color-gold);
}

.tg-product-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: auto;
}

.tg-product-actions .button {
	flex: 1;
	text-align: center;
	padding: 12px 18px;
	border-radius: 999px;
	background-image: var(--tg-gradient-button);
	font-weight: 600;
	color: var(--tg-color-dark);
	border: none;
	transition: transform 0.3s ease;
}

.tg-product-actions .button:hover {
	transform: translateY(-2px);
}

.tg-favorite {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(248, 225, 231, 0.7);
	color: var(--tg-color-gold);
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.tg-favorite:hover {
	background: rgba(248, 225, 231, 1);
	transform: scale(1.05);
}

.tg-carousel {
	position: relative;
}

.tg-carousel-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(280px, 1fr);
	gap: 28px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding: 12px 48px;
}

.tg-carousel-track::-webkit-scrollbar {
	display: none;
}

.tg-carousel-track > * {
	scroll-snap-align: start;
}

.tg-carousel-control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #fff;
	box-shadow: var(--tg-shadow-soft);
	color: var(--tg-color-dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	z-index: 2;
}

.tg-carousel-control.prev {
	left: 0;
}

.tg-carousel-control.next {
	right: 0;
}

.tg-carousel-control:hover {
	background: var(--tg-color-pink);
}

.tg-about {
	background: #fff;
}

.tg-about .container {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 60px;
	align-items: center;
}

.tg-about-media {
	height: 420px;
	border-radius: var(--tg-radius-lg);
	background: radial-gradient(circle at 20% 20%, rgba(248, 225, 231, 0.8), transparent 70%),
		url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='dots' x='0' y='0' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='4' cy='4' r='2' fill='%23f9d8e4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='%23ffffff' width='400' height='400'/%3E%3Crect fill='url(%23dots)' width='400' height='400'/%3E%3C/svg%3E")
			repeat;
	box-shadow: var(--tg-shadow-card);
	position: relative;
}

.tg-about-media::after {
	content: "";
	position: absolute;
	inset: 24px;
	border: 2px dashed rgba(212, 163, 115, 0.3);
	border-radius: calc(var(--tg-radius-lg) - 24px);
}

.tg-about-list {
	list-style: none;
	padding: 0;
	margin: 32px 0 0;
	display: grid;
	gap: 18px;
}

.tg-about-list li {
	display: flex;
	gap: 12px;
	align-items: center;
	color: var(--tg-color-muted);
	font-weight: 600;
}

.tg-about-list i {
	color: var(--tg-color-gold);
}

.tg-newsletter {
	text-align: center;
}

.tg-newsletter-inner {
	max-width: 540px;
	margin: 0 auto;
	background: #fff;
	padding: 48px;
	border-radius: var(--tg-radius-lg);
	box-shadow: var(--tg-shadow-card);
}

.tg-newsletter-form {
	display: flex;
	gap: 16px;
	margin: 24px 0 12px;
}

.tg-newsletter-form input[type="email"] {
	flex: 1;
	padding: 14px 18px;
	border-radius: 999px;
	border: none;
	background: var(--tg-color-cream);
	font-size: 1rem;
	box-shadow: inset 0 0 0 1px rgba(73, 57, 59, 0.05);
}

.tg-newsletter-note {
	font-size: 0.9rem;
	color: var(--tg-color-muted);
}

.tg-footer {
	background: var(--tg-color-dark);
	color: rgba(255, 255, 255, 0.9);
	padding: 80px 0 40px;
}

.tg-footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}

.tg-footer .widget-title {
	color: #fff;
	margin-bottom: 16px;
	font-size: 1.2rem;
}

.tg-footer nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.tg-footer nav a {
	color: rgba(255, 255, 255, 0.75);
}

.tg-footer-social {
	list-style: none;
	display: flex;
	gap: 12px;
	padding: 0;
	margin: 16px 0 0;
}

.tg-footer-social a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #fff;
	transition: background 0.3s ease, transform 0.3s ease;
}

.tg-footer-social a:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-3px);
}

.tg-footer-bottom {
	text-align: center;
	font-size: 0.9rem;
}

.tg-shop-hero {
	padding: 120px 0 40px;
	background: var(--tg-gradient-primary);
	text-align: center;
}

.tg-shop-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(2.2rem, 3.5vw, 3rem);
	color: var(--tg-color-dark);
}

.tg-shop-layout .tg-grid {
	grid-template-columns: 300px 1fr;
	gap: 48px;
	padding: 60px 0;
}

.tg-shop-sidebar {
	background: #fff;
	padding: 32px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.tg-shop-tips {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.tg-shop-tips li {
	display: flex;
	gap: 12px;
	color: var(--tg-color-muted);
}

.tg-shop-tips i {
	color: var(--tg-color-gold);
	margin-top: 4px;
}

.tg-content-area {
	padding: 80px 0;
}

.tg-content-area .tg-grid {
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 50px;
}

.tg-main {
	min-width: 0;
}

.tg-sidebar .widget {
	background: #fff;
	padding: 24px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
	margin-bottom: 24px;
}

.tg-article {
	background: #fff;
	padding: 40px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.tg-article .entry-title a {
	color: var(--tg-color-dark);
}

.entry-thumbnail {
	margin: 24px 0;
	border-radius: var(--tg-radius-md);
	overflow: hidden;
}

.entry-meta,
.entry-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--tg-color-muted);
}

.page-header {
	margin-bottom: 40px;
}

.page-title {
	font-size: 2.4rem;
	color: var(--tg-color-dark);
}

.tg-contact-grid {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

.tg-contact-info {
	background: var(--tg-gradient-primary);
	padding: 32px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.tg-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 24px 0 36px;
	display: grid;
	gap: 12px;
}

.tg-contact-info li {
	display: flex;
	gap: 12px;
	align-items: center;
	color: var(--tg-color-dark);
	font-weight: 600;
}

.tg-contact-info i {
	color: var(--tg-color-gold);
}

.tg-contact-social {
	display: flex;
	gap: 16px;
	font-size: 20px;
}

.tg-contact-social a {
	color: var(--tg-color-dark);
}

.tg-contact-form-wrapper {
	background: #fff;
	padding: 40px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-card);
}

.tg-alert {
	padding: 16px 20px;
	border-radius: var(--tg-radius-sm);
	margin-bottom: 24px;
	font-weight: 600;
}

.tg-alert.success {
	background: rgba(216, 245, 239, 0.7);
	color: #1c6f5a;
}

.tg-alert.error {
	background: rgba(249, 216, 228, 0.7);
	color: #8b3052;
}

.tg-contact-form .form-group {
	margin-bottom: 20px;
}

.tg-contact-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
}

.tg-contact-form input,
.tg-contact-form textarea {
	width: 100%;
	padding: 14px 18px;
	border-radius: var(--tg-radius-sm);
	border: 1px solid rgba(73, 57, 59, 0.1);
	background: var(--tg-color-cream);
	font-family: inherit;
	resize: vertical;
}

.tg-404 {
	text-align: center;
	padding: 160px 0;
}

.tg-404-illustration {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.gift-box {
	position: relative;
	width: 140px;
	height: 140px;
}

.gift-box .lid,
.gift-box .box {
	position: absolute;
	left: 0;
	width: 100%;
	border-radius: 18px;
}

.gift-box .lid {
	height: 40%;
	top: 0;
	background: var(--tg-gradient-button-hover);
	box-shadow: 0 8px 16px rgba(73, 57, 59, 0.1);
}

.gift-box .box {
	height: 70%;
	bottom: 0;
	background: var(--tg-gradient-primary);
	box-shadow: var(--tg-shadow-soft);
}

.sparkle {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.8);
	animation: sparkle 1.6s infinite ease-in-out;
}

.sparkle-1 {
	top: -10px;
	left: 20px;
}

.sparkle-2 {
	top: 10px;
	right: 18px;
	animation-delay: 0.3s;
}

.sparkle-3 {
	top: -18px;
	right: 52px;
	animation-delay: 0.6s;
}

@keyframes sparkle {
	0%,
	100% {
		transform: translateY(0) scale(1);
		opacity: 0.7;
	}
	50% {
		transform: translateY(-6px) scale(1.2);
		opacity: 1;
	}
}

.tg-404 h1 {
	font-size: 2.6rem;
	color: var(--tg-color-dark);
	margin-bottom: 16px;
}

.tg-404 p {
	color: var(--tg-color-muted);
	margin-bottom: 32px;
}

.tg-404-actions {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.comments-area {
	margin-top: 48px;
	background: #fff;
	padding: 32px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comment,
.pingback {
	margin-bottom: 32px;
}

.comment-meta {
	margin-bottom: 12px;
}

.comment-content {
	color: var(--tg-color-muted);
}

.comment-respond label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.comment-respond input,
.comment-respond textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid rgba(73, 57, 59, 0.1);
	border-radius: var(--tg-radius-sm);
	background: var(--tg-color-cream);
	margin-bottom: 16px;
}

.tg-pagination .page-numbers,
.navigation .nav-links a {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--tg-shadow-soft);
	margin: 0 6px;
	color: var(--tg-color-dark);
}

.tg-pagination .current,
.tg-pagination .page-numbers:hover {
	background: var(--tg-gradient-button);
}

/* WooCommerce core adjustments */
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
	font-family: inherit;
	color: var(--tg-color-muted);
}

.woocommerce .woocommerce-pagination ul {
	border: none;
}

.woocommerce .woocommerce-pagination li {
	border: none;
	margin: 0 6px;
}

.woocommerce .woocommerce-pagination li a,
.woocommerce .woocommerce-pagination li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--tg-shadow-soft);
}

.woocommerce div.product {
	background: #fff;
	padding: 40px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.woocommerce div.product .product_title {
	font-size: 2rem;
	color: var(--tg-color-dark);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--tg-color-gold);
}

.woocommerce div.product form.cart .button {
	background-image: var(--tg-gradient-button);
	color: var(--tg-color-dark);
	border-radius: 999px;
	padding: 12px 26px;
	font-weight: 600;
	border: none;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.woocommerce div.product .summary {
	display: grid;
	gap: 20px;
}

.woocommerce-Tabs-panel {
	background: var(--tg-color-cream);
	padding: 24px;
	border-radius: var(--tg-radius-sm);
}

.woocommerce-message {
	border-top-color: var(--tg-color-gold);
}

.woocommerce-cart .cart-collaterals,
.woocommerce-checkout #customer_details {
	background: #fff;
	padding: 32px;
	border-radius: var(--tg-radius-md);
	box-shadow: var(--tg-shadow-soft);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background-image: var(--tg-gradient-button);
	color: var(--tg-color-dark);
	border-radius: 999px;
	border: none;
	font-weight: 600;
}

.woocommerce table.shop_table {
	border-radius: var(--tg-radius-sm);
	background: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	border-radius: var(--tg-radius-sm);
	border: 1px solid rgba(73, 57, 59, 0.1);
	padding: 12px 16px;
	background: var(--tg-color-cream);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-radius: var(--tg-radius-sm);
	box-shadow: var(--tg-shadow-soft);
}

/* Responsive */
@media (max-width: 1080px) {
	.tg-hero .container,
	.tg-about .container,
	.tg-shop-layout .tg-grid,
	.tg-content-area .tg-grid,
	.tg-contact-grid {
		grid-template-columns: 1fr;
	}

	.tg-sidebar {
		order: 2;
	}

	.tg-shop-sidebar {
		position: sticky;
		top: 100px;
	}

	.tg-carousel-track {
		padding: 12px 20px;
	}
}

@media (max-width: 960px) {
	.tg-primary-nav {
		position: fixed;
		inset: 0 0 0 40%;
		background: #fff;
		transform: translateX(100%);
		transition: transform 0.3s ease;
		padding: 120px 30px;
		flex-direction: column;
		justify-content: flex-start;
		box-shadow: -12px 0 30px rgba(73, 57, 59, 0.08);
	}

	.tg-primary-nav.is-active {
		transform: translateX(0);
	}

	.tg-primary-nav ul {
		flex-direction: column;
		gap: 20px;
	}

	.tg-nav-toggle {
		display: inline-flex;
	}

	.tg-search input[type="search"] {
		width: 160px;
	}
}

@media (max-width: 780px) {
	.container {
		width: min(640px, calc(100% - 32px));
	}

	.section-padding {
		padding: 60px 0;
	}

	.tg-grid-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tg-newsletter-form {
		flex-direction: column;
	}

	.tg-newsletter-form input[type="email"] {
		width: 100%;
	}

	.tg-contact-form-wrapper,
	.tg-article {
		padding: 28px;
	}
}

@media (max-width: 640px) {
	.tg-hero {
		padding: 100px 0 60px;
	}

	.tg-grid-3,
	.tg-grid-2 {
		grid-template-columns: 1fr;
	}

	.tg-header-actions {
		gap: 12px;
	}

	.tg-cart-link {
		display: none;
	}

	.tg-floating-cart {
		display: inline-flex;
	}

	.tg-article {
		padding: 24px;
	}

	.tg-carousel-track {
		padding: 12px 16px;
	}

	.tg-carousel-control {
		display: none;
	}

	.tg-newsletter-inner {
		padding: 32px 24px;
	}

	.tg-footer {
		padding: 60px 0 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.fade-up {
		opacity: 1 !important;
		transform: none !important;
	}
}

