/* Responsive Design */
@media (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}

	.section {
		padding: 4rem 0;
	}

	.search-container {
		width: 95%;
		padding: 1.5rem;
	}

	.header-search-input:focus {
		width: 280px;
	}

	/* Shop page responsive - Tablet */
	.page-title {
		font-size: 2.5rem;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	/* Cart page responsive - Tablet */
	.cart-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cart-item {
		grid-template-columns: 80px 1fr auto auto auto;
		gap: 1rem;
		padding: 1.5rem;
	}

	.item-image {
		width: 80px;
		height: 80px;
	}

	.recommended-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.checkout-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.checkout-progress {
		padding: 1.5rem;
	}

	.progress-step:not(:last-child)::after {
		right: -40%;
		width: 80%;
	}

	.success-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.success-title {
		font-size: 2.5rem;
	}

	.order-info-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.next-steps {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.account-layout {
		grid-template-columns: 250px 1fr;
		gap: 2rem;
	}

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

	.address-cards {
		grid-template-columns: 1fr;
	}

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

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

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

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

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

	.product-layout {
		gap: 2rem;
	}

	.product-info {
		padding-left: 0;
	}

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

@media (max-width: 768px) {
	.nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: block;
		margin-left: 15px;
		width: 22px;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1rem;
	}

	.section {
		padding: 3rem 0;
	}

	.section-header {
		flex-direction: column;
	}

	.section-title {
		font-size: 2rem;
	}

	.category-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-info {
		text-align: center;
	}

	.contact-item {
		flex-direction: column;
		align-items: center;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.social-links {
		justify-content: center;
	}

	.product-card {
		margin: 8px;
	}

	/* Search Mobile Styles */
	.search-container {
		width: 95%;
		padding: 1rem;
		margin: 0 10px;
	}

	.search-overlay {
		padding-top: 80px;
	}

	.search-tags {
		justify-content: center;
	}

	.search-tag {
		font-size: 0.8rem;
		padding: 0.4rem 0.8rem;
	}

	.header-search-input {
		width: 200px;
	}

	.header-search-input:focus {
		width: 220px;
	}

	/* Shop Mobile Styles - Mobile */
	.page-title {
		font-size: 2rem;
	}

	.page-header {
		padding: 5rem 0 2rem;
	}

	.shop-toolbar {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.toolbar-right {
		justify-content: space-between;
		width: 100%;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.products-grid.list-view .shop-product-card {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.products-grid.list-view .product-image {
		width: 100%;
		height: 250px;
	}

	.products-grid.list-view .product-info {
		flex-direction: column;
		align-items: stretch;
	}

	.products-grid.list-view .product-actions-bottom {
		margin-left: 0;
		margin-top: 1rem;
	}

	.products-grid.list-view .add-to-cart {
		width: 100%;
	}

	.products-grid.list-view .product-actions {
		justify-content: center;
		margin-left: 0;
		margin-top: 1rem;
	}

	/* Cart Mobile Styles */
	.cart-item {
		grid-template-columns: 1fr;
		gap: 1rem;
		text-align: center;
		padding: 1.5rem;
	}

	.item-image {
		width: 120px;
		height: 120px;
		margin: 0 auto;
	}

	.item-attributes {
		justify-content: center;
		flex-wrap: wrap;
	}

	.item-total {
		text-align: center;
	}

	.cart-actions {
		flex-direction: column;
		padding: 1.5rem;
		gap: 1.5rem;
	}

	.coupon-section {
		max-width: none;
	}

	.cart-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	.recommended-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.checkout-main {
		padding: 2rem 0;
	}

	.checkout-progress {
		flex-direction: row;
		gap: 1rem;
		padding: 1rem;
	}

	.progress-step {
		flex-direction: row;
		max-width: none;
		width: 100%;
		justify-content: center;
	}

	.progress-step:not(:last-child)::after {
		display: none;
	}

	.step-icon {
		margin-bottom: 0;
		margin-right: 1rem;
		margin-left: 0;
	}

	.checkout-section {
		padding: 1.5rem;
		padding-top: 0;
	}

	.form-row:has(.form-group.half) {
		flex-direction: column;
		gap: 0;
	}

	.form-group.half {
		margin-bottom: 1.5rem;
	}

	.order-summary,
	.payment-section {
		position: static;
	}

	.order-item {
		grid-template-columns: 50px 1fr auto;
		gap: 0.75rem;
	}

	.order-item .item-image {
		width: 50px;
		height: 50px;
	}

	.success-header {
		padding: 4rem 0 2rem;
	}

	.success-title {
		font-size: 2rem;
	}

	.success-subtitle {
		font-size: 1rem;
	}

	.success-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 1.5rem;
	}

	.success-icon i {
		font-size: 2rem;
	}

	.card-content,
	.summary-card,
	.actions-card {
		padding: 1.5rem;
	}

	.ordered-item {
		grid-template-columns: 60px 1fr auto;
		gap: 0.75rem;
	}

	.item-image {
		width: 60px;
		height: 60px;
	}

	.action-buttons {
		gap: 1.5rem;
	}

	.email-confirmation-content {
		flex-direction: column;
		text-align: center;
	}

	.account-header-content {
		flex-direction: column;
		text-align: center;
		gap: 1rem;
	}

	.user-avatar {
		width: 80px;
		height: 80px;
		font-size: 2rem;
	}

	.user-info h1 {
		font-size: 2rem;
	}

	.account-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.account-sidebar {
		display: none;
	}

	.mobile-account-nav {
		display: block;
	}

	.dashboard-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.orders-table {
		font-size: 0.85rem;
	}

	.orders-table th,
	.orders-table td {
		padding: 0.75rem 0.5rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-group {
		margin-bottom: 1.5rem;
	}

	.content-body {
		padding: 1.5rem;
	}

	.wishlist-grid {
		grid-template-columns: 1fr;
	}

	.general-header {
		padding: 4rem 0 2rem;
	}

	.page-title {
		font-size: 2.5rem;
	}

	.page-subtitle {
		font-size: 1rem;
	}

	.content-header,
	.content-body {
		padding: 1.5rem;
	}

	.content-grid,
	.content-grid.three-col {
		grid-template-columns: 1fr;
	}

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

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-group {
		margin-bottom: 1.5rem;
	}

	.tab-navigation {
		flex-wrap: wrap;
	}

	.tab-btn {
		padding: 0.75rem 1rem;
		font-size: 0.9rem;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

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

	.product-actions {
		flex-direction: column;
		gap: 1rem;
	}

	.add-to-cart {
		width: 100%;
	}

	.size-options,
	.color-options,
	.pattern-options {
		justify-content: center;
	}

	.quantity-selector {
		width: 100%;
		justify-content: center;
	}

	.cart-sidebar {
		width: 100%;
		right: -100%;
	}

	.cart-sidebar .cart-header {
		padding: 1.5rem;
	}

	.cart-sidebar .cart-item {
		padding: 1rem 1.5rem;
	}

	.cart-sidebar .cart-footer {
		padding: 1.5rem;
	}

	.product-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.product-gallery {
		position: static;
	}

	.main-image img {
		height: 400px;
	}

	.product-title {
		font-size: 2rem;
	}

	.product-features {
		justify-content: center;
		text-align: center;
	}

	.quantity-price {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}

	.cart-actions {
		flex-direction: column;
	}

	.add-to-cart-section {
		padding: 1.5rem;
	}

	.reviews-summary {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.tab-navigation {
		flex-wrap: wrap;
	}

	.tab-btn {
		flex: 1;
		padding: 0.75rem 1rem;
		min-width: 120px;
	}

	.woocommerce-message {
		padding: 0.875rem 1.25rem 0.875rem 3rem;
		font-size: 0.9rem;
		margin: 1rem 0;
	}

	.woocommerce-message::before {
		left: 1rem;
		font-size: 1rem;
		width: 20px;
		height: 20px;
	}

	.woocommerce-message.dismissible {
		padding-right: 2.5rem;
	}

	.woocommerce-message .notice-dismiss {
		right: 0.75rem;
		width: 20px;
		height: 20px;
		font-size: 0.7rem;
	}

	.woocommerce-NoticeGroup {
		margin: 1rem 0;
	}

	.woocommerce-NoticeGroup [role="alert"] {
		padding: 1.25rem 1rem 1.25rem 2.75rem;
		font-size: 0.9rem;
		border-radius: 10px;
	}

	.woocommerce-error li {
		margin-bottom: 0.6rem;
		padding-left: 1.75rem;
	}

	.woocommerce-error li::before {
		width: 16px;
		height: 16px;
		font-size: 0.8rem;
	}

	.error-content {
		gap: 1rem;
	}

	.size-chart-table {
		font-size: 0.85rem;
	}

	.size-chart-table th,
	.size-chart-table td {
		padding: 0.75rem 0.5rem;
	}

	.size-chart-header {
		padding: 1.25rem;
	}

	.size-chart-header h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.header-content {
		padding: 0.5rem 0;
	}

	.general-header {
		margin-top: 55px;
	}

	.logo {
		font-size: 1.5rem;
	}

	.hero-slide {
		height: auto;
		padding-top: 125px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.section-header {
		flex-direction: column;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.section-subtitle {
		font-size: 1rem;
	}

	.btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}

	.product-info {
		padding: 1rem;
	}

	.contact-info {
		text-align: center;
	}

	.contact-item {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
		align-items: center;
	}

	.contact-item i {
		margin: 0 auto;
	}

	.social-links {
		justify-content: center;
	}

	/* Shop Small Mobile Styles */
	.page-header {
		padding: 4rem 0 2rem;
	}

	.page-title {
		font-size: 1.8rem;
	}

	.shop-toolbar {
		padding: 1rem 0.5rem;
	}

	.results-count {
		font-size: 0.9rem;
	}

	.pagination {
		gap: 0.25rem;
	}

	.page-link {
		width: 40px;
		height: 40px;
		font-size: 0.9rem;
	}

	.shop-product-card .product-info {
		padding: 1rem;
	}

	.shop-product-card .product-title {
		font-size: 1rem;
	}

	.current-price {
		font-size: 1.2rem;
	}

	/* Cart Small Mobile Styles */
	.cart-header {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
		padding: 1.5rem;
	}

	.cart-header h2 {
		font-size: 1.3rem;
	}

	.item-name {
		font-size: 1rem;
	}

	.item-attributes {
		font-size: 0.85rem;
	}

	.summary-card {
		position: static;
	}

	.progress-step {
		flex-direction: column;
	}

	.step-icon {
		margin: 0 0 1rem;
	}

	.coupon-input {
		flex-direction: column;
	}

	.apply-coupon {
		width: 100%;
	}

	.checkout-section,
	.woocommerce-additional-fields {
		padding: 1rem;
		padding-top: 0;
	}

	.checkout-section.different-shipping-details {
		padding: 1rem;
	}

	.form-row-group {
		grid-template-columns: repeat(1, 1fr);
	}

	.form-group.half {
		margin-bottom: 0;
	}

	.order-summary,
	.payment-section,
	.woocommerce-checkout #payment.payment-section {
		padding: 1rem;
	}

	.section-title {
		font-size: 1.1rem;
	}

	.coupon-form .form-group {
		flex-direction: column;
		gap: 1rem;
	}

	.coupon-form input {
		flex: none;
	}

	.payment-method {
		padding: 0.75rem;
	}

	.payment-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.order-item {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 0.5rem;
	}

	.order-item .item-image {
		width: 60px;
		height: 60px;
		margin: 0 auto;
	}

	.success-main {
		padding: 2rem 0;
	}

	.success-title {
		font-size: 1.8rem;
	}

	.card-header,
	.card-content {
		padding: 1rem;
	}

	.summary-card,
	.actions-card {
		padding: 1rem;
	}

	.ordered-item {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 0.5rem;
	}

	.item-image {
		width: 80px;
		height: 80px;
		margin: 0 auto;
	}

	.next-step {
		padding: 1.5rem;
	}

	.account-header {
		padding: 4rem 0 2rem;
	}

	.user-info h1 {
		font-size: 1.8rem;
	}

	.dashboard-stats {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.content-header,
	.content-body {
		padding: 1rem;
	}

	.orders-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.form-actions {
		flex-direction: column;
		gap: 1rem;
	}

	.btn-save,
	.btn-cancel {
		width: 100%;
	}

	.address-card {
		padding: 1.5rem;
	}

	.address-actions {
		flex-direction: column;
	}

	.general-main {
		padding: 2rem 0;
	}

	.page-title {
		font-size: 2rem;
	}

	.content-header,
	.content-body {
		padding: 1rem;
	}

	.icon-grid {
		grid-template-columns: 1fr;
	}

	.icon-item {
		padding: 1.5rem 1rem;
	}

	.highlight-box {
		padding: 1rem;
	}

	.faq-question {
		padding: 1rem;
	}

	.faq-answer.show {
		padding: 1rem;
	}

	.product-variations {
		margin: 0.75rem 0 1rem 0;
	}

	.size-options {
		gap: 0.25rem;
	}

	.size-btn {
		padding: 0.3rem 0.6rem;
		font-size: 0.8rem;
		min-width: 35px;
	}

	.color-btn {
		width: 28px;
		height: 28px;
	}

	.pattern-btn {
		padding: 0.4rem;
		font-size: 0.75rem;
	}

	.pattern-btn img {
		width: 25px;
		height: 25px;
	}

	.cart-sidebar .cart-header h3 {
		font-size: 1.1rem;
	}

	.cart-sidebar .cart-item-name {
		font-size: 0.9rem;
	}

	.cart-sidebar .cart-item-quantity,
	.cart-sidebar .cart-item-price {
		font-size: 0.85rem;
	}

	.cart-sidebar .checkout-button {
		font-size: 0.95rem;
	}

	.product-detail-main {
		padding: 1rem 0;
	}

	.main-image img {
		height: 300px;
	}

	.product-title {
		font-size: 1.8rem;
	}

	.price-current {
		font-size: 1.5rem;
	}

	.size-options,
	.color-options {
		justify-content: center;
	}

	.cart-actions {
		gap: 0.5rem;
	}

	.add-to-cart-btn,
	.buy-now-btn {
		padding: 0.75rem 1rem;
		font-size: 1rem;
	}

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

	.share-section {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.woocommerce-message {
		padding: 0.75rem 1rem 0.75rem 2.5rem;
		font-size: 0.85rem;
		border-radius: 8px;
	}

	.woocommerce-message::before {
		left: 0.75rem;
		font-size: 0.9rem;
		width: 18px;
		height: 18px;
	}

	.woocommerce-NoticeGroup [role="alert"] {
		padding: 1rem 0.75rem 1rem 2.25rem;
		font-size: 0.85rem;
		border-radius: 8px;
		margin: 0.75rem 0;
	}

	.woocommerce-error li {
		margin-bottom: 0.5rem;
		padding-left: 1.5rem;
	}

	.woocommerce-error li::before {
		width: 14px;
		height: 14px;
		font-size: 0.75rem;
		left: 0;
	}

	.woocommerce-error li a {
		font-size: 0.85rem;
	}

	.error-content {
		display: block;
	}

	.error-illustration {
		margin-top: 20px;
	}

	.size-chart {
		margin: 1rem 0;
		border-radius: 8px;
	}

	.size-chart-table {
		font-size: 0.8rem;
	}

	.size-chart-table th,
	.size-chart-table td {
		padding: 0.625rem 0.375rem;
	}

	.size-chart-header {
		padding: 1rem;
	}

	.size-chart-header h3 {
		font-size: 1.2rem;
	}
}