/**
 * Package Comparison Styles
 *
 * This stylesheet provides styling for the package comparison feature
 * including the comparison table and selection sidebar.
 *
 * @package SNC_Services
 */

/* ==========================================================================
   1. Fiverr-Style Package Comparison Container
   ========================================================================== */

.snc-fiverr-comparison-wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	background: #fff;
}

.snc-fiverr-layout {
	display: flex;
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	gap: 30px;
}

/* Main content area (left side) */
.snc-comparison-main {
	flex: 1;
	max-width: calc(100% - 350px); /* Leave space for sidebar */
}

/* Sidebar wrapper (right side) */
.snc-comparison-sidebar {
	width: 320px;
	flex-shrink: 0;
}

/* ==========================================================================
   2. Fiverr-Style Unified Comparison Table
   ========================================================================== */

.snc-fiverr-comparison-table {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #e0e0e0;
}

/* Table Header */
.snc-table-header {
	display: grid;
	grid-template-columns: 1fr repeat(3, 1fr);
	background: #f8f9fa;
	border-bottom: 2px solid #e0e0e0;
}

.snc-feature-column {
	padding: 30px 25px;
	border-right: 1px solid #e0e0e0;
	display: flex;
	align-items: center;
}

.snc-feature-column h2 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	color: #333;
}

.snc-package-column-header {
	padding: 30px 25px;
	text-align: center;
	border-right: 1px solid #e0e0e0;
	position: relative;
}

.snc-package-column-header:last-child {
	border-right: none;
}

.snc-package-column-header .snc-package-price {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
	line-height: 1;
}

.snc-package-column-header .snc-package-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.3;
}

