/* Single Product page responsive & adaptive */

/* 1200px: desktops */
@media (max-width: 1200px) {
	.product-tabs {
		padding: 32px 60px;
	}
	.product-title {
		font-size: 26px;
	}
}

/* 992px: tablets landscape */
@media (max-width: 992px) {
	.product-main {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.product-image {
		max-height: 420px;
	}
	.tabs-navigation {
		gap: 16px;
	}
	.tab-button {
		padding: 12px 24px;
	}

	.product-details {
		padding: 0;
	}
}

/* 768px: tablets portrait */
@media (max-width: 768px) {
	.product-tabs {
		padding: 24px;
		border-radius: 20px;
	}
	.tab-button {
		padding: 14px 18px;
		font-size: 15px;
	}
	.tab-text {
		letter-spacing: 0.3px;
	}
	.tab-content-body {
		padding: 20px;
	}
	.product-header {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.product-title {
		font-size: 24px;
	}
	.essential-details-title {
		font-size: 18px;
	}
}

/* 576px: phones */
@media (max-width: 576px) {
	.product-tabs {
		padding: 18px;
	}
	.tabs-navigation {
		flex-direction: column;
		gap: 12px;
	}
	.tab-button {
		padding: 14px 16px;
		border-radius: 16px;
		font-size: 14px;
	}
	.tab-button.active::after {
		display: none;
	}
	.tab-content-body {
		padding: 16px;
		font-size: 15px;
	}
	.product-image {
		max-height: 360px;
	}
	.detail-item {
		padding: 6px 0;
	}
	.detail-label,
	.detail-value {
		font-size: 13px;
	}

	.hero-section-component::after {
        border-radius:  25px 25px 0px 0px !important;
    }

    .footer-side::after {
        border-radius: 0px 0px 25px 25px;
    }
}

/* 400px: very small phones */
@media (max-width: 400px) {
	.product-title {
		font-size: 22px;
	}
	.tab-button {
		padding: 12px 14px;
	}
} 