/* Pricing Page Styles */

/* Mobile Menu */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
}

.hamburger-line {
	width: 30px;
	height: 3px;
	background-color: #000;
	margin: 3px 0;
	transition: 0.3s;
	transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6.5px, 6.5px);
	background-color: white;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6.5px, -6.5px);
	background-color: white;
}
.mobile-nav-cta {
	display: none;
}

@media (max-width: 992px) {

	.mobile-menu-toggle {
		display: flex;
		position: fixed;
		right: 10px;
	}


	.navigation.active {
		display: flex !important;
		opacity: 1;
		visibility: visible;
		flex-direction: column;
	}



	.navigation-item a:hover {
		opacity: 0.7;
	}


	.mobile-nav-cta {
		display: block;
		background-color: white;
		color: #2a001f;
		padding: 15px 32px;
		border-radius: 16px;
		text-decoration: none;
		font-size: 18px;
		font-weight: 400;
		transition: opacity 0.3s ease;
		margin-top: 20px;
	}

	.mobile-nav-cta:hover {
		opacity: 0.8;
	}
}

.pricing-page {
	background-color: #f9f7f4;
	min-height: 100vh;
}

/* Category Navigation */
.category-navigation {
	margin: 0 0 20px;
	padding: 20px;
	background: #f9f7f4;
	transition: all 0.3s ease;
}

.category-navigation.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	border-bottom: 1px solid #e5e5e5;
	margin: 0;
}

/* Auto-hide on mobile */
.category-navigation.hidden {
	transform: translateY(-100%);
}

/* Desktop Navigation */
.desktop-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}



/* Mobile Navigation */
.mobile-nav {
	display: none;
	position: relative;
}

.category-nav-btn {
	background: #000;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font: 18px 'Archivo', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.category-nav-btn:hover {
	background: #333;
	transform: translateY(-2px);
}

/* Mobile Navigation Styles */
.mobile-nav-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #000;
	color: #fff;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font: 18px 'Archivo', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}

.mobile-nav-toggle:hover {
	background: #333;
}

.mobile-nav-icon {
	font-size: 20px;
	transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-icon {
	transform: rotate(90deg);
}

.mobile-nav-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 280px;
	max-width: 90vw;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	border: 1px solid #e5e5e5;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(-10px);
	transition: all 0.3s ease;
	z-index: 101;
	margin-top: 8px;
}

