/* ========================================
   RESPONSIVE - Breakpoints & Adjustments
   ======================================== */

/* ========================================
   BASE RESPONSIVE
   ======================================== */

@media (max-width: 1280px) {
	:root {
		--container-xl: 1200px;
	}
}

@media (max-width: 1024px) {
	:root {
		--container-xl: 1200px;
	}

	.container {
		padding-left: var(--space-lg);
		padding-right: var(--space-lg);
	}

	.section {
		padding: var(--space-3xl) 0;
	}
}

@media (max-width: 768px) {
	:root {
		--text-xl: 1.125rem;
		--gutter: 1rem;
		--space-4xl: 4rem;
	}

	.section {
		padding: var(--space-2xl) 0;
	}

	.container {
		padding-left: var(--space-md);
		padding-right: var(--space-md);
	}

	.section {
		padding: var(--space-xl) var(--space-md);
	}

	.entry-content,
	.entry-summary {
		padding-left: var(--space-md);
		padding-right: var(--space-md);
	}
}

@media (max-width: 480px) {
	:root {
		--text-base: 0.9375rem;
		--text-lg: 1rem;
		--text-md: 1rem;
		--space-4xl: 3rem;
		--space-3xl: 2.5rem;
	}

	.section {
		padding: var(--space-xl) var(--space-sm);
	}

	.container {
		padding-left: var(--space-sm);
		padding-right: var(--space-sm);
	}

	.section {
		padding-left: var(--space-sm);
	}
}

/* ========================================
   HEADER RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
	.header-inner {
		padding: var(--space-md);
	}

	#primary-menu {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex !important;
		position: relative !important;
		z-index: 9999999 !important;
		pointer-events: auto !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
}

@media (max-width: 768px) {
	.site-header {
		position: relative;
	}

	.header-inner {
		padding: var(--space-sm) var(--space-md);
	}

	.custom-logo {
		max-height: 48px;
	}

	.header-actions {
		gap: var(--space-md);
	}
}

@media (max-width: 480px) {
	.custom-logo {
		max-height: 40px;
	}

	.header-actions {
		gap: var(--space-sm);
	}

	.cart-link span:not(.cart-count) {
		display: none;
	}
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
	.site-footer .widget-area {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-xl);
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: var(--space-2xl) 0 var(--space-lg);
	}

	.site-footer .widget-area {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}
}

@media (max-width: 480px) {
	.site-footer .widget-area {
		text-align: center;
	}

	.site-footer h3 {
		text-align: center;
	}

	#footer-menu {
		flex-direction: column;
		gap: var(--space-md);
	}
}

/* ========================================
    NAVIGATION RESPONSIVE
    ======================================== */

@media (min-width: 1025px) {
	.main-navigation .sub-menu {
		display: block;
	}
}

