/* Daily Dây Điện Homepage UI — Phase 1 desktop base */
:root {
	--ddd-primary: #1e73be;
	--ddd-primary-dark: #155a96;
	--ddd-cta: #c62828;
	--ddd-bg: #f5f7fa;
	--ddd-surface: #ffffff;
	--ddd-text: #1a1a1a;
	--ddd-muted: #5c6770;
	--ddd-border: #e3e8ef;
	--ddd-radius: 8px;
	--ddd-header-z: 10050;
	--ddd-announce-h: 36px;
	--ddd-font: "Merriweather Sans", "Segoe UI", Tahoma, sans-serif;
}

.ddd-home-ui--hide-theme-header .tdc-header-wrap,
.ddd-home-ui--hide-theme-header .td-header-wrap,
.ddd-home-ui--hide-theme-header .td-header-desktop-wrap,
.ddd-home-ui--hide-theme-header .td-header-mobile-wrap,
.ddd-home-ui--hide-theme-header .td-header-template-wrap {
	display: none !important;
}

.ddd-home-ui--hide-theme-footer .td-footer-wrapper,
.ddd-home-ui--hide-theme-footer .td-footer-container,
.ddd-home-ui--hide-theme-footer .td-sub-footer-container,
.ddd-home-ui--hide-theme-footer .tdc-footer-wrap,
.ddd-home-ui--hide-theme-footer .td-footer-template-wrap,
.ddd-home-ui--hide-theme-footer footer.td-footer-wrap {
	display: none !important;
}

.ddd-announce {
	background: #0f2f4d;
	color: #fff;
	font-family: var(--ddd-font);
	font-size: 13px;
	line-height: 1.3;
	min-height: var(--ddd-announce-h);
}

.ddd-announce__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 8px 16px;
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ddd-announce__text {
	margin: 0;
	flex: 1 1 280px;
}

.ddd-announce__meta {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}

.ddd-announce__link,
.ddd-announce__hours {
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}

/* Theme often forces dark color on tel: links — keep announce CTAs white like Zalo. */
.ddd-announce a.ddd-announce__link,
.ddd-announce a.ddd-announce__link[href^="tel:"] {
	color: #fff !important;
}

.ddd-announce__link:hover,
.ddd-announce__link:focus {
	text-decoration: underline;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.ddd-header {
	position: sticky;
	top: 0;
	z-index: var(--ddd-header-z);
	background: var(--ddd-surface);
	border-bottom: 1px solid var(--ddd-border);
	font-family: var(--ddd-font);
	color: var(--ddd-text);
}

.ddd-header.is-stuck {
	box-shadow: none;
	border-bottom-color: #d0d7e2;
}

.ddd-header__bar {
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 16px 12px;
	position: relative;
	overflow: visible;
}

.ddd-header__row--main {
	display: grid;
	grid-template-columns: auto auto minmax(240px, 1fr) auto;
	gap: 12px;
	align-items: center;
}

.ddd-header__menu-toggle {
	display: none;
}

.ddd-header__logo {
	display: inline-flex;
	align-items: center;
	max-width: 180px;
	text-decoration: none;
	color: var(--ddd-text);
}

.ddd-header__logo-img {
	display: block;
	width: auto;
	height: 48px;
	max-width: 100%;
	object-fit: contain;
}

.ddd-header__logo-text {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
}

.ddd-header__cat-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 44px;
	padding: 0 14px;
	border: 0;
	border-radius: var(--ddd-radius);
	background: var(--ddd-primary);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.ddd-header__cat-btn:hover,
.ddd-header__cat-btn:focus {
	background: var(--ddd-primary-dark);
	outline: 2px solid var(--ddd-primary-dark);
	outline-offset: 2px;
}

.ddd-header__cat-btn[aria-expanded="true"] {
	background: var(--ddd-primary-dark);
}

.ddd-search {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	width: 100%;
	min-height: 44px;
	z-index: 2;
}

.ddd-search__input {
	width: 100%;
	height: 44px;
	border: 1px solid var(--ddd-border);
	border-right: 0;
	border-radius: var(--ddd-radius) 0 0 var(--ddd-radius);
	padding: 0 14px;
	font: inherit;
	color: var(--ddd-text);
	background: #fff;
}

.ddd-search__input:focus {
	outline: 2px solid var(--ddd-primary);
	outline-offset: -1px;
	z-index: 1;
}

.ddd-search__clear {
	height: 44px;
	width: 40px;
	border: 1px solid var(--ddd-border);
	border-left: 0;
	border-right: 0;
	background: #fff;
	color: var(--ddd-muted);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.ddd-search__clear[hidden] {
	display: none !important;
}

.ddd-search__clear:hover,
.ddd-search__clear:focus-visible {
	color: var(--ddd-text);
	background: var(--ddd-bg);
}

.ddd-search__submit {
	height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 0 var(--ddd-radius) var(--ddd-radius) 0;
	background: var(--ddd-primary);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.ddd-search__submit:hover,
.ddd-search__submit:focus {
	background: var(--ddd-primary-dark);
}

.ddd-search__suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 4px);
	background: #fff;
	border: 1px solid var(--ddd-border);
	border-radius: var(--ddd-radius);
	max-height: min(420px, 70vh);
	overflow: auto;
	overscroll-behavior: contain;
	z-index: calc(var(--ddd-header-z) + 20);
	-webkit-overflow-scrolling: touch;
}

.ddd-search__item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr) auto;
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid var(--ddd-border);
}