.mobile-nav.active .mobile-nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.mobile-nav-item {
	display: block;
	width: 100%;
	background: none;
	border: none;
	padding: 16px 20px;
	text-align: left;
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:last-child {
	border-bottom: none;
	border-radius: 0 0 8px 8px;
}

.mobile-nav-item:first-child {
	border-radius: 8px 8px 0 0;
}

.mobile-nav-item:hover {
	background-color: #f5f5f5;
}

@media (max-width: 768px) {
	.desktop-nav {
		display: none;
	}
	
	.mobile-nav {
		display: block;
	}
	
	.category-navigation.sticky {
		padding: 15px 10px;
	}
}

/* Category Dividers */
.category-divider {
	grid-column: 1 / -1;
	background: #000;
	color: #fff;
	margin: 0;
}

.category-divider-content {
	padding: 10px;
	text-align: center;
}

.category-divider-title {
	font: 21px 'Archivo', sans-serif;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.5px;
}

@media (max-width: 768px) {
	.category-divider-title {
		font-size: 20px;
	}
}

/* Image Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	padding-top: 50px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.9);
	animation: fadeIn 0.3s ease-out;
}

.modal-content {
	margin: auto;
	display: block;
	width: 90vmin;
	height: 90vmin;
	
	position: relative;
	background: #fff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	animation: zoomIn 0.3s ease-out;
}

.modal-image {
	width: 100%;
	height: calc(100% - 60px);
	max-height: calc(100vh - 100px);
	object-fit: contain;
	border-radius: 8px;
}

.modal-caption {
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	text-align: center;
	font-size: 21px;
	font-weight: 700;
	color: #181616;
	line-height: 1.3;
}

.close {
	position: absolute;
	top: 5px;
	right: 10px;
	color: #333;
	font-size: 30px;
	font-weight: bold;
	cursor: pointer;
	background: none;
	border: none;
	transition: color 0.3s ease;
	z-index: 10;
}

.close:hover,
.close:focus {
	color: #666;
}

/* Clickable cursor for images */
.row-image img {
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.row-image img:hover {
	transform: scale(1.05);
	opacity: 0.9;
}

/* Modal animations */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes zoomIn {
	from { 
		transform: scale(0.8);
		opacity: 0;
	}
	to { 
		transform: scale(1);
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.modal {
		padding-top: 20px;
	}
	
	.modal-content {
		width: 95vmin;
		height: 95vmin;
		max-width: 500px;
		max-height: 500px;
		padding: 10px;
	}
	
	.modal-image {
		height: calc(100% - 50px);
		max-height: calc(100vh - 100px);
	}
	
	.close {
		top: 3px;
		right: 8px;
		font-size: 25px;
	}
	
	.modal-caption {
		bottom: 10px;
		left: 10px;
		right: 10px;
		font-size: 14px;
	}
}

/* Hero Section */
.pricing-hero {
	text-align: center;
	padding: 50px 10%;
	/* background: linear-gradient(135deg, #f9f7f4 0%, #ffffff 100%); */
}

/* VS Header Styles */
.vs-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin: 0 auto 2.5vw;
	background: white;
	border-radius: 20px;
	padding: 40px 0;
	max-width: 1280px;
	border: 5px dotted #B85450;
}

.vs-header-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
}

.vs-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.vs-header-section .vs-brand {
	gap: 10px;
}

.brand-logo {
	height: auto;
	max-width: 22vw;
	object-fit: contain;
}

.brand-logo-small {
	height: 50px;
	max-width: 150px;
	object-fit: contain;
}

.vs-brand .brand-name {
	font: 24px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.vs-header-section .vs-brand .brand-name {
	font-size: 20px;
}

.vs-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.vs-text {
	font: 36px 'Archivo', sans-serif;
	font-weight: 800;
	color: #B85450;
	background: white;
	padding: 0 20px;
	z-index: 2;
	position: relative;
}

.vs-header-section .vs-text {
	font-size: 28px;
	padding: 0 15px;
}

.vs-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: #000;
	z-index: 1;
}

.vs-brand.brand-sauce .brand-name {
	color: #2a001f;
}

.vs-brand.competitor .brand-name {
	color: #000;
}

@media (max-width: 768px) {
	.vs-header {
		gap: 0px;
		flex-direction: row;
		text-align: center;
		padding: 30px 0;
	}
	
	.vs-header-section {
		gap: 15px;
		flex-direction: column;
	}
	
	.chart {
		width: 20px;
	}
	
	.vs-divider::before {
		display: none;
	}
	
	.brand-logo {
		height: auto;
		max-width: 120px;
	}
	
	.brand-logo-small {
		height: 40px;
		max-width: 120px;
	}
	
	.vs-brand .brand-name {
		font-size: 20px;
	}
	
	.vs-header-section .vs-brand .brand-name {
		font-size: 18px;
	}
	
	.vs-text {
		font-size: 28px;
	}
	
	.vs-header-section .vs-text {
		font-size: 22px;
	}
}

.pricing-hero-content h1 {
	font: 8vw 'Archivo', sans-serif;
	font-weight: 500;
	color: #000;
	margin-bottom: 2.5vw;
	line-height: 1.2;
	margin-top: 0;
	letter-spacing: -2px;
}

.pricing-welcome {
	width: 40%;
	margin: 0 auto;
}

.pricing-subtitle {
	font: 27px 'Archivo', sans-serif;
	font-weight: 400;
	color: #766E64;
	margin: 0 auto 10px;
	max-width: 1200px;
	line-height: 40px;
}

.pricing-subsubtitle {
	font: 21px 'Archivo', sans-serif;
	font-weight: 400;
	color: #766E64;
	margin: 0 auto 30px;
	text-align: center;
}

.pricing-note {
	font: 20px 'Archivo', sans-serif;
	font-weight: 400;
	color: #000;
	display: flex;
	margin: 30px auto 0;
	justify-content: center;
	gap: 10px;
}
.chart {
	width: 25px;
}

/* Billing Toggle */
.billing-toggle-section {
	display: flex;
	justify-content: center;
	padding: 20px 10% 60px;
}

.billing-toggle {
	display: flex;
	align-items: center;
	gap: 15px;
	background-color: #fff;
	padding: 15px 25px;
	border-radius: 50px;
	border: 2px solid #e5e5e5;
}

.billing-label {
	font: 16px 'Archivo', sans-serif;
	font-weight: 500;
	color: #181616;
}

.savings-badge {
	background-color: #38002A;
	color: #fff;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	margin-left: 5px;
}

/* Toggle Switch */
.toggle-switch {
	position: relative;
	width: 50px;
	height: 24px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-label {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	border-radius: 24px;
	transition: 0.3s;
}

.toggle-slider {
	position: absolute;
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	border-radius: 50%;
	transition: 0.3s;
}

input:checked + .toggle-label {
	background-color: #38002A;
}

input:checked + .toggle-label .toggle-slider {
	transform: translateX(26px);
}

/* Pricing Cards */
.pricing-cards {
	padding: 50px 40px 80px;
}

.pricing-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
}

.pricing-card {
	background-color: #fff;
	border: 2px solid #e5e5e5;
	border-radius: 20px;
	padding: 40px 30px;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
	border-color: #38002A;
	transform: scale(1.05);
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-5px);
}