@media (max-width: 1024px) {

	/* ========================================
	   DISABLE DESKTOP MEGA MENU ON MOBILE
	======================================= */

	.main-navigation .menu-item.mega-menu > .sub-menu {
		display: none !important;
		position: static !important;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: none !important;
	}

	.main-navigation .menu-item.mega-menu::after {
		display: none !important;
	}

	/* Disable ALL hover-triggered menus on mobile */
	#primary-menu > li:not(.mega-menu) > .sub-menu {
		display: none !important;
		pointer-events: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		transform: none !important;
	}

	/* Disable hover focus states on mobile */
	#primary-menu > li:hover > .sub-menu,
	#primary-menu > li:focus-within > .sub-menu,
	.main-navigation .mega-menu-dropdown {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		transform: none !important;
	}

	.main-navigation {
		display: none !important;
	}

	/* Disable sticky on mobile to prevent stacking conflicts */
	.site-header.sticky {
		position: relative !important;
	}

	/* ========================================
	   MOBILE NAVIGATION - CLEAN ACCORDION
	======================================= */

	.mobile-navigation {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: var(--color-white);
		z-index: 9998;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		pointer-events: none;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.mobile-navigation.active {
		pointer-events: auto;
		opacity: 1;
		visibility: visible;
	}

	.mobile-navigation-inner {
		padding: 80px 24px 40px;
		position: relative;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
	}

	/* Close Button */
	.mobile-menu-close {
		position: absolute;
		top: var(--space-lg);
		right: var(--space-lg);
		width: 48px;
		height: 48px;
		background: none;
		border: none;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 10;
	}

	.mobile-menu-close::before,
	.mobile-menu-close::after {
		content: '';
		position: absolute;
		width: 24px;
		height: 2px;
		background-color: var(--color-text);
	}

	.mobile-menu-close::before {
		transform: rotate(45deg);
	}

	.mobile-menu-close::after {
		transform: rotate(-45deg);
	}

	/* Menu Header */
	.mobile-menu-header {
		margin-bottom: 32px;
	}

	.mobile-menu-label {
		font-size: 11px;
		text-transform: uppercase;
		letter-spacing: 0.2em;
		color: var(--color-text-muted);
	}

	/* Mobile Menu List */
	.mobile-menu {
		list-style: none;
		margin: 0;
		padding: 0;
		flex: 1;
	}

	.mobile-menu li {
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}

	/* Common Item Style */
	.mobile-menu li a,
	.mobile-menu li .mobile-submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 18px 0;
		text-decoration: none;
		border-bottom: 1px solid rgba(91, 76, 66, 0.06);
		transition: all 0.2s ease;
		background: none;
		border-left: none;
		border-right: none;
		border-top: none;
		text-align: left;
		cursor: pointer;
	}

	/* Level 1 */
	.mobile-menu > li > a,
	.mobile-menu > li > .mobile-submenu-toggle {
		font-size: 16px;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: var(--color-text);
	}

	.mobile-menu-link-text {
		flex: 1;
	}

	.mobile-menu-link-text {
		flex: 1;
	}

	/* Level 2 */
	.mobile-submenu > li > a,
	.mobile-submenu > li > .mobile-submenu-toggle {
		padding-left: 20px;
		font-size: 15px;
		font-weight: 400;
		color: var(--color-text-muted);
	}

	/* Level 3 */
	.mobile-submenu .mobile-submenu > li > a {
		padding-left: 40px;
		font-size: 14px;
		color: var(--color-text-muted);
	}

	/* Active State Spacing */
	.mobile-menu li.active > a,
	.mobile-menu li.active > .mobile-submenu-toggle {
		color: var(--golden-brown);
		border-bottom-color: rgba(139, 105, 20, 0.2);
	}

	/* Submenu Panel */
	.mobile-submenu {
		display: block;
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		background-color: rgba(91, 76, 66, 0.02);
	}

	/* Indicator */
	.mobile-submenu-indicator {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 24px;
		height: 24px;
		transition: transform 0.3s ease;
		opacity: 0.5;
	}

	li.active > .mobile-submenu-toggle .mobile-submenu-indicator {
		transform: rotate(180deg);
		opacity: 1;
	}

	/* ========================================
	   MOBILE MENU FOOTER
	======================================= */

	/* Footer Info in Menu */
	.mobile-menu-footer {
		margin-top: 40px;
		padding-top: 30px;
		border-top: 1px solid rgba(91, 76, 66, 0.06);
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.mobile-menu-account,
	.mobile-menu-search {
		display: flex;
		align-items: center;
		gap: 12px;
		font-size: 14px;
		color: var(--color-text);
		text-transform: uppercase;
		letter-spacing: 0.1em;
	}

	.mobile-menu-account svg,
	.mobile-menu-search svg {
		opacity: 0.6;
	}

	.mobile-menu-empty {
		text-align: center;
		padding: 40px 0;
		color: var(--color-text-muted);
	}

	/* Body Lock */
	body.menu-open {
		overflow: hidden;
	}
}

@media (max-width: 480px) {
	.mobile-navigation-inner {
		padding: var(--space-xl) var(--space-md);
	}

	.mobile-menu-close {
		top: var(--space-md);
		right: var(--space-md);
	}
}