.ddd-search__item:hover,
.ddd-search__item:focus,
.ddd-search__item.is-active {
	background: var(--ddd-bg);
	outline: none;
}

.ddd-search__item.is-active {
	outline: 2px solid var(--ddd-primary);
	outline-offset: -2px;
}

.ddd-search__thumb {
	width: 48px;
	height: 48px;
	object-fit: contain;
	background: var(--ddd-bg);
	border-radius: 4px;
}

.ddd-search__thumb--empty {
	display: block;
}

.ddd-search__title {
	font-weight: 600;
	font-size: 14px;
	margin: 0 0 2px;
	overflow-wrap: anywhere;
}

.ddd-search__meta {
	margin: 0;
	font-size: 12px;
	color: var(--ddd-muted);
	overflow-wrap: anywhere;
}

.ddd-search__price {
	font-size: 13px;
	font-weight: 700;
	color: var(--ddd-cta);
	text-align: right;
	max-width: 140px;
	overflow-wrap: anywhere;
}

.ddd-search__empty,
.ddd-search__status {
	padding: 14px;
	margin: 0;
	color: var(--ddd-muted);
	font-size: 14px;
}

.ddd-search__tips {
	margin: 0;
	padding: 0 12px 10px;
	font-size: 12px;
	color: var(--ddd-muted);
}

.ddd-search__empty-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0 12px 12px;
}

.ddd-search__empty-actions a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid var(--ddd-border);
	border-radius: var(--ddd-radius);
	background: #fff;
	color: var(--ddd-primary);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.ddd-search__empty-actions a:hover,
.ddd-search__empty-actions a:focus-visible {
	border-color: var(--ddd-primary);
	background: var(--ddd-bg);
}

.ddd-search__footer {
	padding: 10px 12px;
	border-top: 1px solid var(--ddd-border);
	background: var(--ddd-bg);
	position: sticky;
	bottom: 0;
}

.ddd-search__view-all {
	display: block;
	font-weight: 700;
	font-size: 13px;
	color: var(--ddd-primary);
	text-decoration: none;
}

.ddd-search__view-all:hover,
.ddd-search__view-all:focus-visible {
	text-decoration: underline;
}

.ddd-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ddd-header__action {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--ddd-text);
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 6px;
	border-radius: 4px;
}

.ddd-header__action:hover,
.ddd-header__action:focus {
	color: var(--ddd-primary);
	outline: 2px solid var(--ddd-primary);
	outline-offset: 2px;
}

.ddd-header__action-label {
	color: var(--ddd-muted);
	font-size: 11px;
}

