/* Homepower Premium Shop Layout - Vanilla CSS */

/* ==========================================================================
   1. Base & Layout Overrides
   ========================================================================== */
.post-type-archive-product .shop-page-title {
	display: none !important; /* Hide Flatsome duplicate shop title */
}

.shop-container {
	padding-bottom: 5rem;
}

/* Custom page width override for WooCommerce shop and archive pages to reduce side whitespace */
.post-type-archive-product .category-page-row,
.tax-product_cat .category-page-row {
	max-width: 1280px !important;
}

@media (min-width: 1200px) and (max-width: 1320px) {
	.post-type-archive-product .category-page-row,
	.tax-product_cat .category-page-row {
		width: 92% !important;
		max-width: 1280px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
	.post-type-archive-product .category-page-row,
	.tax-product_cat .category-page-row {
		padding-left: 20px !important;
		padding-right: 20px !important;
		width: 100% !important;
	}
}

@media (max-width: 767px) {
	.post-type-archive-product .category-page-row,
	.tax-product_cat .category-page-row {
		padding-left: 0 !important;
		padding-right: 0 !important;
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.post-type-archive-product .category-page-row > .col,
	.tax-product_cat .category-page-row > .col {
		padding-left: 4px !important;
		padding-right: 4px !important;
	}

	.post-type-archive-product .products.row,
	.tax-product_cat .products.row {
		margin-left: -4px !important;
		margin-right: -4px !important;
		width: auto !important;
	}

	.post-type-archive-product .products.row .product-small.col,
	.tax-product_cat .products.row .product-small.col {
		padding-left: 4px !important;
		padding-right: 4px !important;
	}

	.hp-breadcrumbs {
		padding: 0 4px !important;
	}
}

/* Custom Grid for Product Listing */
.hp-products-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 1rem;
	row-gap: 2.5rem;
	transition: opacity 300ms ease-out, filter 300ms ease-out, transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
}

@media (min-width: 550px) {
	.hp-products-grid {
		column-gap: 1.5rem;
	}
}

@media (min-width: 768px) {
	.hp-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.hp-products-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* ==========================================================================
   2. Breadcrumbs
   ========================================================================== */
.hp-breadcrumbs-wrapper {
	background-color: transparent;
	padding: 1.25rem 0;
}

.hp-breadcrumbs {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 15px;
	font-size: 0.8125rem;
	color: #475569; /* slate-600 */
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.hp-breadcrumbs a {
	color: #475569;
	text-decoration: none;
	transition: color 0.2s ease;
}

.hp-breadcrumbs a:hover {
	color: #009EE3; /* primary-blue */
}

.hp-breadcrumbs-arrow {
	width: 0.875rem;
	height: 0.875rem;
	stroke: #cbd5e1; /* slate-300 */
}

.hp-breadcrumbs-current {
	color: #475569;
	font-weight: 600;
}

/* ==========================================================================
   3. Sidebar Filters General Structure
   ========================================================================== */
.hp-shop-sidebar {
	padding-right: 0.5rem;
	position: sticky;
	top: 2rem;
	align-self: start;
}

.homepower-sidebar-filters {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	user-select: none;
}

.hp-filter-section {
	width: 100%;
}

.hp-filter-title {
	font-size: 0.75rem;
	font-weight: 900;
	color: #009EE3;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-top: 0;
	margin-bottom: 1rem;
}

.hp-sidebar-divider {
	border: 0;
	border-top: 1px solid #f1f5f9;
	margin: 0.25rem 0;
}

/* ==========================================================================
   4. Category Filter List
   ========================================================================== */
.hp-category-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hp-category-list li {
	margin: 0;
	padding: 0;
}

.hp-category-list .cat-filter-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.375rem 0;
	font-size: 0.875rem;
	color: #475569;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	cursor: pointer;
}

.hp-category-list .cat-filter-link:hover {
	color: #009EE3;
}

.hp-cat-info-wrapper {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.hp-cat-icon {
	color: #009EE3;
	background-color: #e6f4ff;
	width: 1.75rem;
	height: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.5rem;
	transition: transform 0.2s ease;
}

.hp-cat-icon svg {
	width: 0.875rem;
	height: 0.875rem;
}

.hp-category-list .cat-filter-link:hover .hp-cat-icon {
	transform: scale(1.05);
}

.hp-cat-name {
	font-weight: 700;
	color: #334155;
	transition: transform 0.2s ease;
}

.hp-category-list .cat-filter-link:hover .hp-cat-name {
	transform: translateX(2px);
}

.hp-cat-count {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 700;
}

/* ==========================================================================
   5. Price Range Slider
   ========================================================================== */
.hp-price-slider-wrapper {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 0.25rem 0.125rem;
}

.hp-price-slider-container {
	position: relative;
	width: 100%;
	height: 1.5rem;
	display: flex;
	align-items: center;
}

.hp-price-slider-track-bg {
	position: absolute;
	left: 0;
	right: 0;
	height: 6px;
	background-color: #e2e8f0; /* slate-200 */
	border-radius: 9999px;
	width: 100%;
	z-index: 1;
}

.hp-price-slider-track {
	position: absolute;
	height: 100%;
	background-color: #009EE3;
	border-radius: 9999px;
}

/* Overlapping range inputs */
.hp-price-slider-container .range-slider-input {
	position: absolute;
	width: 100%;
	height: 100%;
	background: none;
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
	left: 0;
	top: 0;
	bottom: 0;
	margin: 0;
	border: 0;
	z-index: 10;
}

/* Webkit browser thumb styling */
.hp-price-slider-container .range-slider-input::-webkit-slider-thumb {
	height: 18px;
	width: 18px;
	border-radius: 50%;
	background-color: #009EE3;
	border: 2.5px solid #ffffff;
	box-shadow: 0 3px 8px rgba(0, 158, 227, 0.25);
	cursor: pointer;
	pointer-events: auto;
	-webkit-appearance: none;
	transition: transform 150ms ease;
}

.hp-price-slider-container .range-slider-input::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}

/* Firefox browser thumb styling */
.hp-price-slider-container .range-slider-input::-moz-range-thumb {
	height: 18px;
	width: 18px;
	border-radius: 50%;
	background-color: #009EE3;
	border: 2.5px solid #ffffff;
	box-shadow: 0 3px 8px rgba(0, 158, 227, 0.25);
	cursor: pointer;
	pointer-events: auto;
	transition: transform 150ms ease;
}

.hp-price-slider-container .range-slider-input::-moz-range-thumb:hover {
	transform: scale(1.15);
}

/* Price range text displays */
.hp-price-indicators {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hp-price-indicator-box {
	position: relative;
	width: 100%;
}

.hp-price-indicator-box input {
	width: 100%;
	text-align: center;
	background-color: rgba(241, 245, 249, 0.5); /* slate-100/50 */
	border: 1px solid #cbd5e1; /* slate-300 */
	color: #475569;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.625rem 0.25rem;
	border-radius: 0.75rem;
	outline: none;
	cursor: default;
}

.hp-price-indicator-sep {
	color: #475569;
	font-size: 0.75rem;
	font-weight: 700;
}

/* ==========================================================================
   6. Checkbox Lists (Brands & Warranty)
   ========================================================================== */
.hp-filter-checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hp-filter-checkbox-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: #475569;
	font-size: 0.875rem;
}

.hp-filter-checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	margin: 0;
}

.hp-filter-checkbox-text {
	font-weight: 700;
	color: #334155;
}

.hp-filter-checkbox-count {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 700;
}

/* Premium Custom Checkboxes */
.brand-filter-cb,
.warranty-filter-cb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #cbd5e1; /* slate-300 */
	border-radius: 5px;
	outline: none;
	cursor: pointer;
	display: inline-grid;
	place-content: center;
	background-color: #ffffff;
	transition: all 200ms ease;
	position: relative;
	margin: 0;
	vertical-align: middle;
}

