.drv-widget {
	--drv-color-text: #212121;
	--drv-color-muted: #757575;
	--drv-color-border: #e0e0e0;
	--drv-color-soft: #f7f7f7;
	--drv-color-accent: #00897b;
	--drv-color-success: #0a8f53;
	--drv-color-warning-bg: #fff7d7;
	--drv-color-rating: #ffb800;
	box-sizing: border-box;
	color: var(--drv-color-text);
	font-family: var(--drv-font-family), -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.45;
	width: 100%;
}

.drv-widget *,
.drv-widget *::before,
.drv-widget *::after {
	box-sizing: border-box;
}

.drv-icon {
	display: inline-block;
	height: 1em;
	stroke: currentColor;
	vertical-align: -0.12em;
	width: 1em;
}

.drv-placeholder {
	background: #fff;
	border: 1px dashed var(--drv-color-border);
	border-radius: var(--drv-radius);
	display: grid;
	gap: 4px;
	padding: 14px 16px;
}

.drv-placeholder span {
	color: var(--drv-color-muted);
	font-size: 12px;
}

.drv-section-title {
	color: var(--drv-color-text);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 12px;
}

.drv-gallery {
	position: relative;
}

.drv-gallery .swiper {
	background: var(--drv-color-soft);
	width: 100%;
}

.drv-gallery .swiper-slide {
	overflow: hidden;
}