/* ========================================
   GRID RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
	.grid,
	.card-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.card-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.grid,
	.card-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	.card-grid--4,
	.card-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.row {
		margin-left: calc(var(--space-md) * -0.5);
		margin-right: calc(var(--space-md) * -0.5);
	}

	.col {
		padding-left: calc(var(--space-md) * 0.5);
		padding-right: calc(var(--space-md) * 0.5);
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}
}

@media (max-width: 480px) {
	.grid,
	.card-grid {
		grid-template-columns: 1fr;
	}

	.row {
		margin-left: 0;
		margin-right: 0;
	}

	.col {
		padding-left: 0;
		padding-right: 0;
	}

	.col:not(:last-child) {
		margin-bottom: var(--space-md);
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   ARCHIVE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.archive-header {
		padding: var(--space-xl) 0;
	}

	.archive-title {
		font-size: var(--text-2xl);
	}

	.archive-description {
		font-size: var(--text-base);
	}

	.archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.archive-filters {
		flex-wrap: wrap;
		gap: var(--space-sm);
	}

	.archive-pagination {
		margin-top: var(--space-2xl);
	}
}

@media (max-width: 480px) {
	.archive-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
   SINGLE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.single-header {
		padding: var(--space-2xl) 0;
	}

	.single-header .entry-title {
		font-size: var(--text-2xl);
	}

	.single-meta {
		flex-direction: column;
		gap: var(--space-sm);
	}

	.single-thumbnail {
		margin-bottom: var(--space-xl);
	}

	.single-content .entry-content p {
		font-size: var(--text-base);
	}

	.post-navigation {
		flex-direction: column;
		gap: var(--space-lg);
	}

	.post-navigation .nav-previous,
	.post-navigation .nav-next {
		max-width: 100%;
		text-align: left;
	}
}

@media (max-width: 480px) {
	.single-header .entry-title {
		font-size: var(--text-xl);
	}

	.comment-body {
		flex-direction: column;
		gap: var(--space-sm);
	}

	.children {
		padding-left: var(--space-md);
	}
}

/* ========================================
   WOOCOMMERCE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}

	.woocommerce div.product {
		display: flex;
		flex-direction: column;
	}

	.woocommerce div.product div.images {
		margin-bottom: var(--space-lg);
	}

	.woocommerce div.product div.summary {
		margin-bottom: 0;
	}

	.woocommerce div.product .product_title {
		font-size: var(--text-2xl);
	}

	.woocommerce-tabs .tabs {
		flex-direction: column;
		border-bottom: none;
	}

	.woocommerce-tabs .tabs li {
		border: 1px solid var(--color-border);
		border-radius: var(--radius-sm);
		margin-bottom: var(--space-sm);
	}

	.woocommerce-tabs .tabs li a {
		padding: var(--space-sm) var(--space-md);
	}

	.woocommerce-tabs .tabs li.active::after {
		display: none;
	}

	.woocommerce table.shop_table {
		font-size: var(--text-xs);
	}

	.woocommerce table.shop_table th,
	.woocommerce table.shop_table td {
		padding: var(--space-sm);
	}
}

@media (max-width: 480px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.woocommerce-message,
	.woocommerce-info,
	.woocommerce-error {
		padding: var(--space-sm) var(--space-md);
		font-size: var(--text-xs);
	}

	.quantity input.qty {
		width: 40px;
	}

	.woocommerce table.shop_table thead {
		display: none;
	}

	.woocommerce table.shop_table tbody tr {
		display: block;
		border-bottom: 1px solid var(--color-border);
	}

	.woocommerce table.shop_table tbody td {
		display: flex;
		justify-content: space-between;
		text-align: right;
	}

	.woocommerce table.shop_table tbody td::before {
		content: attr(data-title);
		font-weight: 500;
	}
}

/* ========================================
   CART RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.woocommerce-cart table.cart .product-thumbnail {
		display: none;
	}

	.woocommerce-cart .coupon {
		flex-direction: column;
		width: 100%;
	}

	.woocommerce-cart .coupon input[type="text"] {
		max-width: 100%;
		width: 100%;
	}

	.woocommerce-cart .cart-collaterals .cart_totals {
		padding: var(--space-md);
	}
}

/* ========================================
   CHECKOUT RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.woocommerce-checkout #order_review {
		padding: var(--space-md);
	}

	.woocommerce-checkout .form-row-first,
	.woocommerce-checkout .form-row-last {
		float: none;
		width: 100%;
	}
}

/* ========================================
   MY ACCOUNT RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.woocommerce-account .u-columns.cols-2 {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .u-columns.cols-2 nav {
		border-right: none;
		padding-right: 0;
		padding-bottom: var(--space-lg);
		border-bottom: 1px solid var(--color-border);
		margin-bottom: var(--space-lg);
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		float: none;
		width: 100%;
		margin-bottom: var(--space-lg);
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		margin-left: 0;
		padding: var(--space-md);
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		gap: var(--space-sm);
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul li {
		margin-bottom: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
		padding: var(--space-xs) var(--space-sm);
		border: 1px solid var(--color-border);
		border-radius: var(--radius-sm);
		font-size: var(--text-xs);
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		padding: var(--space-md);
	}

	.woocommerce-account .woocommerce-MyAccount-content .col-1,
	.woocommerce-account .woocommerce-MyAccount-content .col-2 {
		float: none;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
		padding: var(--space-sm) var(--space-md);
	}
}

@media (max-width: 480px) {
	.woocommerce-account .woocommerce-form {
		padding: var(--space-md);
		border: none;
	}

	.woocommerce-order-received .woocommerce-columns {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.woocommerce-order-received .order_details {
		flex-direction: column;
		align-items: center;
	}

	.woocommerce-order-received .order_details li {
		width: 100%;
		max-width: 280px;
	}
}

/* ========================================
   UTILITY RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
	.hide-tablet {
		display: none !important;
	}

	.show-tablet {
		display: block !important;
	}

	.show-tablet-flex {
		display: flex !important;
	}

	.text-center-tablet {
		text-align: center;
	}

	.mb-lg-tablet {
		margin-bottom: var(--space-lg);
	}

	.mt-lg-tablet {
		margin-top: var(--space-lg);
	}

	.flex-wrap-tablet {
		flex-wrap: wrap;
	}
}

@media (max-width: 480px) {
	.hide-mobile {
		display: none !important;
	}

	.show-mobile {
		display: block !important;
	}

	.show-mobile-flex {
		display: flex !important;
	}

	.text-center-mobile {
		text-align: center;
	}

	.mb-lg-mobile {
		margin-bottom: var(--space-lg);
	}
}

/* ========================================
    HOMEPAGE RESPONSIVE
    ======================================== */