.brand-filter-cb:hover,
.warranty-filter-cb:hover {
	border-color: #009EE3;
	box-shadow: 0 0 0 3px rgba(0, 158, 227, 0.15);
}

.brand-filter-cb:checked,
.warranty-filter-cb:checked {
	background-color: #009EE3;
	border-color: #009EE3;
}

.brand-filter-cb:checked::before,
.warranty-filter-cb:checked::before {
	content: "";
	width: 9px;
	height: 5px;
	border-left: 2.2px solid #ffffff;
	border-bottom: 2.2px solid #ffffff;
	transform: rotate(-45deg) translate(0.5px, -1px);
}

/* ==========================================================================
   7. Ratings Filter Row
   ========================================================================== */
.hp-rating-filter-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hp-rating-filter-list li {
	margin: 0;
	padding: 0;
}

.hp-rating-filter-list .rating-filter-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.375rem 0.5rem;
	cursor: pointer;
	border-radius: 0.75rem;
	transition: all 0.2s ease;
}

.hp-rating-filter-list .rating-filter-row:hover {
	background-color: rgba(241, 245, 249, 0.5);
}

.hp-rating-stars-wrapper {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.hp-rating-stars {
	display: flex;
	gap: 0.125rem;
}

.hp-star {
	font-size: 1rem;
	line-height: 1;
}

.hp-star-active {
	color: #fbbf24; /* amber-400 */
}

.hp-star-inactive {
	color: #e2e8f0; /* slate-200 */
}

.hp-rating-label-suffix {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 700;
	margin-left: 0.25rem;
}

.hp-rating-count {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 700;
}

/* ==========================================================================
   8. Clear Filters Button
   ========================================================================== */
.hp-clear-filters-wrapper {
	padding-top: 0.5rem;
}

.hp-clear-filters-wrapper .clear-filters-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	border: 1px solid #009EE3 !important;
	color: #009EE3 !important;
	background-color: #ffffff !important;
	padding: 0.75rem 1rem !important;
	border-radius: 9999px !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 0.75rem !important;
	font-weight: 900 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 4px 12px rgba(0, 158, 227, 0.05) !important;
	cursor: pointer !important;
}