.ddd-header__action-value {
	font-weight: 700;
	font-size: 13px;
}

.ddd-header__cart {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 40px;
	padding: 0 12px;
	border-radius: var(--ddd-radius);
	background: var(--ddd-bg);
	color: var(--ddd-text);
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}

.ddd-header__cart:hover,
.ddd-header__cart:focus {
	outline: 2px solid var(--ddd-primary);
	outline-offset: 2px;
}

.ddd-header__cart-count {
	display: inline-flex;
	min-width: 20px;
	height: 20px;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--ddd-cta);
	color: #fff;
	font-size: 11px;
}

.ddd-header__cart-count[hidden] {
	display: none !important;
}

.ddd-header__row--mobile-search {
	display: none;
	margin-top: 8px;
}

.ddd-mega {
	position: absolute;
	left: 16px;
	right: 16px;
	top: calc(100% - 4px);
	background: #fff;
	border: 1px solid var(--ddd-border);
	border-radius: var(--ddd-radius);
	padding: 16px;
	z-index: 30;
}

.ddd-mega__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px 16px;
}

.ddd-mega__list a {
	display: block;
	padding: 8px 10px;
	border-radius: 6px;
	color: var(--ddd-text);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.ddd-mega__list a:hover,
.ddd-mega__list a:focus {
	background: var(--ddd-bg);
	color: var(--ddd-primary);
	outline: none;
}

.ddd-mega__list .sub-menu {
	list-style: none;
	margin: 4px 0 0;
	padding: 0 0 0 8px;
}

.ddd-mega__list .sub-menu a {
	font-weight: 400;
	font-size: 13px;
	color: var(--ddd-muted);
}

.ddd-mega__hint {
	margin: 12px 0 0;
	font-size: 12px;
	color: var(--ddd-muted);
}

.ddd-drawer[hidden],
.ddd-mega[hidden],
.ddd-search__suggest[hidden] {
	display: none !important;
}

.ddd-drawer {
	position: fixed;
	inset: 0;
	z-index: calc(var(--ddd-header-z) + 10);
}

.ddd-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.45);
}

.ddd-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: min(88vw, 340px);
	height: 100%;
	background: #fff;
	padding: 20px 16px;
	overflow: auto;
	font-family: var(--ddd-font);
}

.ddd-drawer__close {
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	float: right;
}

.ddd-drawer__list {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}

.ddd-drawer__list a {
	display: block;
	padding: 12px 4px;
	border-bottom: 1px solid var(--ddd-border);
	color: var(--ddd-text);
	text-decoration: none;
	font-weight: 600;
}

.ddd-drawer__contacts {
	margin-top: 20px;
	display: grid;
	gap: 10px;
}

.ddd-drawer__contacts a {
	display: block;
	text-align: center;
	padding: 12px;
	border-radius: var(--ddd-radius);
	background: var(--ddd-primary);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

body.ddd-drawer-open {
	overflow: hidden;
}

/* Phase 5 — footer + mobile CTA + a11y/CWV helpers */
.ddd-footer {
	font-family: var(--ddd-font);
	background: #0f2f4d;
	color: #d7e6f5;
	margin-top: 32px;
}

.ddd-footer a,
.ddd-footer a[href^="tel:"] {
	color: #fff !important;
	text-decoration: none;
}

.ddd-footer a:hover,
.ddd-footer a:focus {
	text-decoration: underline;
}

.ddd-footer a:focus-visible {
	outline: 3px solid #7ec8ff;
	outline-offset: 2px;
}

.ddd-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 36px 16px 28px;
	display: grid;
	grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(170px, 1fr));
	gap: 28px;
}

.ddd-footer__logo img {
	display: block;
	width: auto;
	height: 48px;
	background: #fff;
	border-radius: 6px;
	padding: 4px 8px;
}

.ddd-footer__about {
	margin: 14px 0 16px;
	font-size: 14px;
	line-height: 1.55;
	color: #b7cce0;
	max-width: 42ch;
}