.snc-package-column-header .snc-package-description {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

/* Table Rows */
.snc-table-row {
	display: grid;
	grid-template-columns: 1fr repeat(3, 1fr);
	border-bottom: 1px solid #f0f0f0;
	transition: background 0.3s ease;
}

.snc-table-row:hover {
	background: #f8f9fa;
}

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

.snc-feature-cell {
	padding: 20px 25px;
	border-right: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
}

.snc-package-cell {
	padding: 20px 25px;
	text-align: center;
	border-right: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.snc-package-cell:last-child {
	border-right: none;
}

.snc-feature-name {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.snc-feature-description {
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.snc-feature-value {
	font-size: 14px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

/* ==========================================================================
   3. Package Columns
   ========================================================================== */

.snc-package-column {
	padding: 30px 25px;
	border-right: 1px solid #f0f0f0;
	position: relative;
	transition: all 0.3s ease;
}

.snc-package-column:last-child {
	border-right: none;
}

.snc-package-column:hover {
	background: #fafafa;
}

.snc-package-header {
	text-align: center;
	margin-bottom: 25px;
}

.snc-package-price {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin-bottom: 10px;
	line-height: 1;
}

.snc-package-title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	line-height: 1.3;
}

.snc-package-description {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin-bottom: 20px;
}

/* ==========================================================================
   4. Delivery Options
   ========================================================================== */

.snc-delivery-options {
	margin-bottom: 25px;
}

.snc-delivery-option {
	display: block;
	margin-bottom: 12px;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
}

.snc-delivery-option:hover {
	border-color: #2271b1;
	background: #f8f9ff;
}

.snc-delivery-option input[type="radio"] {
	display: none;
}

.snc-delivery-option input[type="radio"]:checked + .delivery-text {
	color: #2271b1;
	font-weight: 600;
}

.snc-delivery-option:has(input[type="radio"]:checked) {
	border-color: #2271b1;
	background: #f0f4ff;
}

.delivery-text {
	font-size: 14px;
	color: #333;
	transition: all 0.3s ease;
}

/* ==========================================================================
   5. Package Footer
   ========================================================================== */

.snc-package-footer {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
}

.snc-final-price {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.snc-select-package {
	width: 100%;
	padding: 13px 22px;
	background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
}

.snc-select-package::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-select-package:hover {
	background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.snc-select-package:hover::before {
	transform: translateX(0);
}

.snc-select-package:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   6. Fiverr-Style Package Selection Sidebar
   ========================================================================== */

.snc-fiverr-sidebar {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 20px;
	width: 100%;
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	border: 1px solid #e0e0e0;
	
	transition: all 0.3s ease;
}

/* Mobile sidebar close button */
.snc-sidebar-close {
	display: none;
	position: absolute;
	top: 15px;
	right: 15px;
	background: rgba(0, 0, 0, 0.08);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 20px;
	z-index: 1001;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.snc-sidebar-close::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(220, 53, 69, 0.1);
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.snc-sidebar-close:hover {
	background: rgba(220, 53, 69, 0.12);
	color: #dc3545;
	transform: rotate(90deg);
	box-shadow: 0 3px 10px rgba(220, 53, 69, 0.2);
}

.snc-sidebar-close:hover::before {
	transform: scale(1);
}

.snc-sidebar-close:active {
	transform: rotate(90deg) scale(0.95);
}

/* Hidden sidebar state */
.snc-fiverr-sidebar.snc-sidebar-hidden {
	transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
}

/* Mobile toggle button */
.snc-mobile-sidebar-toggle {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #007cba;
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 12px 20px;
	box-shadow: 0 4px 20px rgba(0, 124, 186, 0.3);
	cursor: pointer;
	z-index: 999;
	font-size: 14px;
	font-weight: 600;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.snc-mobile-sidebar-toggle:hover {
	background: #005a87;
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0, 124, 186, 0.4);
}

.snc-mobile-sidebar-toggle .dashicons {
	font-size: 18px;
}

.snc-package-tabs {
	display: flex;
	border-bottom: 1px solid #f0f0f0;
}

.snc-package-tab {
	flex: 1;
	padding: 15px 10px;
	background: #fff;
	border: none;
	border-bottom: 3px solid transparent;
	font-size: 14px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}

.snc-package-tab:hover {
	color: #333;
	background: #f8f9fa;
}

.snc-package-tab.active {
	color: #2271b1;
	border-bottom-color: #2271b1;
	background: #f8f9ff;
}

.snc-sidebar-content {
	padding: 30px 25px;
}

/* Price Display */
.snc-price-display {
	text-align: center;
	margin-bottom: 20px;
}

.snc-currency {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	vertical-align: top;
}

.snc-price-amount {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	line-height: 1;
}

/* Savings Offer */
.snc-savings-offer {
	text-align: center;
	margin-bottom: 25px;
	font-size: 14px;
	color: #666;
	line-height: 1.4;
}

.snc-subscribe-link {
	color: #2271b1;
	text-decoration: none;
	font-weight: 600;
}

.snc-subscribe-link:hover {
	text-decoration: underline;
}

.snc-info-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #666;
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	text-align: center;
	line-height: 16px;
	margin-left: 5px;
	cursor: help;
}

/* Package Description */
.snc-package-description {
	font-size: 16px;
	color: #333;
	line-height: 1.6;
	margin-bottom: 25px;
	text-align: center;
}

/* Features Summary */
.snc-features-summary {
	margin-bottom: 30px;
}

.snc-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	padding: 8px 0;
}

.snc-feature-icon {
	font-size: 18px;
	width: 24px;
	text-align: center;
}

.snc-feature-text {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

/* ==========================================================================
   7. Action Buttons
   ========================================================================== */

.snc-action-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.snc-continue-button {
	width: 100%;
	padding: 16px 24px;
	background: linear-gradient(135deg, #000 0%, #2d2d2d 100%);
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
}

.snc-continue-button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-continue-button:hover {
	background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.snc-continue-button:hover::before {
	transform: translateX(0);
}

.snc-continue-button:active {
	transform: translateY(-1px);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.snc-arrow-icon {
	font-size: 18px;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.snc-continue-button:hover .snc-arrow-icon {
	transform: translateX(5px);
}

.snc-contact-button {
	width: 100%;
	padding: 16px 24px;
	background: #fff;
	color: #333;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.snc-contact-button:hover {
	border-color: #2271b1;
	background: #f8f9fa;
	color: #2271b1;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.15);
}

.snc-contact-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   8. Interactive States and Animations
   ========================================================================== */

/* Selected Package Highlighting */
.snc-package-column-header.selected {
	background: #f0f4ff;
	border-color: #2271b1;
	transform: scale(1.02);
	transition: all 0.3s ease;
}

/* Price Update Animation */
.price-updating {
	animation: pricePulse 0.3s ease-in-out;
}

@keyframes pricePulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); color: #2271b1; }
	100% { transform: scale(1); }
}

/* Delivery Option Hover Effects */
.snc-delivery-option:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.15);
}

/* Package Cell Hover Effects */
.snc-package-cell:hover {
	background: #f8f9ff;
	transition: background 0.3s ease;
}

/* Sidebar Update Animation */
.snc-fiverr-sidebar.updating {
	opacity: 0.8;
	transform: scale(0.98);
	transition: all 0.3s ease;
}

/* Feature Value Highlighting */
.snc-feature-value.highlighted {
	background: rgba(34, 113, 177, 0.1);
	border: 2px solid #2271b1;
	border-radius: 4px;
	transform: scale(1.05);
	transition: all 0.3s ease;
}

/* ==========================================================================
   9. Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
	.snc-fiverr-layout {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 30px 20px;
	}
	
	.snc-fiverr-sidebar {
		position: static;
		order: -1;
	}
}

@media (max-width: 992px) {
	/* Hide comparison table on tablet and below */
	.snc-fiverr-comparison-table,
	.snc-comparison-properties-table {
		display: none !important;
	}
	
	/* Mobile notice for hidden comparison table */
	.snc-comparison-main::before {
		content: 'Use the package selector below to view package details. Detailed comparison table is available on desktop.';
		display: block;
		padding: 18px;
		background: #e7f3ff;
		border: 1px solid #b3d9ff;
		border-radius: 8px;
		color: #004a99;
		font-size: 14px;
		line-height: 1.6;
		text-align: center;
		margin-bottom: 20px;
		font-weight: 500;
	}
	
	.snc-table-header,
	.snc-table-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.snc-feature-column {
		display: none;
	}
	
	.snc-package-column-header,
	.snc-package-cell {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
		padding: 20px 15px;
	}
	
	.snc-package-column-header {
		background: #f8f9fa;
		margin-bottom: 10px;
		border-radius: 8px;
	}
	
	.snc-package-column-header:last-child,
	.snc-package-cell:last-child {
		border-bottom: none;
	}
	
	.snc-table-row {
		margin-bottom: 15px;
		background: #fff;
		border-radius: 8px;
		padding: 15px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}
	
	.snc-feature-cell {
		background: #f8f9fa;
		padding: 12px 15px;
		border-radius: 6px;
		margin-bottom: 10px;
	}
	
	.snc-feature-name {
		font-size: 15px;
		font-weight: 600;
		color: #333;
	}
	
	.snc-package-cell {
		text-align: left;
		padding: 12px 15px;
	}
	
	.snc-package-cell::before {
		content: attr(data-package-type);
		display: block;
		font-size: 12px;
		color: #999;
		text-transform: uppercase;
		margin-bottom: 5px;
		font-weight: 600;
	}
	
	.snc-select-package {
		width: 100%;
		margin-top: 10px;
	}
	
	/* Enhanced sidebar for tablets */
	.snc-fiverr-sidebar {
		position: static;
		max-height: none;
	}
}

@media (max-width: 1024px) {
	.snc-fiverr-layout {
		gap: 20px;
	}
	
	.snc-comparison-main {
		max-width: calc(100% - 340px);
	}
	
	.snc-comparison-sidebar {
		width: 320px;
	}
}

@media (max-width: 768px) {
	.snc-fiverr-layout {
		flex-direction: column;
		padding: 20px 15px;
		gap: 20px;
	}
	
	.snc-comparison-main {
		max-width: 100%;
		order: 1;
	}
	
	.snc-comparison-sidebar {
		width: 100%;
		order: 2;
	}
	
	.snc-mobile-sidebar-toggle {
		display: flex;
	}
	
	.snc-fiverr-sidebar {
		position: fixed !important;
		bottom: 0 !important;
		left: 0 !important;
		right: 0 !important;
		top: auto !important;
		width: auto;
		max-height: 50vh;
		border-radius: 12px 12px 0 0;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
		transform: translateY(100%);
		transition: transform 0.3s ease;
	}
	
	.snc-fiverr-sidebar.snc-sidebar-visible {
		transform: translateY(0);
	}
	
	.snc-sidebar-close {
		display: flex;
	}
	
	.snc-package-column-header {
		padding: 20px 15px;
	}
	
	.snc-package-cell {
		padding: 15px;
	}
	
	.snc-sidebar-content {
		padding: 20px 15px;
	}
	
	.snc-package-price {
		font-size: 28px;
	}
	
	.snc-price-amount {
		font-size: 36px;
	}
	
	.snc-package-title {
		font-size: 18px;
	}
	
	/* HIDE COMPARISON TABLE ON MOBILE */
	.snc-fiverr-comparison-table,
	.snc-comparison-properties-table {
		display: none !important;
	}
	
	/* Mobile notice for hidden comparison table */
	.snc-comparison-main {
		position: relative;
	}
	
	.snc-comparison-main::before {
		content: 'Use the package selector below to view package details. Detailed comparison table is available on desktop.';
		display: block;
		padding: 20px;
		background: #e7f3ff;
		border: 1px solid #b3d9ff;
		border-radius: 8px;
		color: #004a99;
		font-size: 14px;
		line-height: 1.6;
		text-align: center;
		margin-bottom: 20px;
		font-weight: 500;
	}
}

@media (max-width: 480px) {
	.snc-comparison-header {
		padding: 20px 12px 15px;
	}
	
	.snc-comparison-header h2 {
		font-size: 18px;
	}
	
	.snc-package-tabs {
		flex-direction: column;
	}
	
	.snc-package-tab {
		border-bottom: 1px solid #f0f0f0;
		border-right: none;
		padding: 12px 10px;
		font-size: 13px;
	}
	
	.snc-package-tab.active {
		border-bottom-color: #f0f0f0;
		border-left: 3px solid #2271b1;
	}
	
	/* HIDE COMPARISON TABLE ON SMALL MOBILE */
	.snc-fiverr-comparison-table,
	.snc-comparison-properties-table {
		display: none !important;
	}
	
	/* Mobile notice styling for small screens */
	.snc-comparison-main::before {
		padding: 15px;
		font-size: 13px;
		margin-bottom: 15px;
	}
	
	.snc-fiverr-layout {
		padding: 15px 12px;
	}
	
	.snc-sidebar-content {
		padding: 18px 12px;
	}
	
	.snc-package-price {
		font-size: 24px;
	}
	
	.snc-price-amount {
		font-size: 32px;
	}
	
	.snc-package-title {
		font-size: 16px;
	}
	
	.snc-package-description {
		font-size: 14px;
	}
	
	.snc-feature-text {
		font-size: 13px;
	}
	
	.snc-continue-button,
	.snc-contact-button {
		padding: 12px 18px;
		font-size: 15px;
	}
	
	.snc-fiverr-sidebar {
		max-height: 60vh;
	}
}

/* ==========================================================================
   9. Animation and Transitions
   ========================================================================== */

.snc-package-comparison-wrapper {
	animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.snc-package-column {
	animation: slideInLeft 0.6s ease-out;
}

.snc-package-column:nth-child(2) {
	animation-delay: 0.1s;
}

.snc-package-column:nth-child(3) {
	animation-delay: 0.2s;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.snc-package-selection-sidebar {
	animation: slideInRight 0.6s ease-out 0.3s both;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ==========================================================================
   10. Loading States
   ========================================================================== */

.snc-package-comparison-loading {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 300px;
}

.snc-package-comparison-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #f0f0f0;
	border-left-color: #2271b1;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ==========================================================================
   11. Custom Properties Comparison Table
   ========================================================================== */

.snc-comparison-properties-table {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-top: 30px;
}

.snc-properties-header-row {
	display: grid;
	grid-template-columns: 1fr 3fr;
	background: #f8f9fa;
	border-bottom: 1px solid #e0e0e0;
}

.snc-property-name-column {
	padding: 20px 25px;
	border-right: 1px solid #e0e0e0;
}

.snc-properties-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.snc-property-packages-column {
	display: flex;
}

.snc-package-columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

.snc-package-column-header {
	padding: 20px 15px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	border-right: 1px solid #e0e0e0;
}

.snc-package-column-header:last-child {
	border-right: none;
}

.snc-package-column-header.basic {
	color: #2271b1;
}

.snc-package-column-header.standard {
	color: #28a745;
}

.snc-package-column-header.premium {
	color: #fd7e14;
}

.snc-properties-body {
	background: #fff;
}

.snc-property-row {
	display: grid;
	grid-template-columns: 1fr 3fr;
	border-bottom: 1px solid #f0f0f0;
	transition: background 0.3s ease;
}

.snc-property-row:hover {
	background: #f8f9fa;
}

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

.snc-property-info {
	display: flex;
	align-items: center;
	padding: 20px 25px;
	border-right: 1px solid #f0f0f0;
}

.snc-property-icon {
	font-size: 20px;
	margin-right: 15px;
	width: 24px;
	text-align: center;
}

.snc-property-details {
	flex: 1;
}

.snc-property-name {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.snc-property-description {
	display: block;
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.snc-property-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.snc-property-value {
	padding: 20px 15px;
	text-align: center;
	font-size: 14px;
	color: #333;
	border-right: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.snc-property-value:last-child {
	border-right: none;
}

.snc-checkmark {
	color: #28a745;
	font-size: 18px;
	font-weight: bold;
}

.snc-no-checkmark {
	color: #dc3545;
	font-size: 16px;
}

.snc-property-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.snc-property-list li {
	padding: 2px 0;
	font-size: 13px;
	color: #666;
	position: relative;
	padding-left: 15px;
}

.snc-property-list li:before {
	content: '•';
	color: #2271b1;
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* Property value highlighting */
.snc-property-value.basic {
	background: rgba(34, 113, 177, 0.05);
}

.snc-property-value.standard {
	background: rgba(40, 167, 69, 0.05);
}

.snc-property-value.premium {
	background: rgba(253, 126, 20, 0.05);
}

/* ==========================================================================
   12. Responsive Custom Properties
   ========================================================================== */

@media (max-width: 992px) {
	.snc-properties-header-row,
	.snc-property-row {
		grid-template-columns: 1fr;
	}
	
	.snc-property-name-column,
	.snc-property-info {
		border-right: none;
		border-bottom: 1px solid #e0e0e0;
	}
	
	.snc-package-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.snc-property-packages-column {
		order: -1;
	}
}

@media (max-width: 768px) {
	.snc-property-name-column,
	.snc-property-info {
		padding: 15px 20px;
	}
	
	.snc-package-column-header,
	.snc-property-value {
		padding: 15px 10px;
		font-size: 13px;
	}
	
	.snc-property-name {
		font-size: 15px;
	}
	
	.snc-property-description {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.snc-properties-title {
		font-size: 16px;
	}
	
	.snc-package-columns {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.snc-package-column-header,
	.snc-property-value {
		border-right: none;
		border-bottom: 1px solid #f0f0f0;
		padding: 10px 15px;
		text-align: left;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	.snc-package-column-header:last-child,
	.snc-property-value:last-child {
		border-bottom: none;
	}
	
	.snc-property-value:before {
		content: attr(data-package-type);
		text-transform: capitalize;
		font-weight: 600;
		color: #666;
		font-size: 12px;
	}
}

/* ==========================================================================
   13. Accessibility
   ========================================================================== */

.snc-delivery-option:focus-within {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

.snc-package-tab:focus,
.snc-select-package:focus,
.snc-continue-button:focus,
.snc-contact-button:focus {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}

/* Screen reader only text */
.snc-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