.hp-clear-filters-wrapper .clear-filters-btn:hover {
	background-color: #009EE3 !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 16px var(--hp-primary-glow) !important;
}

.hp-clear-filters-wrapper .clear-filters-btn:active {
	transform: translateY(-2px) scale(0.98) !important;
}

.hp-clear-filters-wrapper .clear-filters-btn svg {
	width: 1rem;
	height: 1rem;
	stroke: currentColor;
}

/* ==========================================================================
   9. Toolbar: Title & Sorting
   ========================================================================== */
.hp-shop-toolbar {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2rem;
}

@media (min-width: 576px) {
	.hp-shop-toolbar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.hp-shop-title-wrapper {
	flex-grow: 1;
}

.hp-shop-title {
	font-size: 1.25rem;
	font-weight: 900;
	color: #0f172a; /* slate-900 */
	margin: 0;
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
}

@media (min-width: 576px) {
	.hp-shop-title {
		font-size: 1.5rem;
	}
}

.hp-shop-count {
	font-size: 0.75rem;
	color: #475569; /* slate-600 */
	font-weight: 700;
}

@media (min-width: 576px) {
	.hp-shop-count {
		font-size: 0.875rem;
	}
}

.hp-shop-sorting-wrapper {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	align-self: flex-end;
}

@media (min-width: 576px) {
	.hp-shop-sorting-wrapper {
		align-self: center;
	}
}

.hp-sort-label {
	font-size: 0.75rem;
	font-weight: 800;
	color: #475569; /* slate-600 */
	text-transform: uppercase;
	letter-spacing: 0.05em;
	white-space: nowrap;
	margin: 0 !important;
	padding: 0 !important;
	line-height: 1.2 !important;
}

/* Custom Sorting Select */
.hp-custom-sort {
	position: relative;
	z-index: 30;
	min-width: 140px;
	display: inline-flex;
	align-items: center;
}

.hp-sort-trigger {
	background-color: #ffffff !important;
	border: 1px solid #f1f5f9 !important; /* slate-100 */
	color: #1e293b !important; /* slate-800 */
	font-family: 'Inter', sans-serif !important;
	font-size: 0.8125rem !important; /* 13px */
	font-weight: 900 !important;
	padding: 0.5rem 2.25rem 0.5rem 1rem !important; /* py-2 pl-4 pr-9 */
	border-radius: 9999px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important; /* shadow-sm */
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: 100% !important;
	min-width: 140px !important;
	min-height: 0 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	position: relative !important;
	text-align: left !important;
}

.hp-sort-trigger:hover {
	border-color: #cbd5e1 !important; /* slate-300 */
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05) !important;
}

.hp-sort-trigger .select-arrow-icon {
	width: 1rem;
	height: 1rem;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.2s ease;
	stroke: #475569 !important; /* slate-600 */
	stroke-width: 2px;
}

.hp-sort-trigger[aria-expanded="true"] .select-arrow-icon {
	transform: translateY(-50%) rotate(180deg);
}

.hp-sort-options {
	position: absolute;
	right: 0;
	top: calc(100% + 0.5rem);
	width: 100%;
	min-width: 180px;
	background-color: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	border: 1px solid #f1f5f9 !important;
	border-radius: 0.75rem !important;
	box-shadow: 0 10px 15px -3px rgba(148, 163, 184, 0.15) !important; /* soft drop shadow */
	padding: 0.375rem 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	transform: scale(0.95);
	transform-origin: top right;
	pointer-events: none;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}