.ddd-footer__contact {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ddd-footer__contact li {
	display: block;
	font-size: 14px;
	line-height: 1.5;
}

.ddd-footer__contact span:first-child {
	display: inline;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #8fb0cc;
	font-weight: 700;
}

.ddd-footer__contact span:first-child::after {
	content: ':';
	margin-right: 0.35em;
}

.ddd-footer__contact li > a,
.ddd-footer__contact li > span:not(:first-child) {
	display: inline;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ddd-footer__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ddd-footer .ddd-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}

.ddd-footer .ddd-btn--ghost:hover,
.ddd-footer .ddd-btn--ghost:focus {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.ddd-footer__col-title {
	margin: 0 0 12px;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ddd-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ddd-footer__links a {
	font-size: 14px;
	color: #cfe0f0;
}

.ddd-footer__map {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: #0c2740;
}

.ddd-footer__map-inner {
	display: grid;
	grid-template-columns: minmax(220px, 0.85fr) minmax(280px, 1.4fr);
	gap: 20px 28px;
	align-items: stretch;
	padding-top: 28px;
	padding-bottom: 28px;
}

.ddd-footer__map-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 12px;
	min-width: 0;
}

.ddd-footer__map-address {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: #b7cce0;
}

.ddd-footer__map-actions {
	list-style: none;
	margin: 4px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ddd-footer__map-frame {
	position: relative;
	min-height: 260px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
	background: #123652;
}

.ddd-footer__map-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 260px;
	border: 0;
}

.ddd-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ddd-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 24px;
	padding: 14px 16px;
}

.ddd-footer__copy {
	margin: 0;
	font-size: 13px;
	color: #8fb0cc;
}

.ddd-footer__legal-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 18px;
	margin: 0;
	padding: 0;
}

.ddd-footer__legal-list li {
	position: relative;
}

.ddd-footer__legal-list li + li::before {
	content: "";
	position: absolute;
	left: -9px;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 12px;
	background: rgba(255, 255, 255, 0.24);
}

.ddd-footer__legal-list a {
	display: inline-block;
	padding: 4px 0;
	font-size: 13px;
	color: #cfe0f0;
}

.ddd-footer__keywords {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: #0c2740;
}

.ddd-footer__keywords-inner {
	display: block;
	padding: 18px 16px 22px;
	max-width: 1280px;
	margin: 0 auto;
}

.ddd-footer__keywords-title {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #8fb0cc;
}

.ddd-footer__keyword-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px 10px;
}

.ddd-footer__keyword-list li {
	margin: 0;
	padding: 0;
	flex: 0 1 auto;
	max-width: 100%;
}

.ddd-footer__keyword-list a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	max-width: 100%;
	padding: 5px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	color: #d7e6f5 !important;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none !important;
	overflow-wrap: anywhere;
}

.ddd-footer__keyword-list a:hover,
.ddd-footer__keyword-list a:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.32);
	color: #fff !important;
	text-decoration: none !important;
}

.ddd-footer__keyword-list a:focus-visible {
	outline: 3px solid #7ec8ff;
	outline-offset: 2px;
}

.ddd-footer--v2 .ddd-footer__tier--keywords .ddd-footer__keywords-inner {
	padding-left: 16px;
	padding-right: 16px;
}

@media (max-width: 767px) {
	.ddd-footer__keywords-inner {
		padding: 16px 12px 20px;
	}

	.ddd-footer__keyword-list {
		gap: 8px;
	}

	.ddd-footer__keyword-list a {
		min-height: 36px;
		font-size: 12px;
		padding: 6px 11px;
	}
}

.ddd-mobile-cta {
	display: none;
}

/* Footer v2 — 5-col main + contact/map + legal */
.ddd-footer--v2 .ddd-footer__tier--main {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ddd-footer--v2 .ddd-footer__grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(0, 1fr));
	gap: 28px 22px;
	padding: 40px 16px 32px;
	align-items: start;
}

.ddd-footer--v2 .ddd-footer__brand-name {
	margin: 10px 0 0;
	font-size: 15px;
	font-weight: 800;
	color: #fff;
	line-height: 1.35;
}