.popular-badge {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #38002A;
	color: #fff;
	padding: 5px 20px;
	border-radius: 20px;
	font: 14px 'Archivo', sans-serif;
	font-weight: 600;
}

.card-header h3 {
	font: 28px 'Archivo', sans-serif;
	font-weight: 700;
	color: #181616;
	margin-bottom: 5px;
	margin-top: 0;
}

.plan-description {
	font: 14px 'Archivo', sans-serif;
	color: #434040;
	margin-bottom: 20px;
}

.employee-count {
	color: #006eb7;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 20px;
}

.card-pricing {
	margin-bottom: 30px;
}

.price-display {
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
}

.currency {
	font: 24px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
}

.price {
	font: 48px 'Archivo', sans-serif;
	font-weight: 700;
	color: #000;
}

.period {
	font: 18px 'Archivo', sans-serif;
	font-weight: 400;
	color: #666;
	margin-left: 5px;
}

.price-note {
	font: 14px 'Archivo', sans-serif;
	color: #666;
}

.card-cta {
	margin-bottom: 40px;
}

.pricing-page .cta-button {
	display: inline-block;
	width: 70%;
	text-align: center;
	padding: 15px 30px;
	border-radius: 50px;
	font: 16px 'Archivo', sans-serif;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	margin-left: 0;
}

.pricing-page .cta-button.primary {
	background-color: #38002A;
	color: #fff;
}

.pricing-page .cta-button.primary:hover {
	background-color: #2a001f;
	transform: translateY(-2px);
}

.pricing-page .cta-button.secondary {
	background-color: #fff;
	color: #38002A;
	border-color: #38002A;
}

.pricing-page .cta-button.secondary:hover {
	background-color: #38002A;
	color: #fff;
}

.pricing-page .cta-button.large {
	font-size: 20px;
	padding: 20px 40px;
	width: auto;
}

.card-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.card-features li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	font: 16px 'Archivo', sans-serif;
	color: #181616;
}

.card-features i {
	color: #38002A;
	margin-right: 12px;
	width: 16px;
}

/* Features Comparison */
.features-comparison {
	background-color: #fff;
	padding: 80px 10%;
}

.features-comparison2 {
	padding: 80px 10%;
}

.comparison-container {
	max-width: calc (1300px - 20px);
	margin: 0 auto;
	width: 100%;
}

.features-comparison h2, .features-comparison2 h2 {
	font: 36px 'Archivo', sans-serif;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin-bottom: 50px;
}

.comparison-table {
	border: 1px solid #e5e5e5;
	border-radius: 15px;
	overflow: hidden;
}

.table-header {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	background-color: #f8f8f8;
	padding: 20px;
	font: 15px 'Archivo', sans-serif;
	font-weight: 600;
	color: white;
	background: #38002A;
}

.feature-category {
	background-color: #f0f0f0;
	padding: 15px 20px;
	font: 18px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
}

.feature-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	padding: 15px 20px;
	border-bottom: 1px solid #e5e5e5;
}

.feature-row:last-child {
	border-bottom: none;
}

.feature-name {
	font: 16px 'Archivo', sans-serif;
	color: #38002A;
}

.feature-value {
	font: 16px 'Archivo', sans-serif;
	color: #181616;
	text-align: center;
}

.feature-value i.fa-check {
	color: #38002A;
}

.feature-value i.fa-times {
	color: #ccc;
}

.plan-column {
	text-align: center;
}