@media (max-width: 1024px) {
	.home-hero-inner {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.home-hero-content {
		order: 2;
		text-align: center;
	}

	.home-hero-title {
		font-size: var(--text-4xl);
	}

	.home-hero-ctas {
		justify-content: center;
	}

	.home-hero-image {
		order: 1;
		max-width: 500px;
		margin: 0 auto;
	}

	.home-brand-story-inner {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.home-brand-story-image {
		max-width: 500px;
		margin: 0 auto;
	}

	.home-brand-story-content {
		padding-left: 0;
		text-align: center;
	}

	.home-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.home-collections-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.collection-card-large {
		grid-column: span 2;
		grid-row: span 1;
	}

	.home-process-timeline {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-xl);
	}

	.process-step:nth-child(4),
	.process-step:nth-child(5) {
		display: none;
	}

	.process-step-connector {
		display: none;
	}

	.home-featured-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.home-hero {
		padding: var(--space-3xl) 0;
		min-height: auto;
	}

	.home-hero-title {
		font-size: var(--text-3xl);
	}

	.home-hero-subtitle {
		font-size: var(--text-base);
	}

	.home-hero-image-secondary {
		display: none;
	}

	.home-brand-story {
		padding: var(--space-3xl) 0;
	}

	.home-brand-story-title {
		font-size: var(--text-2xl);
	}

	.home-brand-story-text p {
		font-size: var(--text-base);
	}

	.home-services {
		padding: var(--space-3xl) 0;
	}

	.home-services-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.home-collections {
		padding: var(--space-3xl) 0;
	}

	.home-collections-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	.collection-card-large {
		grid-column: span 2;
	}

	.collection-card-content {
		opacity: 1;
		background: linear-gradient(to top, rgba(61, 50, 41, 0.6) 0%, transparent 70%);
	}

	.home-process {
		padding: var(--space-3xl) 0;
	}

	.home-process-timeline {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.process-step {
		padding-top: 0;
		padding-left: var(--space-xl);
		text-align: left;
	}

	.process-step-number {
		left: 0;
		transform: none;
		font-size: var(--text-2xl);
	}

	.process-step-connector {
		display: block;
		top: 20px;
		left: 20px;
		width: 1px;
		height: calc(100% - 20px);
	}

	.home-sustainability {
		padding: var(--space-3xl) 0;
	}

	.home-featured {
		padding: var(--space-3xl) 0;
	}

	.home-featured-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}
}

@media (max-width: 480px) {
	.home-hero-inner {
		padding: 0 var(--space-sm);
	}

	.home-hero-title {
		font-size: var(--text-2xl);
	}

	.home-hero-ctas {
		flex-direction: column;
	}

	.home-hero-ctas .btn {
		width: 100%;
	}

	.home-collections-grid {
		grid-template-columns: 1fr;
	}

	.collection-card-large {
		grid-column: span 1;
		aspect-ratio: 16 / 9;
	}

}

/* ========================================
    WOOCOMMERCE SINGLE PRODUCT RESPONSIVE
    ======================================== */

@media (max-width: 1024px) {
	.product-gallery-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.product-gallery-thumbnails {
		flex-direction: row;
		justify-content: center;
	}

	.product-gallery-thumb {
		width: 80px;
		height: 80px;
	}

	.product-summary-content {
		max-width: 100%;
	}

	.product-title {
		font-size: var(--text-3xl);
	}

	.add-to-cart-options {
		flex-direction: column;
		align-items: stretch;
	}

	.specifications-grid {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.product-story-grid {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.product-story-image {
		max-width: 500px;
		margin: 0 auto;
	}

	.product-story-content {
		padding-left: 0;
		text-align: center;
	}

	.product-story-features {
		align-items: center;
	}

	.story-feature {
		text-align: left;
	}

	.product-process-timeline {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-lg);
	}

	.process-step-item:nth-child(4),
	.process-step-item:nth-child(5) {
		display: none;
	}

	.process-step-connector {
		display: none;
	}

	.product-cta-options {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.related-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-lg);
	}
}

@media (max-width: 768px) {
	.product-gallery-section,
	.product-summary-section,
	.product-specifications-section,
	.product-story-section,
	.product-process-section,
	.product-faq-section,
	.product-related-section,
	.product-cta-section {
		padding: var(--space-3xl) 0;
	}

	.product-title {
		font-size: var(--text-2xl);
	}

	.product-price-box {
		flex-wrap: wrap;
	}

	.price-amount {
		font-size: var(--text-2xl);
	}

	.product-meta-info {
		flex-direction: column;
		gap: var(--space-md);
	}

	.product-inquiry-ctas {
		flex-direction: column;
	}

	.product-inquiry-ctas .btn {
		width: 100%;
		justify-content: center;
	}

	.btn-consultation {
		margin-left: 0;
	}

	.product-process-timeline {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.process-step-item {
		padding-top: 0;
		padding-left: var(--space-xl);
		text-align: left;
	}

	.process-step-item .process-step-number {
		left: 0;
		transform: none;
		font-size: var(--text-2xl);
	}

	.process-step-connector {
		display: block;
		top: 15px;
		left: 15px;
		width: 1px;
		height: calc(100% - 15px);
	}

	.product-faq-question {
		font-size: var(--text-base);
	}

	.related-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	.product-cta-title {
		font-size: var(--text-2xl);
	}

	.product-cta-text {
		font-size: var(--text-base);
	}
}

@media (max-width: 480px) {
	.product-gallery-main {
		aspect-ratio: 3 / 4;
	}

	.product-gallery-thumbnails {
		gap: var(--space-sm);
	}

	.product-gallery-thumb {
		width: 60px;
		height: 60px;
	}

	.related-products-grid {
		grid-template-columns: 1fr;
	}
}

/* ========================================
    WOOCOMMERCE ARCHIVE RESPONSIVE
    ======================================== */

@media (max-width: 1024px) {
	.archive-toolbar-inner {
		flex-direction: column;
		gap: var(--space-md);
	}

	.archive-toolbar-left,
	.archive-toolbar-center,
	.archive-toolbar-right {
		width: 100%;
		text-align: center;
	}

	.archive-toolbar-center {
		order: -1;
	}

	.archive-category-filters {
		justify-content: center;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-lg);
	}
}

@media (max-width: 768px) {
	.archive-header-ecommerce {
		padding: var(--space-2xl) 0;
	}

	.archive-title {
		font-size: var(--text-3xl);
	}

	.archive-description {
		font-size: var(--text-base);
	}

	.archive-toolbar {
		padding: var(--space-md) 0;
	}

	.archive-category-filters {
		gap: var(--space-sm);
	}

	.archive-filter-link {
		font-size: var(--text-xs);
		padding: var(--space-xs) var(--space-sm);
	}

	.archive-sorting {
		flex-wrap: wrap;
		justify-content: center;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-md);
	}

	.product-card-info {
		padding: var(--space-md);
	}

	.product-card-category,
	.product-card-title,
	.product-card-price {
		font-size: var(--text-sm);
	}

	.woocommerce-pagination {
		margin-top: var(--space-2xl);
		padding-top: var(--space-xl);
	}
}