.drv-gallery__image {
	aspect-ratio: 4 / 5;
	display: block;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.drv-gallery--ratio-1-1 .drv-gallery__image {
	aspect-ratio: 1 / 1;
}

.drv-gallery--ratio-3-4 .drv-gallery__image {
	aspect-ratio: 3 / 4;
}

.drv-gallery--ratio-auto .drv-gallery__image {
	aspect-ratio: auto;
}

.drv-gallery .swiper-pagination {
	bottom: 10px;
}

.drv-gallery .swiper-pagination-bullet {
	background: #e0e0e0;
	height: 6px;
	opacity: 1;
	width: 6px;
}

.drv-gallery .swiper-pagination-bullet-active {
	background: var(--drv-color-text);
	height: 8px;
	width: 8px;
}

.drv-gallery__fit,
.drv-gallery__rating,
.drv-gallery__share {
	position: absolute;
	z-index: 3;
}

.drv-gallery__fit {
	background: #0d6b3f;
	border-radius: 4px;
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	left: 12px;
	padding: 4px 10px;
	text-transform: uppercase;
	top: 12px;
}

.drv-gallery__rating {
	align-items: center;
	background: rgba(0, 0, 0, 0.68);
	border-radius: 999px;
	bottom: 18px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	gap: 5px;
	left: 12px;
	padding: 5px 10px;
	text-decoration: none;
}

.drv-gallery__rating .drv-icon {
	color: var(--drv-color-rating);
	fill: currentColor;
}

.drv-gallery__share,
.drv-lowest-price__info,
.drv-wishlist-btn {
	align-items: center;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 50%;
	color: var(--drv-color-text);
	cursor: pointer;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	padding: 0;
	width: 38px;
}

.drv-gallery__share {
	bottom: 18px;
	right: 12px;
}

.drv-brand {
	padding: 14px 16px 0;
}

.drv-brand__link,
.drv-brand__text {
	color: var(--drv-color-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.drv-product-title {
	align-items: flex-start;
	display: flex;
	gap: 12px;
	padding: 6px 16px 0;
}

.drv-product-title__text {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--drv-title-lines, 3);
	color: var(--drv-color-muted);
	display: -webkit-box;
	flex: 1 1 auto;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.45;
	margin: 0;
	overflow: hidden;
}

.drv-product-title__wishlist {
	flex: 0 0 auto;
	height: 34px;
	width: 34px;
}

.drv-wishlist-icon-active {
	display: none;
}

.drv-wishlist-btn.drv-is-active .drv-wishlist-icon-inactive,
.drv-wishlist-btn[aria-pressed="true"] .drv-wishlist-icon-inactive {
	display: none;
}

.drv-wishlist-btn.drv-is-active .drv-wishlist-icon-active,
.drv-wishlist-btn[aria-pressed="true"] .drv-wishlist-icon-active {
	color: #e53935;
	display: inline-flex;
	fill: currentColor;
}

.drv-price {
	padding: 8px 16px 0;
}

.drv-price__row {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.drv-price__current {
	font-size: 20px;
	font-weight: 800;
}

.drv-price__regular {
	color: #9e9e9e;
	font-size: 14px;
	text-decoration: line-through;
}

.drv-price__discount {
	color: var(--drv-color-success);
	font-size: 12px;
	font-weight: 800;
}

.drv-price__tax {
	color: #9e9e9e;
	font-size: 11px;
	margin-top: 2px;
}

.drv-lowest-price {
	align-items: center;
	color: var(--drv-color-accent);
	display: flex;
	gap: 8px;
	padding: 8px 16px 0;
}

.drv-lowest-price__text {
	font-weight: 700;
}

.drv-lowest-price__code {
	background: #e9f7f3;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 800;
	padding: 3px 6px;
}

.drv-lowest-price__info {
	color: var(--drv-color-accent);
	height: 24px;
	width: 24px;
}

.drv-social-proof {
	align-items: center;
	background: var(--drv-color-warning-bg);
	border-radius: var(--drv-radius);
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 8px;
	margin: 12px 16px 0;
	padding: 9px 12px;
}

.drv-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 10px 16px 0;
}

.drv-tags__chip {
	background: #fff;
	border: 1px solid var(--drv-color-border);
	border-radius: 5px;
	font-size: 12px;
	padding: 6px 12px;
}

.drv-size {
	padding: 16px;
}

.drv-size__head,
.drv-offer-card__code,
.drv-review-card__head,
.drv-review-card__meta {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.drv-size__guide-btn {
	background: transparent;
	border: 0;
	color: var(--drv-color-accent);
	cursor: pointer;
	font-weight: 700;
	padding: 0;
}

.drv-size__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.drv-size__pill {
	background: #fff;
	border: 1px solid var(--drv-color-border);
	border-radius: 8px;
	color: var(--drv-color-text);
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	min-height: 40px;
	min-width: 48px;
	padding: 8px 12px;
}

.drv-size__pill.drv-is-selected {
	border-color: var(--drv-color-text);
	box-shadow: inset 0 0 0 1px var(--drv-color-text);
}

.drv-size__pill.drv-is-disabled {
	color: #bdbdbd;
	cursor: not-allowed;
	text-decoration: line-through;
}

.drv-offers,
.drv-pincode,
.drv-highlights,
.drv-accordion,
.drv-trust,
.drv-review-summary,
.drv-review-list,
.drv-product-carousel {
	padding: 16px;
}

.drv-offers .swiper-slide,
.drv-product-carousel .swiper-slide {
	align-items: stretch;
	display: flex;
	height: auto;
	width: min(72vw, 280px);
}

/* ── Offer card ─────────────────────────────────────────────────────────── */
.drv-offer-card {
	border: 1px solid var(--drv-color-border);
	border-radius: var(--drv-radius);
	display: flex;
	flex: 1 1 0%;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	padding: 12px;
	box-sizing: border-box;
	width: 100%;
}

/* Top row: icon badge + text */
.drv-offer-card__top {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.drv-offer-card__top p {
	color: var(--drv-color-muted);
	font-size: 12px;
	margin: 3px 0 0;
}

/* Coloured icon badge */
.drv-offer-card__icon {
	align-items: center;
	background: #fff8e1;
	border-radius: 8px;
	color: #e65100;
	display: flex;
	flex: 0 0 36px;
	font-size: 18px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	width: 36px;
}

.drv-offer-card__icon .drv-icon {
	color: #e65100;
	height: 20px;
	width: 20px;
}

/* Code + button row */
.drv-offer-card__code {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.drv-offer-card__code code {
	background: #f6f6f6;
	border: 1px dashed #bdbdbd;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.03em;
	padding: 5px 8px;
}

.drv-offer-card__code button:not(.drv-offer-apply-btn),
.drv-review-card__meta button,
.drv-review-list__all {
	background: transparent;
	border: 0;
	color: var(--drv-color-accent);
	cursor: pointer;
	font-weight: 700;
	padding: 0;
	text-decoration: none;
}

/* Apply / Applied button */
.drv-offer-apply-btn {
	background: transparent;
	border: 1.5px solid var(--drv-color-accent);
	border-radius: 4px;
	color: var(--drv-color-accent);
	cursor: pointer;
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	transition: background 0.15s ease, color 0.15s ease;
	white-space: nowrap;
}

.drv-offer-apply-btn:hover:not(:disabled) {
	background: var(--drv-color-accent);
	color: #fff;
}

.drv-offer-apply-btn.drv-offer-applied {
	background: var(--drv-color-success, #0d6b3f);
	border-color: var(--drv-color-success, #0d6b3f);
	color: #fff;
	cursor: pointer;
}

/* Remove coupon — the apply button now toggles to remove state */
.drv-offer-apply-btn.drv-offer-applied:hover {
	background: #b32d2e;
	border-color: #b32d2e;
	color: #fff;
}

/* Progress bar for locked coupons — compact, no dead space */
.drv-offer-card--locked {
	opacity: 0.85;
}

.drv-offer-card__progress {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 8px;
}

.drv-offer-card__progress-bar {
	background: #e9e9e9;
	border-radius: 999px;
	height: 6px;
	overflow: hidden;
	width: 100%;
}

.drv-offer-card__progress-fill {
	background: var(--drv-color-success, #0d6b3f);
	border-radius: 999px;
	height: 100%;
	transition: width 0.4s ease;
}

.drv-offer-card__unlock-msg {
	color: var(--drv-color-muted);
	font-size: 11px;
	margin: 0;
}

.drv-offer-card__unlock-msg strong {
	color: var(--drv-color-success, #0d6b3f);
}

.drv-offer-card__lock-note {
	color: var(--drv-color-muted);
	font-size: 11px;
	margin: 4px 0 0;
}

/* Auto-offer footer: "Auto applied offer" + "View all items >" */
.drv-offer-card__footer {
	align-items: center;
	border-top: 1px solid var(--drv-color-border);
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	padding-top: 8px;
}

.drv-offer-card__auto-tag {
	color: var(--drv-color-muted);
	font-size: 11px;
	font-weight: 600;
}

.drv-offer-card__view-all {
	align-items: center;
	color: var(--drv-color-accent);
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 2px;
	text-decoration: none;
	white-space: nowrap;
}

.drv-offer-card__view-all:hover {
	text-decoration: underline;
}

/* Feedback message */
.drv-offer-card__msg {
	font-size: 11px;
	font-weight: 600;
	margin-top: 5px;
	min-height: 0;
}

.drv-offer-card__msg:empty {
	display: none;
}

.drv-offer-card__msg--success {
	color: var(--drv-color-success, #0d6b3f);
}

.drv-offer-card__msg--error {
	color: #e44c4c;
}

.drv-pincode__form {
	border: 1px solid var(--drv-color-border);
	border-radius: var(--drv-radius);
	display: flex;
	overflow: hidden;
}

.drv-pincode__form input {
	border: 0;
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px;
}

.drv-pincode__form button {
	background: #fdd835;
	border: 0;
	color: var(--drv-color-text);
	cursor: pointer;
	font-weight: 800;
	padding: 0 16px;
}

.drv-pincode__result {
	color: var(--drv-color-muted);
	font-size: 12px;
	margin-top: 8px;
}

.drv-pincode__result.drv-is-success {
	color: var(--drv-color-success);
}

.drv-pincode__result.drv-is-error {
	color: #b32d2e;
}

.drv-shipping-badge {
	align-items: center;
	background: #e9f7f3;
	border-radius: var(--drv-radius);
	color: #0d6b3f;
	display: flex;
	font-weight: 800;
	gap: 8px;
	margin: 0 16px;
	padding: 12px;
}

.drv-highlights__grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drv-highlights__grid > * {
	background: #fafafa;
	border-radius: var(--drv-radius);
	padding: 10px;
}

.drv-highlights__grid span {
	color: var(--drv-color-muted);
	display: block;
	font-size: 12px;
	margin-bottom: 3px;
}

.drv-accordion {
	display: grid;
	gap: 8px;
}

.drv-accordion__item {
	border-bottom: 1px solid var(--drv-color-border);
}

.drv-accordion__trigger {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--drv-color-text);
	cursor: pointer;
	display: flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: space-between;
	padding: 14px 0;
	width: 100%;
}

.drv-accordion__content {
	color: var(--drv-color-muted);
	display: none;
	font-size: 13px;
	padding: 0 0 14px;
}

.drv-accordion__item.drv-is-open .drv-accordion__content {
	display: block;
}

.drv-accordion__item.drv-is-open .drv-icon {
	transform: rotate(180deg);
}

.drv-trust__grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.drv-trust__item {
	align-items: center;
	border: 1px solid var(--drv-color-border);
	border-radius: var(--drv-radius);
	display: grid;
	gap: 4px;
	justify-items: center;
	min-height: 96px;
	padding: 10px 6px;
	text-align: center;
}

.drv-trust__item strong {
	font-size: 12px;
}

.drv-trust__item span {
	color: var(--drv-color-muted);
	font-size: 11px;
}

.drv-review-tabs,
.drv-review-filters {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding-bottom: 8px;
}

.drv-review-tabs button,
.drv-review-filters button {
	background: #fff;
	border: 1px solid var(--drv-color-border);
	border-radius: 999px;
	color: var(--drv-color-text);
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	padding: 8px 12px;
	white-space: nowrap;
}

.drv-review-tabs button.drv-is-active,
.drv-review-filters button.drv-is-active {
	background: var(--drv-color-text);
	border-color: var(--drv-color-text);
	color: #fff;
}

.drv-review-summary__body {
	border: 1px solid var(--drv-color-border);
	border-radius: var(--drv-radius);
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(100px, 0.8fr) minmax(0, 1.2fr);
	padding: 14px;
}

.drv-review-summary__score {
	display: grid;
	gap: 5px;
}

.drv-review-summary__score strong {
	font-size: 36px;
	line-height: 1;
}

.drv-review-summary__score span,
.drv-review-summary__score em {
	color: var(--drv-color-muted);
	font-size: 12px;
	font-style: normal;
}

.drv-review-bars {
	display: grid;
	gap: 7px;
}

.drv-review-bars__row {
	align-items: center;
	display: grid;
	gap: 8px;
	grid-template-columns: 38px minmax(0, 1fr) 28px;
}

.drv-review-bars__row div {
	background: #eeeeee;
	border-radius: 999px;
	height: 6px;
	overflow: hidden;
}

.drv-review-bars__row i {
	background: var(--drv-color-success);
	display: block;
	height: 100%;
}

.drv-review-summary__rate,
.drv-review-list__all {
	border: 1px solid var(--drv-color-accent);
	border-radius: var(--drv-radius);
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	margin-top: 12px;
	padding: 10px 14px;
	width: 100%;
}

.drv-review-list {
	display: grid;
	gap: 12px;
}

.drv-review-card {
	border: 1px solid var(--drv-color-border);
	border-radius: var(--drv-radius);
	display: grid;
	gap: 8px;
	padding: 12px;
}

.drv-review-card__head span {
	align-items: center;
	background: #0d6b3f;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	gap: 3px;
	padding: 3px 8px;
}

.drv-review-card__head .drv-icon {
	color: var(--drv-color-rating);
	fill: currentColor;
}

.drv-review-card__content {
	color: var(--drv-color-muted);
	font-size: 13px;
}

.drv-review-card__content p {
	margin: 0;
}

.drv-review-card__meta {
	color: #9e9e9e;
	font-size: 12px;
}

.drv-product-card {
	background: #fff;
	border: 1px solid var(--drv-color-border);
	border-radius: var(--drv-radius);
	min-height: 100%;
	overflow: hidden;
	position: relative;
}

.drv-product-card__image {
	background: var(--drv-color-soft);
	display: block;
}

.drv-product-card__image img {
	aspect-ratio: 3 / 4;
	display: block;
	object-fit: cover;
	width: 100%;
}

.drv-product-card__body {
	display: grid;
	gap: 6px;
	padding: 10px;
}

.drv-product-card__title {
	color: var(--drv-color-text);
	display: -webkit-box;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	overflow: hidden;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.drv-product-card__price {
	align-items: baseline;
	display: flex;
	gap: 7px;
}

.drv-product-card__price strong {
	font-size: 14px;
}

.drv-product-card__price span {
	color: #9e9e9e;
	font-size: 12px;
	text-decoration: line-through;
}

.drv-product-card .drv-wishlist-btn {
	position: absolute;
	right: 8px;
	top: 8px;
}

.drv-modal {
	align-items: end;
	background: rgba(0, 0, 0, 0.45);
	bottom: 0;
	display: flex;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9997;
}

.drv-modal[hidden] {
	display: none;
}

.drv-modal__panel {
	background: #fff;
	border-radius: 16px 16px 0 0;
	max-height: calc(82vh - var(--drv-sticky-bar-height, 62px));
	overflow: auto;
	padding: 18px;
	padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	position: relative;
	width: 100%;
	margin-bottom: var(--drv-sticky-bar-height, 62px);
}

.drv-modal__close {
	background: #f1f1f1;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	height: 32px;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 32px;
}

.drv-modal__content {
	padding-top: 28px;
}

.drv-modal__content img {
	display: block;
	height: auto;
	max-width: 100%;
}

.drv-modal__content table {
	border-collapse: collapse;
	width: 100%;
}

.drv-modal__content th,
.drv-modal__content td {
	border: 1px solid var(--drv-color-border);
	padding: 8px;
	text-align: left;
}

.drv-sg__radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.drv-sg__tabs {
	display: flex;
	border-bottom: 1px solid var(--drv-color-border);
	margin-bottom: 16px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.drv-sg__tabs::-webkit-scrollbar {
	display: none;
}

.drv-sg__tab {
	flex: 1 0 auto;
	text-align: center;
	padding: 10px 12px;
	font-weight: 600;
	font-size: 14px;
	color: #888;
	border-bottom: 2px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

.drv-sg__panel {
	display: none;
}

.drv-sg__panel img {
	display: block;
	height: auto;
	max-width: 100%;
	margin: 0 auto 12px;
}

.drv-sg__content table {
	border-collapse: collapse;
	width: 100%;
	text-align: center;
}

.drv-sg__content th,
.drv-sg__content td {
	border: 1px solid var(--drv-color-border);
	padding: 8px;
	font-size: 13px;
}

.drv-sg__radio:nth-of-type(1):checked ~ .drv-sg__tabs .drv-sg__tab:nth-child(1),
.drv-sg__radio:nth-of-type(2):checked ~ .drv-sg__tabs .drv-sg__tab:nth-child(2),
.drv-sg__radio:nth-of-type(3):checked ~ .drv-sg__tabs .drv-sg__tab:nth-child(3) {
	color: #111;
	border-bottom-color: var(--drv-color-accent, #e2b93b);
}

.drv-sg__radio:nth-of-type(1):checked ~ .drv-sg__panel--1,
.drv-sg__radio:nth-of-type(2):checked ~ .drv-sg__panel--2,
.drv-sg__radio:nth-of-type(3):checked ~ .drv-sg__panel--3 {
	display: block;
}

.drv-tooltip-pop {
	background: #212121;
	border-radius: 6px;
	color: #fff;
	font: 12px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	max-width: 260px;
	padding: 8px 10px;
	position: absolute;
	z-index: 9996;
}

@media (min-width: 768px) {
	.drv-gallery__image {
		aspect-ratio: 4 / 5;
	}

	.drv-offers .swiper-slide,
	.drv-cart-coupons .swiper-slide,
	.drv-product-carousel .swiper-slide {
		width: 240px;
	}

	.drv-review-summary__body {
		grid-template-columns: minmax(140px, 0.7fr) minmax(0, 1.3fr);
	}

	.drv-modal {
		align-items: center;
		justify-content: center;
	}

	.drv-modal__panel {
		border-radius: var(--drv-radius);
		max-width: 720px;
	}
}

/* ── Carousel widget wrapper resets ─────────────────────────────────────── */
/* Remove any border/background that Elementor or the theme adds to the     */
/* widget wrapper element for Brand Carousel and Related Products.           */
.elementor-widget-dravin_pdp_brand_carousel .elementor-widget-container,
.elementor-widget-dravin_pdp_related_products .elementor-widget-container {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	padding: 0 !important;
}

.elementor-widget-dravin_pdp_brand_carousel,
.elementor-widget-dravin_pdp_related_products {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
}

/* Reset theme's global section/article styles leaking into the carousel */
section.drv-pdp-carousel,
section.dravin-product-slider.drv-pdp-carousel {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	color: inherit !important;
	padding: 0 !important;
	margin: 0 !important;
}



@media (max-width: 480px) {
	.drv-trust__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.drv-review-summary__body {
		grid-template-columns: 1fr;
	}

	.drv-highlights__grid {
		grid-template-columns: 1fr 1fr;
	}
}