.ddd-footer--v2 .ddd-footer__about {
	max-width: 46ch;
}

.ddd-footer--v2 .ddd-footer__contact a {
	overflow-wrap: anywhere;
}

.ddd-footer--v2 .ddd-footer__acc-btn {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 12px 0;
	border: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: transparent;
	color: #fff;
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.ddd-footer--v2 .ddd-footer__acc-btn .ddd-footer__col-title {
	margin: 0;
}

.ddd-footer--v2 .ddd-footer__acc-icon {
	width: 10px;
	height: 10px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	flex: 0 0 auto;
}

.ddd-footer--v2 .ddd-footer__acc-btn[aria-expanded="true"] .ddd-footer__acc-icon {
	transform: rotate(-135deg);
}

.ddd-footer--v2 .ddd-footer__links a {
	display: inline-block;
	padding: 2px 0;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.ddd-footer--v2 .ddd-footer__tier--map {
	border-top: 0;
	background: #0c2740;
}

.ddd-footer--v2 .ddd-footer__map-inner {
	grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.35fr);
	padding: 32px 16px;
}

.ddd-footer--v2 .ddd-footer__map-contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ddd-footer--v2 .ddd-footer__map-contact li {
	display: block;
	font-size: 14px;
	line-height: 1.5;
}

.ddd-footer--v2 .ddd-footer__map-contact span:first-child {
	display: inline;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #8fb0cc;
	font-weight: 700;
}

.ddd-footer--v2 .ddd-footer__map-contact span:first-child::after {
	content: ':';
	margin-right: 0.35em;
}

.ddd-footer--v2 .ddd-footer__map-contact li > a,
.ddd-footer--v2 .ddd-footer__map-contact li > span:not(:first-child) {
	display: inline;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.ddd-footer-map {
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
	background: #0a2035;
	min-width: 0;
}

.ddd-footer-map iframe {
	display: block;
	width: 100%;
	height: 340px;
	border: 0;
	max-width: 100%;
}

.ddd-footer--v2 .ddd-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	padding: 16px;
}

.ddd-footer--v2 .ddd-footer__dmca {
	display: inline-flex;
	flex: 0 0 auto;
	line-height: 0;
}

.ddd-footer--v2 .ddd-footer__dmca img {
	display: block;
	width: 120px;
	max-width: 100%;
	height: auto;
}

@media (max-width: 1199px) {
	.ddd-footer--v2 .ddd-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 20px;
	}

	.ddd-footer--v2 .ddd-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.ddd-footer--v2 .ddd-footer__grid {
		grid-template-columns: minmax(0, 1fr);
		padding: 28px 12px 12px;
		gap: 8px;
	}

	.ddd-footer--v2 .ddd-footer__col-title--desktop {
		display: none;
	}

	.ddd-footer--v2 .ddd-footer__acc-btn {
		display: flex;
	}

	.ddd-footer--v2 .ddd-footer__acc-panel {
		padding: 8px 0 14px;
	}

	.ddd-footer--v2 .ddd-footer__acc-panel[hidden] {
		display: none !important;
	}

	.ddd-footer--v2 .ddd-footer__map-inner {
		grid-template-columns: minmax(0, 1fr);
		padding: 22px 12px;
		gap: 16px;
	}

	.ddd-footer-map iframe {
		height: 260px;
	}

	.ddd-footer--v2 .ddd-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
		padding: 14px 12px 20px;
	}

	.ddd-footer--v2 .ddd-footer__map-actions {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.ddd-footer--v2 .ddd-footer__map-actions .ddd-btn {
		min-height: 44px;
		padding: 0 14px;
	}
}

@media (min-width: 768px) {
	.ddd-footer--v2 .ddd-footer__acc-panel {
		display: block !important;
	}

	.ddd-footer--v2 .ddd-footer__acc-panel[hidden] {
		display: block !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ddd-footer--v2 .ddd-footer__acc-icon {
		transition: none;
	}
}