@media (max-width: 480px) {
	.archive-header-ecommerce {
		padding: var(--space-xl) 0;
	}

	.archive-breadcrumb ol {
		flex-wrap: wrap;
		justify-content: center;
	}

	.archive-title {
		font-size: var(--text-2xl);
	}

	.archive-toolbar-center {
		display: none;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
		gap: var(--space-md);
	}

	.product-card-image {
		aspect-ratio: 3 / 4;
	}

	.woocommerce-pagination a,
	.woocommerce-pagination span {
		min-width: 32px;
		height: 32px;
		font-size: var(--text-xs);
	}
}

/* ========================================
    SERVICE PAGE RESPONSIVE
    ======================================== */

@media (max-width: 1024px) {
	.service-hero-inner {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.service-hero-content {
		order: 2;
		text-align: center;
	}

	.service-hero-title {
		font-size: var(--text-4xl);
	}

	.service-hero-ctas {
		justify-content: center;
	}

	.service-hero-image {
		order: 1;
	}

	.service-intro-inner {
		grid-template-columns: 1fr;
		gap: var(--space-2xl);
	}

	.service-intro-image {
		max-width: 500px;
		margin: 0 auto;
	}

	.service-intro-content {
		padding-left: 0;
		text-align: center;
	}

	.service-intro-values {
		justify-content: center;
	}

	.service-process-timeline {
		grid-template-columns: repeat(3, 1fr);
	}

	.process-item:nth-child(4),
	.process-item:nth-child(5),
	.process-item:nth-child(6) {
		display: none;
	}

	.process-item::after {
		display: none;
	}

	.service-techniques-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-materials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 200px);
	}

	.gallery-item-large {
		grid-column: span 2;
		grid-row: span 1;
	}

	.service-cta-options {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}
}