/* Open state handles display and opacity in JS */
.hp-sort-options:not(.hidden) {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.sort-option {
	padding: 0.625rem 1rem;
	font-size: 0.875rem;
	font-weight: 700;
	color: #334155 !important; /* slate-700 */
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: all 0.2s ease;
}

.sort-option:hover {
	background-color: rgba(0, 158, 227, 0.08) !important; /* sky-blue/30 */
	color: #009EE3 !important; /* primary-blue */
}

.sort-option .check-mark-icon {
	width: 0.875rem;
	height: 0.875rem;
	color: #009EE3;
}

/* ==========================================================================
   10. Premium Pagination
   ========================================================================== */
.hp-shop-pagination-container {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	margin-top: 4rem;
}

.hp-shop-pagination-container .page-numbers {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 9999px !important; /* Circular buttons */
	border: 1px solid #cbd5e1 !important; /* slate-300 */
	background-color: #ffffff !important;
	color: #475569 !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 900 !important;
	font-size: 0.875rem !important;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	margin: 0 !important;
}

.hp-shop-pagination-container .page-numbers:hover {
	border-color: #009EE3 !important;
	background-color: #e6f4ff !important;
	color: #009EE3 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(0, 158, 227, 0.15) !important;
}

.hp-shop-pagination-container .page-numbers.current {
	background-color: #009EE3 !important;
	border-color: #009EE3 !important;
	color: #ffffff !important;
	box-shadow: 0 4px 12px var(--hp-primary-glow) !important;
	pointer-events: none !important;
}

.hp-shop-pagination-container .page-numbers.dots {
	border: none;
	background: transparent;
	color: #94a3b8;
	pointer-events: none;
}

.hp-shop-pagination-container .page-numbers svg {
	width: 14px;
	height: 14px;
	stroke-width: 2.5px;
}

/* ==========================================================================
   11. Off-Canvas Drawer & Mobile Filtering
   ========================================================================== */
.hp-mobile-filter-btn-wrapper {
	position: fixed;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 40;
}

@media (min-width: 850px) {
	.hp-mobile-filter-btn-wrapper {
		display: none !important;
	}
}

.hp-mobile-filter-btn {
	background-color: #009EE3 !important;
	color: #ffffff !important;
	padding: 0.75rem 1.5rem !important;
	border-radius: 9999px !important;
	font-family: 'Inter', sans-serif !important;
	font-weight: 900 !important;
	font-size: 0.875rem !important;
	letter-spacing: 0.025em !important;
	box-shadow: 0 4px 12px var(--hp-primary-glow) !important;
	border: none !important;
	display: flex !important;
	align-items: center !important;
	gap: 0.5rem !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hp-mobile-filter-btn:hover {
	background-color: var(--hp-primary-hover) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 16px var(--hp-primary-glow) !important;
}

.hp-mobile-filter-btn:active {
	transform: translateY(-2px) scale(0.95) !important;
}

.hp-mobile-filter-icon {
	width: 1rem;
	height: 1rem;
	stroke: currentColor;
}

.hp-mobile-filter-overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}

.hp-mobile-filter-overlay:not(.hidden) {
	opacity: 1;
}

.hp-mobile-filter-drawer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	max-height: 85vh;
	background-color: #ffffff;
	border-radius: 2rem 2rem 0 0;
	z-index: 1000;
	transform: translateY(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 850px) {
	.hp-mobile-filter-drawer {
		display: none !important;
	}
}

.hp-mobile-filter-drawer:not(.translate-y-full) {
	transform: translateY(0) !important;
}

.hp-mobile-drawer-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hp-mobile-drawer-title {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 1rem;
	color: #1e293b;
	margin: 0;
}

.hp-mobile-drawer-close {
	background: #f1f5f9;
	color: #64748b;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1;
}

.hp-mobile-drawer-content {
	padding: 1.5rem;
	overflow-y: auto;
	flex-grow: 1;
}

/* ==========================================================================
   12. Helper Utility Classes (Aligning with shop.js)
   ========================================================================== */
.hidden {
	display: none !important;
}

.opacity-0 {
	opacity: 0 !important;
}

.translate-y-full {
	transform: translateY(100%) !important;
}

.scrollbar-none::-webkit-scrollbar {
	display: none;
}
.scrollbar-none {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* ==========================================================================
   13. AJAX Loading Effects
   ========================================================================== */
.hp-grid-loading {
	opacity: 0.45 !important;
	filter: blur(2.5px) scale(0.985);
	pointer-events: none;
}

/* ==========================================================================
   14. No Products Empty State Styling
   ========================================================================== */
.hp-no-products {
	grid-column: 1 / -1;
	padding: 4rem 1rem;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #f1f5f9;
	border-radius: 1.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.hp-no-products-icon {
	width: 3rem;
	height: 3rem;
	margin: 0 auto 1rem;
	color: #cbd5e1;
}

.hp-no-products-title {
	font-size: 1rem;
	font-weight: 700;
	color: #334155;
	margin-top: 0;
	margin-bottom: 0.25rem;
}

.hp-no-products-desc {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0;
}