/* FAQ Section */
.faq-section {
	padding: 80px 10%;
	background-color: #f9f7f4;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-section h2 {
	font: 36px 'Archivo', sans-serif;
	font-weight: 700;
	color: #000;
	text-align: center;
	margin-bottom: 50px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.faq-item {
	background-color: #fff;
	border: 2px solid #e5e5e5;
	border-bottom: none;
}

.faq-item:first-child {
	border-radius: 15px 15px 0 0;
}

.faq-item:last-child {
	border-radius: 0 0 15px 15px;
	border-bottom: 2px solid #e5e5e5;
}

.faq-question {
	padding: 30px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: #f8f8f8;
}

.faq-question h4 {
	font: 20px 'Archivo', sans-serif;
	font-weight: 600;
	color: #000;
	margin: 0;
	flex: 1;
}

.faq-icon {
	font-size: 20px;
	color: #38002A;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	border-top: 1px solid #e5e5e5;
}

.faq-item.active .faq-answer {
	max-height: 200px;
}

.faq-answer p {
	font: 16px 'Archivo', sans-serif;
	color: #666;
	line-height: 1.6;
	padding: 30px;
	margin: 0;
}

/* Final CTA */
.final-cta {
	background: linear-gradient(135deg, #38002A 0%, #2a001f 100%);
	padding: 80px 10%;
	text-align: center;
}

.cta-container h2 {
	font: 36px 'Archivo', sans-serif;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.cta-container p {
	font: 18px 'Archivo', sans-serif;
	color: #fff;
	margin-bottom: 30px;
}

.cta-container .cta-button.large {
	background-color: #fff;
	color: #38002A;
	margin-bottom: 15px;
}

.cta-container .cta-button.large:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
}

.cta-note {
	font: 14px 'Archivo', sans-serif;
	color: #ccc !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.pricing-hero-content h1 {
		font-size: 60px;
		line-height: 55px;
		letter-spacing: -1px;
	}
	
	.pricing-subtitle {
		font-size: 21px;
		line-height: 27px;
		padding: 15px 10% 0;
	}
	.pricing-note {
		font: 16px / 21px 'Archivo', sans-serif;
		padding: 0;
	}
	.plan-description {
		font-size: 21px;
		line-height: 28px;
		margin-bottom: 10px;
	}
	
	.pricing-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.pricing-card.featured {
		transform: none;
	}
	
	.pricing-card.featured:hover {
		transform: translateY(-5px);
	}
	
	.table-header,
	.feature-row {
		grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
		text-align: left;
		font-size: 10px;
		font-weight: 500;
	}
	.feature-category {
		padding: 10px;
	}
	.feature-category h4 {
		font-size: 15px;
	}
	.feature-row {
		padding: 10px 20px;
	}
	.features-comparison2 {
		padding: 20px 10%;
	}
	.feature-value {
		text-align: left;
		margin-top: 5px;
		margin-left: 20px;
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
	}
	
	.billing-toggle {
		flex-direction: column;
		gap: 10px;
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.pricing-hero {
		padding: 60px 5% 0px;
	}
	
	.pricing-cards,
	.features-comparison,
	.faq-section,
	.final-cta {
		padding-left: 5%;
		padding-right: 5%;
	}
	
	.pricing-card {
		padding: 30px 20px;
	}
}

li.demo-button a {
	background-color: #2a001f;
	color: white;
	padding: 15px 32px;
	border-radius: 16px;
}


.banner-enterprise {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 12px;
	font-weight: 600;
	background-color: gold;
	padding: 5px 10px;
	width: calc(100% - 20px);
	border-radius: 10px 10px 0 0;
	text-align: center;
}
a.orders-email {
	border: 2px solid black;
	padding: 1vw 3vw;
	border-radius: 10px;
	background: white;
	font-size: 36px;
}
@media (max-width: 768px) {
	a.orders-email {
		font-size: 24px;
	}
	.feature-value {
		font: 11px 'Archivo', sans-serif;
		margin: 0 auto;
		text-align: center;
	}
	.feature-name {
		font-size: 12px;
		font-weight: 500;
	
	}
	.card-header h3 {
		font: 35px 'Archivo', sans-serif;
		font-weight: 700;
		color: #181616;
		margin-bottom: 5px;
		margin-top: 20px;
	}
	.employee-count {
		font-size: 16px;
		font-weight: 600;
	}
}
.feature-category h4 {
	padding: 0;
	margin: 0;
}
.faq-answer p {
	font-size: 20px;
	color: white;
	background: #38002A;
}
/* Product Card Component Styles */

.product-card-container {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background-color: #f9f7f4;
	font-family: 'Archivo', sans-serif;
}

.product-card {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 20px;
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	max-width: 1200px;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.product-card.hat {
	gap: 10px;
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #B85450, #3C6797);
	border-radius: 20px 20px 0 0;
}

/* Product Media Section */
.product-media {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.media-display {
	position: relative;
	width: 100%;
	max-width: 400px;
	aspect-ratio: 0.75;
	border-radius: 16px;
	overflow: hidden;
	/* background: linear-gradient(135deg, #f8f8f8, #e8e8e8); */
	background: white;
}
.media-display.hat {
	aspect-ratio: 1.3;
}

.product-video,
.product-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-video.active,
.product-image.active {
	opacity: 1;
}

.color-swatches {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.swatch {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	border: 1px solid #ddd;
}

.swatch::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border: 2px solid transparent;
	border-radius: 50%;
	transition: border-color 0.3s ease;
}

.swatch.active::before {
	border-color: #3C6797;
}

.swatch:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.poloSwatch {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	border: 1px solid #ddd;
}

.poloSwatch::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border: 2px solid transparent;
	border-radius: 50%;
	transition: border-color 0.3s ease;
}

.poloSwatch.active::before {
	border-color: #3C6797;
}

.poloSwatch:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Product Details Section */
.product-details {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.product-header {
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
}

.brand {
	font-size: 21px;
	font-weight: 600;
	color: #766e64;
	margin-bottom: 0;
	font-family: 'Archivo', sans-serif;
	letter-spacing: -0.25px;
}

.product-title {
	font-size: 36px;
	font-weight: 600;
	color: #181616;
	line-height: 1.2;
	margin-bottom: 3px;
	margin-top: 5px;
}

.product-code {
	font-size: 14px;
	font-weight: 500;
	color: #666;

}

.product-description {
	font-size: 18px;
	line-height: 24px;
	color: #222;
	font-weight: 400;
	letter-spacing: -0.25px;
	margin-top: 20px;
}

.hat .product-header {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.hat .product-details {
	gap: 20px;
}

/* Pricing Comparison */
.pricing-comparison {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.brand-sauce-pricing,
.competitor-pricing {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-sauce-pricing {
	background: linear-gradient(135deg, #f8f9ff, #ffffff);
	border: 2px solid #3C6797;
	transform: scale(1.02);
	box-shadow: 0 8px 24px rgba(60, 103, 151, 0.15);
}

.competitor-pricing {
	background: #f5f5f5;
	border: 2px solid #ddd;
}

.brand-sauce-pricing:hover {
	transform: scale(1.04);
	box-shadow: 0 12px 32px rgba(60, 103, 151, 0.2);
}

.competitor-pricing:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.supplier-logo {
	flex-shrink: 0;
	width: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bs-logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bs-icon {
	width: 32px;
	height: 32px;
	background: #3C6797;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
}

.bs-text {
	font-size: 12px;
	font-weight: 600;
	color: #3C6797;
	line-height: 1.2;
}

.competitor-logo {
	width: 120px;
	height: auto;
	object-fit: contain;
}

.pricing-tiers {
	flex: 1;
}

.pricing-tier {
	display: flex;
	align-items: center;
	gap: 20px;
	text-align: center;
}

.tier-icon {
	flex-shrink: 0;
}

.tier-info {
	flex: 1;
}

.tier-label, .bulk-label {
	font-size: 15px;
	color: #000;
	margin-bottom: 4px;
	font-family: 'Archivo';
	font-weight: 600;
	letter-spacing: 0.25px;
}

.tier-price {
	font-size: 32px;
	font-weight: 800;
	color: #181616;
	line-height: 1;
	font-family: 'Archivo', sans-serif;
	margin: 10px 0;
}

.tier-unit {
	font-size: 16px;
	font-weight: 600;
	color: #000;
}

.tier-note {
	font-size: 12px;
	color: #666;
	margin-top: 4px;
}

.tier-bulk {
	border-left: 1px solid black;
	padding-left: 50px;
}

.bulk-price {
	font-size: 28px;
	font-weight: 700;
	color: #181616;
	line-height: 1;
}

.bulk-unit {
	font-size: 20px;
	font-weight: 600;
	color: #000;
}

.bulk-note {
	font-size: 12px;
	color: #666;
	margin-top: 4px;
}

.highlighted .tier-price,
.highlighted .bulk-price {
	color: #000;
	font-family: 'Archivo';
	font-weight: 800;
	font-size: 45px;
	letter-spacing: -1px;
	margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.product-card {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 30px;
	}
	
	.product-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.product-card-container {
		padding: 15px;
	}
	
	.product-card {
		gap: 30px;
		padding: 24px;
	}
	
	.product-title {
		font-size: 28px;
	}
	
	.media-display {
		max-width: 300px;
	}
	
	.color-swatches {
		gap: 10px;
	}
	
	.swatch {
		width: 38px;
		height: 38px;
	}
	
	.brand-sauce-pricing,
	.competitor-pricing {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.pricing-tier {
		gap: 10px;
		width: 100%;
	}
	
	.tier-bulk {
		text-align: center;
	}
	
	.supplier-logo {
		order: -1;
	}
}

@media (max-width: 480px) {
	.product-card {
		padding: 20px;
	}
	
	.product-title {
		font-size: 24px;
	}
	
	.tier-price,
	.bulk-price {
		font-size: 24px;
	}
	
	.pricing-comparison {
		gap: 16px;
	}
	
	.brand-sauce-pricing,
	.competitor-pricing {
		padding: 20px;
	}
}

/* Animation keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.product-card {
	animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.swatch {
	animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.swatch:nth-child(2) { animation-delay: 0.1s; }
.swatch:nth-child(3) { animation-delay: 0.2s; }
.swatch:nth-child(4) { animation-delay: 0.3s; }
.swatch:nth-child(5) { animation-delay: 0.4s; }
.product-video {
	transition: filter 0.5s ease;
}

.product-video, .product-gif {
	transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-transition: -webkit-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}

.product-video.tint-black,
.product-gif.tint-black {
	filter: hue-rotate(0deg) saturate(0) brightness(0.75) contrast(2.25);
	-webkit-filter: hue-rotate(0deg) saturate(0) brightness(0.75) contrast(2.25);
}

.product-video.video-tinted {
	transition: filter 0.5s ease;
}

.product-video {
	transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-video.tint-black {
	filter: hue-rotate(0deg) saturate(0) brightness(0.75) contrast(2.25);
}

.product-video.tint-arctic {
	filter: hue-rotate(180deg) saturate(0.4) brightness(1.6) contrast(1);
}

.product-video.tint-army {
	filter: hue-rotate(40deg) saturate(0.3) brightness(1) contrast(1.2);
}

.product-video.tint-blush {
	filter: hue-rotate(20deg) saturate(0.2) brightness(1.7) contrast(1);
}

.product-video.tint-bone {
	filter: hue-rotate(35deg) saturate(0.2) brightness(1.85) contrast(1);
}

.product-video.tint-cardinal {
	filter: none;
}

.product-video.tint-charcoal {
	filter: hue-rotate(-85deg) saturate(0.075) brightness(0.93) contrast(1.7)
}

.product-video.tint-indigo {
	filter: hue-rotate(-125deg) saturate(0.5) brightness(0.8) contrast(1.7);
}

.product-video.tint-khaki {
	filter: hue-rotate(55deg) saturate(0.15) brightness(1.6) contrast(1);
}

.product-video.tint-white {
	filter: hue-rotate(0deg) saturate(0) brightness(1.65) contrast(1.8);
}

/* POLO SWATCHES */

.product-video.tint-black-polo {
	filter: hue-rotate(0deg) saturate(0) brightness(0.7) contrast(2.5);
}

.product-video.tint-gold {
	filter: hue-rotate(25deg) saturate(1) brightness(1.45) contrast(1);
}

.product-video.tint-green {
	filter: hue-rotate(135deg) saturate(0.35) brightness(0.75) contrast(2);
}

.product-video.tint-purple {
	filter: hue-rotate(-125deg) saturate(0.5) brightness(0.75) contrast(2);
}

.product-video.tint-red {
	filter: hue-rotate(-20deg) saturate(0.65) brightness(0.77) contrast(1.95);
}

.product-video.tint-orange {
	filter: none;
}

.product-video.tint-royal {
	filter: hue-rotate(-160deg) saturate(0.7) brightness(0.77) contrast(1.9);
}

.product-video.tint-grey {
	filter: hue-rotate(-145deg) saturate(0.025) brightness(1.1) contrast(1.7);
}

.product-video.tint-maroon {
	filter: hue-rotate(-55deg) saturate(0.25) brightness(0.7) contrast(2.6);
}

.product-video.tint-navy {
	filter: hue-rotate(-140deg) saturate(0.1) brightness(0.7) contrast(2.5);
}

.product-video.tint-white-polo {
	filter: hue-rotate(0deg) saturate(0) brightness(1.3) contrast(2);
}


/* GIFS */


.product-gif {
	transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.product-gif.tint-black {
	filter: hue-rotate(0deg) saturate(0) brightness(0.75) contrast(2.25);
}

.product-gif.tint-arctic {
	filter: hue-rotate(180deg) saturate(0.4) brightness(1.6) contrast(1);
}

.product-gif.tint-army {
	filter: hue-rotate(40deg) saturate(0.3) brightness(1) contrast(1.2);
}

.product-gif.tint-blush {
	filter: hue-rotate(20deg) saturate(0.2) brightness(1.7) contrast(1);
}

.product-gif.tint-bone {
	filter: hue-rotate(35deg) saturate(0.2) brightness(1.85) contrast(1);
}

.product-gif.tint-cardinal {
	filter: none;
}

.product-gif.tint-charcoal {
	filter: hue-rotate(275deg) saturate(0.075) brightness(0.93) contrast(1.7)
}

.product-gif.tint-indigo {
	filter: hue-rotate(235deg) saturate(0.5) brightness(0.8) contrast(1.7);
}

.product-gif.tint-khaki {
	filter: hue-rotate(55deg) saturate(0.15) brightness(1.6) contrast(1);
}

.product-gif.tint-white {
	filter: hue-rotate(0deg) saturate(0) brightness(1.65) contrast(1.8);
}

/* POLO SWATCHES */

.product-gif.tint-black-polo {
	filter: hue-rotate(0deg) saturate(0) brightness(0.7) contrast(2.5);
}

.product-gif.tint-gold {
	filter: hue-rotate(25deg) saturate(1) brightness(1.45) contrast(1);
}

.product-gif.tint-green {
	filter: hue-rotate(135deg) saturate(0.35) brightness(0.75) contrast(2);
}

.product-gif.tint-purple {
	filter: hue-rotate(235deg) saturate(0.5) brightness(0.75) contrast(2);
}

.product-gif.tint-red {
	filter: hue-rotate(340deg) saturate(0.65) brightness(0.77) contrast(1.95);
}

.product-gif.tint-orange {
	filter: none;
}

.product-gif.tint-royal {
	filter: hue-rotate(200deg) saturate(0.7) brightness(0.77) contrast(1.9);
}

.product-gif.tint-grey {
	filter: hue-rotate(215deg) saturate(0.025) brightness(1.1) contrast(1.7);
}

.product-gif.tint-maroon {
	filter: hue-rotate(305deg) saturate(0.25) brightness(0.7) contrast(2.6);
}

.product-gif.tint-navy {
	filter: hue-rotate(220deg) saturate(0.1) brightness(0.7) contrast(2.5);
}

.product-gif.tint-white-polo {
	filter: hue-rotate(0deg) saturate(0) brightness(1.3) contrast(2);
}

@media (max-width: 768px) {
	.color-swatches {
		flex-wrap: wrap;
		max-width: 240px; /* 6 swatches * 38px + gaps */
		justify-content: flex-start;
	}
	
	.swatch {
		width: 34px;
		height: 34px;
		margin: 2px; /* Small margin for spacing */
	}
}

/* Comparison Table Styles */

.comparison-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background-color: #f9f7f4;
	font-family: 'Archivo', sans-serif;
}

.comparison-container {
	max-width: 1280px;
	margin: 0 auto;
}

.comparison-container h2 {
	font-size: 46px;
	font-weight: 500;
	color: #181616;
	text-align: center;
	margin-bottom: 30px;
	font-family: 'Archivo';
	letter-spacing: -0.5px;
}

.comparison-table {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Header Row */
.table-header {
	display: grid;
	grid-template-columns: 0.4fr 1.5fr 1.5fr 1.5fr;
	background: linear-gradient(90deg, #B85450, #3C6797);
	color: white;
	font-weight: 600;
	font-size: 16px;
	padding: 20px;
	gap: 20px;
	align-items: center;
}

.table-header > div {
	font-size: 21px;
	font-family: 'Archivo', sans-serif;
	text-align: center;
}

.header-product {
	text-align: left !important;
}

/* Product Rows */
.table-row {
	display: grid;
	grid-template-columns: 0.4fr 1.5fr 1.5fr 1.5fr;
	padding: 24px 20px;
	gap: 20px;
	border-bottom: 1px solid #f0f0f0;
	align-items: center;
	transition: background-color 0.2s ease;
}

.table-row:hover {
	background-color: #fafafa;
}

.table-row:last-child {
	border-bottom: none;
}

/* Product Cell */

.image-cell {
	display: flex;
	align-items: center;
	gap: 16px;
}

.product-cell {
	align-items: center;
	gap: 16px;
	text-align: left;
}

.row-image {
	width: 75px;
	height: 75px;
	border-radius: 5px;
	overflow: hidden;
	flex-shrink: 0;
	background: #f5f5f5;
}

.row-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-name {
	font-size: 21px;
	font-weight: 700;
	color: #181616;
	line-height: 1.3;
}

/* Brand Cell */
.brand-cell {
	text-align: center;
}

.brand-name {
	font-size: 15px;
	font-weight: 600;
	color: #766e64;
	margin-bottom: 4px;
}

.product-code {
	font-size: 13px;
	color: #888;
	font-weight: 500;
}

/* Colors Cell */
.colors-cell {
	text-align: center;
}

.color-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-bottom: 6px;
	flex-wrap: wrap;
}

.color-dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: inline-block;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.color-count {
	font-size: 12px;
	color: #666;
	font-weight: 500;
}

/* Pricing Cells */
.pricing-cell {
	text-align: center;
	padding: 8px 16px;
	border-radius: 12px;
	margin: 0 4px;
}
.pricing-ours, .pricing-theirs {
	display: flex;
	gap: 10px;
	justify-content: space-around;
}

.pricing-cell.brand-sauce {
	background: linear-gradient(135deg, #3C6797, #0a407c);
	border: 2px solid #0a407c;
	color: white;
	border-radius: 10px;
}
.pricing-ours .bulk-unit {
	color: white;
}

.pricing-cell.competitor {
	background: #f8f8f8;
	border: 2px solid #ddd;
}

.price-single,
.price-bulk {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 6px;
}

.price-label {
	font-size: 12px;
	color: #222;
	font-weight: 500;
}
.pricing-ours .price-label {
	text-align: right;
	color: white;
}

.price-value {
	font-size: 16px;
	font-weight: 700;
	color: #181616;
}

.pricing-theirs .price-value {
	font-size: 30px;
	margin: 6px 0 0;
	font-weight: 700;
}

.pricing-ours .price-value {
	color: white;
	font-size: 36px;
	font-weight: 800;
	margin-top: 3px;
}

.price-note {
	font-size: 10px;
	color: #ddd;
	font-style: italic;
	/* margin-top: 4px; */
}

/* Comparison Summary */
.comparison-summary {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin: 40px 0;
	padding: 30px;
	/* background: white;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); */
}

.summary-stat {
	text-align: center;
	width: 20%;
}

.stat-number {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #3C6797;
	margin-bottom: 6px;
}

.stat-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
	line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
	.table-header,
	.table-row {
		grid-template-columns: 0.5fr 1.5fr 1.5fr 1.5fr;
		gap: 16px;
		padding: 20px 16px;
	}
	
	.product-image {
		width: 50px;
		height: 50px;
	}
	
	.product-name {
		font-size: 20px;
	}
}

@media (max-width: 968px) {
	.comparison-section {
		padding: 40px 5%;
	}
	
	.table-header,
	.table-row {
		grid-template-columns: 1fr;
		gap: 10px;
		text-align: left;
	}
	
	.table-row {
		padding: 30px 20px;
	}
	
	.row-image {
		width: 90%;
		height: auto;
		margin: 0 auto;
		border-radius: 5px;
		overflow: hidden;
		flex-shrink: 0;
		background: #f5f5f5;
	}
	
	.product-cell {
		order: 1;
		padding-bottom: 5px;
		margin: 0 auto;
	}
	
	.brand-cell {
		order: 2;
		text-align: left;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.colors-cell {
		order: 3;
		text-align: left;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.pricing-cell {
		order: 4;
		margin: 8px 0;
	}
	
	.pricing-cell.brand-sauce {
		order: 4;
	}
	
	.pricing-cell.competitor {
		order: 5;
	}
	
	.table-header {
		display: none;
	}
	
	.comparison-summary {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
	
	.summary-stat {
		padding: 20px;
		background: #f8f9ff;
		border-radius: 12px;
	}
}

@media (max-width: 480px) {
	.comparison-container h2 {
		font-size: 28px;
	}
	
	.product-cell {
		flex-direction: column;
		text-align: center;
		gap: 12px;
	}
	
	.product-image {
		width: 80px;
		height: 80px;
	}
	
	.color-dots {
		justify-content: flex-start;
	}
	
	.pricing-cell {
		margin: 6px 0;
		padding: 5px;
	}
}
.sup {
	font-size: 55%;
	vertical-align: top;
}

.header-brandsauce img, .header-competitor img {
	width: 150px;
}
.competitor-pricing .tier-label {
	background: gold;
	padding: 3px;
	border-radius: 3px;
}
.pricing-theirs .price-single .price-label {
	background: gold;
	border-radius: 3px;
	padding: 0px 20px;
}

.mobile { display: none; }
.desktop { display: flex; }
@media (max-width:768px) {
	.mobile { display: flex; }
	.desktop { display: none; }
	.pricing-ours {
		background: linear-gradient(135deg, #3C6797, #0a407c);
		background-image: url(images/white_brand-sauce.png);
		background-size: 100px;
		background-repeat: no-repeat;
		background-position: center 5px;
		padding-top: 40px;
	}
	.pricing-theirs {
		background-image: url(images/logo_4imprint.png) !important;
		background-size: 60px !important;
		background-repeat: no-repeat !important;
		background-position: center 5px;
		padding-top: 40px;
	}
	.pricing-ours .price-label {
		text-align: center;
	}
	.pricing-welcome {
		width: 80%;
	}
}