@media (max-width: 768px) {
	.service-hero {
		padding: var(--space-3xl) 0;
		min-height: auto;
	}

	.service-hero-title {
		font-size: var(--text-3xl);
	}

	.service-hero-subtitle {
		font-size: var(--text-base);
	}

	.service-intro {
		padding: var(--space-3xl) 0;
	}

	.service-intro-title {
		font-size: var(--text-2xl);
	}

	.service-intro-values {
		flex-wrap: wrap;
		gap: var(--space-lg);
	}

	.intro-value {
		flex: 1;
		min-width: 100px;
	}

	.service-process {
		padding: var(--space-3xl) 0;
	}

	.service-process-timeline {
		grid-template-columns: 1fr;
		gap: var(--space-xl);
	}

	.process-item {
		padding-top: 0;
		padding-left: var(--space-xl);
		text-align: left;
	}

	.process-item::before {
		left: 0;
		transform: none;
	}

	.process-item-step {
		left: 0;
		transform: none;
	}

	.process-item::after {
		display: block;
		top: 20px;
		left: 20px;
		width: 1px;
		height: calc(100% - 20px);
	}

	.service-techniques {
		padding: var(--space-3xl) 0;
	}

	.service-techniques-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.service-materials {
		padding: var(--space-3xl) 0;
	}

	.service-materials-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}

	.service-gallery {
		padding: var(--space-3xl) 0;
	}

	.service-gallery-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: var(--space-md);
	}

	.gallery-item {
		aspect-ratio: 4 / 3;
	}

	.gallery-item-large,
	.gallery-item-medium,
	.gallery-item-small {
		grid-column: span 1;
		grid-row: span 1;
	}

	.service-cta {
		padding: var(--space-3xl) 0;
	}

	.service-cta-title {
		font-size: var(--text-2xl);
	}

	.service-cta-text {
		font-size: var(--text-base);
	}
}

@media (max-width: 480px) {
	.service-hero-inner {
		padding: 0 var(--space-sm);
	}

	.service-hero-title {
		font-size: var(--text-2xl);
	}

	.service-hero-ctas {
		flex-direction: column;
	}

	.service-hero-ctas .btn {
		width: 100%;
	}

	.service-breadcrumb ol {
		flex-wrap: wrap;
	}
}

/* ========================================
   SERVICE PAGE RESPONSIVE
======================================== */

@media (max-width:991px){

	.service-materials-grid{
		grid-template-columns:1fr 1fr;
	}

	.service-gallery-grid{
		grid-template-columns:1fr 1fr;
	}

	.process-item{
		grid-template-columns:80px 1fr;
		gap:24px;
	}
}

@media (max-width:767px){

	.service-materials-grid{
		grid-template-columns:1fr;
	}

	.service-gallery-grid{
		grid-template-columns:1fr;
	}

	.service-process-timeline{
		gap:40px;
	}

	.process-item{
		grid-template-columns:1fr;
	}

	.process-item-step::after{
		display:none;
	}

	.step-number{
		font-size:40px;
	}

	.service-cta{
		padding:100px 0;
	}

	.service-cta-content{
		font-size:18px;
	}
}