:root {
    --txp-red: #dc0000;
    --txp-black: #0e0e0e;
    --txp-white: #fff;
    color: var(--txp-black);
    background: var(--txp-white);
    font-family: "Google Sans", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body,
button,
input,
select,
textarea {
    font-family: "Google Sans", Arial, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--txp-white);
    color: var(--txp-black);
    font-size: 16px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--txp-red);
}

.site-header {
    background: var(--txp-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: box-shadow 180ms ease, border-color 180ms ease;
    z-index: 1030;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 32px rgba(14, 14, 14, 0.22);
    border-color: var(--txp-red);
}

.navbar {
    min-height: 86px;
    padding: 14px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    min-width: 190px;
}

.navbar-brand img {
    display: block;
    width: 190px;
    height: auto;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(220, 0, 0, 0.35);
}

.navbar-nav {
    align-items: center;
    gap: 2px;
}

.navbar-dark .navbar-nav .nav-link {
    border-radius: 999px;
    color: var(--txp-white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 12px 13px;
    transition: background 180ms ease, color 180ms ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus-visible {
    background: var(--txp-red);
    color: var(--txp-white);
}

.navbar-dark .navbar-nav .nav-link i {
    font-size: 13px;
    margin-right: 5px;
}

.btn-contact {
    align-items: center;
    background: var(--txp-red);
    border: 1px solid var(--txp-red);
    color: var(--txp-white);
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    gap: 8px;
    min-height: 46px;
    padding: 12px 20px;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-contact:hover,
.btn-contact:focus-visible {
    background: var(--txp-white);
    border-color: var(--txp-white);
    color: var(--txp-black);
    transform: translateY(-1px);
}

.hero,
.simple-page,
.section-grid,
.page-head,
.content-grid,
.pagination,
.empty-state,
.article,
.filter-bar,
.result-sections {
    width: 100%;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background: var(--txp-black);
    background-image:
        linear-gradient(90deg, var(--txp-black) 0%, var(--txp-black) 36%, rgba(14, 14, 14, 0.76) 58%, rgba(14, 14, 14, 0.34) 100%),
        url("/images/home-hero-bg.png");
    background-position: center;
    background-size: cover;
    color: var(--txp-white);
}

.min-vh-hero {
    min-height: 500px;
    padding-top: 44px;
    padding-bottom: 44px;
}

.home-hero h1 {
    margin: 0;
    color: var(--txp-white);
    font-size: clamp(32px, 3.6vw, 52px);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--txp-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--txp-red);
}

.hero-subtext {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--txp-white);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.55;
}

.hero-search {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    max-width: 620px;
    margin-top: 24px;
    padding: 7px;
    border: 1px solid var(--txp-white);
    border-radius: 999px;
    background: var(--txp-white);
}

.hero-search i {
    color: var(--txp-red);
    padding-left: 14px;
}

.hero-search input {
    width: 100%;
    min-height: 44px;
    border: 0;
    outline: 0;
    background: var(--txp-white);
    color: var(--txp-black);
    font-size: 16px;
}

.hero-search button {
    min-height: 44px;
    border: 1px solid var(--txp-red);
    border-radius: 999px;
    background: var(--txp-red);
    color: var(--txp-white);
    font-weight: 600;
    padding: 0 24px;
}

.hero-search button:hover,
.hero-search button:focus-visible {
    background: var(--txp-black);
    border-color: var(--txp-black);
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-links a {
    border: 1px solid var(--txp-white);
    border-radius: 999px;
    color: var(--txp-white);
    font-size: 14px;
    padding: 8px 13px;
}

.hero-links a:hover,
.hero-links a:focus-visible {
    border-color: var(--txp-red);
    background: var(--txp-red);
    color: var(--txp-white);
}

.popular-styles-section {
    padding: 42px 0 18px;
    background: var(--txp-white);
}

.featured-designs-section {
    padding: 34px 0 18px;
    background: var(--txp-white);
}

.city-browse-section {
    padding: 34px 0 18px;
    background: var(--txp-white);
}

.latest-guides-section {
    padding: 34px 0 18px;
    background: var(--txp-white);
}

.product-picks-section {
    padding: 34px 0 18px;
    background: var(--txp-white);
}

.why-tattooxp-section {
    padding: 34px 0 18px;
    background: var(--txp-white);
}

.artist-spotlight-section {
    padding: 34px 0 18px;
    background: var(--txp-white);
}

.final-search-section {
    padding: 10px 0 40px;
    background: var(--txp-white);
}

.section-title-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.section-title-row h2 {
    margin: 0;
    color: var(--txp-black);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.15;
}

.section-link {
    color: var(--txp-red);
    font-size: 15px;
    font-weight: 600;
}

.popular-style-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.style-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    font-size: 17px;
    font-weight: 600;
    padding: 16px;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.style-card i {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--txp-red);
    color: var(--txp-white);
    font-size: 14px;
    flex: 0 0 auto;
}

.style-card:hover,
.style-card:focus-visible {
    border-color: var(--txp-red);
    color: var(--txp-red);
    transform: translateY(-2px);
}

.featured-design-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 18px;
}

.featured-design-card-main {
    position: relative;
    display: grid;
    min-height: 460px;
    border-radius: 8px;
    background: var(--txp-black);
    color: var(--txp-white);
    overflow: hidden;
}

.featured-design-card-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.08) 0%, rgba(14, 14, 14, 0.9) 100%);
}

.featured-design-card-main img,
.featured-design-card-main .design-card-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.design-card-fallback {
    display: grid;
    place-items: center;
    background: var(--txp-black);
    color: var(--txp-white);
    font-size: 34px;
}

.featured-design-card-main > div:last-child {
    position: relative;
    z-index: 1;
    align-self: end;
    padding: 26px;
}

.featured-design-card-main h3 {
    margin: 8px 0;
    max-width: 620px;
    color: var(--txp-white);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
    line-height: 1.12;
}

.featured-design-card-main p {
    max-width: 560px;
    margin: 0;
    color: var(--txp-white);
    font-size: 16px;
}

.featured-design-card-main span,
.featured-design-row span {
    color: var(--txp-red);
    font-size: 13px;
    font-weight: 600;
}

.featured-design-list {
    display: grid;
    gap: 10px;
}

.featured-design-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 82px;
    border-bottom: 1px solid rgba(14, 14, 14, 0.16);
    color: var(--txp-black);
    padding: 0 0 10px;
    transition: color 180ms ease, transform 180ms ease;
}

.featured-design-row:hover,
.featured-design-row:focus-visible {
    color: var(--txp-red);
    transform: translateX(3px);
}

.design-row-media {
    display: grid;
    place-items: center;
    width: 96px;
    height: 72px;
    border-radius: 8px;
    background: var(--txp-black);
    color: var(--txp-white);
    overflow: hidden;
}

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

.featured-design-row h3 {
    margin: 0 0 6px;
    color: currentColor;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.city-card {
    display: grid;
    gap: 4px;
    min-height: 122px;
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-left: 4px solid var(--txp-red);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    padding: 18px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.city-card:hover,
.city-card:focus-visible {
    border-color: var(--txp-red);
    color: var(--txp-black);
    transform: translateY(-2px);
}

.city-card span {
    color: var(--txp-black);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
}

.city-card small {
    color: var(--txp-black);
    font-size: 14px;
}

.city-card em {
    align-self: end;
    color: var(--txp-red);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.guide-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    min-height: 190px;
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    padding: 18px;
    transition: border-color 180ms ease, transform 180ms ease;
}

.guide-card:hover,
.guide-card:focus-visible {
    border-color: var(--txp-red);
    color: var(--txp-black);
    transform: translateY(-2px);
}

.guide-card-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--txp-red);
    color: var(--txp-white);
}

.guide-card h3 {
    margin: 0 0 10px;
    color: var(--txp-black);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
}

.guide-card p {
    margin: 0;
    color: var(--txp-black);
    font-size: 15px;
    line-height: 1.55;
}

.guide-card span {
    display: inline-flex;
    margin-top: 12px;
    color: var(--txp-red);
    font-size: 13px;
    font-weight: 600;
}

.product-pick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.product-pick-card {
    display: grid;
    grid-template-rows: auto 1fr;
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    overflow: hidden;
    transition: border-color 180ms ease, transform 180ms ease;
}

.product-pick-card:hover,
.product-pick-card:focus-visible {
    border-color: var(--txp-red);
    color: var(--txp-black);
    transform: translateY(-2px);
}

.product-pick-media {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    background: var(--txp-black);
    color: var(--txp-white);
    font-size: 28px;
}

.product-pick-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-pick-card > div:last-child {
    padding: 16px;
}

.product-pick-card span {
    color: var(--txp-red);
    font-size: 13px;
    font-weight: 600;
}

.product-pick-card h3 {
    margin: 8px 0;
    color: var(--txp-black);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.product-pick-card p {
    margin: 0;
    color: var(--txp-black);
    font-size: 15px;
    line-height: 1.55;
}

.trust-point-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.trust-point {
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    padding: 20px;
}

.trust-point i {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: var(--txp-red);
    color: var(--txp-white);
    font-size: 15px;
    margin-bottom: 14px;
}

.trust-point h3 {
    margin: 0 0 8px;
    color: var(--txp-black);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
}

.trust-point p {
    margin: 0;
    color: var(--txp-black);
    font-size: 15px;
    line-height: 1.55;
}

.artist-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.artist-spotlight-card {
    display: grid;
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    overflow: hidden;
    transition: border-color 180ms ease, transform 180ms ease;
}

.artist-spotlight-card:hover,
.artist-spotlight-card:focus-visible {
    border-color: var(--txp-red);
    color: var(--txp-black);
    transform: translateY(-2px);
}

.artist-spotlight-media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    background: var(--txp-black);
    color: var(--txp-white);
    font-size: 28px;
}

.artist-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-spotlight-card > div:last-child {
    padding: 16px;
}

.artist-spotlight-card h3 {
    margin: 0 0 6px;
    color: var(--txp-black);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
}

.artist-spotlight-card p {
    margin: 0;
    color: var(--txp-black);
    font-size: 14px;
}

.artist-spotlight-card span {
    display: inline-flex;
    margin-top: 10px;
    color: var(--txp-red);
    font-size: 13px;
    font-weight: 600;
}

.final-search-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
    align-items: center;
    gap: 18px;
    border-radius: 8px;
    background: var(--txp-black);
    color: var(--txp-white);
    padding: 18px;
}

.final-search-panel h2 {
    margin: 0;
    color: var(--txp-white);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 600;
    line-height: 1.15;
}

.final-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.final-search-form input {
    min-height: 44px;
    border: 1px solid var(--txp-white);
    border-radius: 999px;
    background: var(--txp-white);
    color: var(--txp-black);
    font: inherit;
    padding: 0 18px;
}

.final-search-form button {
    min-height: 44px;
    border: 1px solid var(--txp-red);
    border-radius: 999px;
    background: var(--txp-red);
    color: var(--txp-white);
    font: inherit;
    font-weight: 600;
    padding: 0 24px;
}

.final-search-form button:hover,
.final-search-form button:focus-visible {
    background: var(--txp-white);
    border-color: var(--txp-white);
    color: var(--txp-black);
}

.hero,
.simple-page,
.section-grid,
.page-head,
.content-grid,
.pagination,
.empty-state,
.article,
.filter-bar,
.result-sections,
.breadcrumbs {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
}

.hero,
.simple-page,
.page-head {
    padding-top: 52px;
    padding-bottom: 28px;
}

.hero {
    min-height: 48vh;
    display: flex;
    align-items: center;
}

.hero h1,
.simple-page h1,
.page-head h1,
.article h1 {
    margin: 0;
    max-width: 820px;
    color: var(--txp-black);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: 0;
}

.lead,
.simple-page p,
.page-head p,
.content-card p,
.meta-line,
.article-body,
.result-item span {
    color: var(--txp-black);
}

.lead,
.simple-page p,
.page-head p {
    max-width: 760px;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.eyebrow {
    color: var(--txp-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.breadcrumbs {
    padding-top: 18px;
    color: var(--txp-black);
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--txp-red);
    font-weight: 600;
}

.breadcrumbs span {
    margin-right: 8px;
}

.section-grid,
.content-grid {
    display: grid;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
}

.section-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-grid a,
.content-card,
.empty-state,
.article,
.result-item {
    border: 1px solid rgba(14, 14, 14, 0.16);
    border-radius: 8px;
    background: var(--txp-white);
}

.section-grid a,
.content-card {
    min-height: 180px;
    padding: 22px;
    overflow: hidden;
}

.section-grid span,
.content-card h2,
.result-section h2 {
    color: var(--txp-black);
    font-weight: 600;
}

.section-grid span {
    display: block;
    margin-bottom: 12px;
    font-size: 20px;
}

.content-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.22;
}

.content-card-image,
.hero-media {
    display: block;
    width: 100%;
    object-fit: cover;
    background: var(--txp-black);
}

.content-card-image {
    aspect-ratio: 16 / 10;
    margin: -22px -22px 18px;
    width: calc(100% + 44px);
    border-bottom: 1px solid rgba(14, 14, 14, 0.16);
}

.hero-media {
    aspect-ratio: 16 / 9;
    margin: 24px 0;
    border-radius: 8px;
}

.portrait-media,
.product-media {
    aspect-ratio: 4 / 3;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag-list span,
.pill {
    border: 1px solid var(--txp-red);
    border-radius: 999px;
    color: var(--txp-red);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 10px;
}

.empty-state,
.article {
    margin-top: 24px;
    margin-bottom: 64px;
    padding-top: 28px;
    padding-bottom: 28px;
}

.article {
    max-width: 920px;
}

.article-body {
    font-size: 18px;
    line-height: 1.7;
}

.article-body img {
    max-width: 100%;
    height: auto;
}

.detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.detail-list div {
    border-top: 1px solid rgba(14, 14, 14, 0.16);
    padding-top: 12px;
}

.filter-bar {
    padding-top: 0;
    padding-bottom: 18px;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(160px, 240px) auto auto;
    gap: 10px;
    align-items: center;
}

.filter-bar.search-bar {
    grid-template-columns: minmax(220px, 1fr) auto auto;
}

.filter-bar input,
.filter-bar select {
    min-height: 44px;
    border: 1px solid rgba(14, 14, 14, 0.2);
    border-radius: 8px;
    background: var(--txp-white);
    color: var(--txp-black);
    font: inherit;
    padding: 10px 12px;
}

.filter-bar button,
.filter-bar a {
    min-height: 44px;
    border: 1px solid var(--txp-red);
    border-radius: 999px;
    background: var(--txp-red);
    color: var(--txp-white);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    padding: 10px 16px;
    text-align: center;
}

.filter-bar a {
    background: var(--txp-white);
    color: var(--txp-red);
}

.result-sections {
    margin-bottom: 64px;
    padding-top: 24px;
    padding-bottom: 24px;
    display: grid;
    gap: 18px;
}

.result-section {
    border-top: 1px solid rgba(14, 14, 14, 0.16);
    padding-top: 18px;
}

.result-section h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.result-list {
    display: grid;
    gap: 10px;
}

.result-item {
    display: grid;
    gap: 4px;
    padding: 14px;
}

.site-footer {
    background: var(--txp-black);
    color: var(--txp-white);
    font-size: 14px;
    padding: 44px 0 22px;
}

.site-footer p {
    margin: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 42px;
}

.footer-brand {
    display: grid;
    gap: 16px;
    align-content: start;
}

.footer-brand img {
    display: block;
    width: 170px;
    height: auto;
}

.footer-brand p {
    max-width: 420px;
    color: var(--txp-white);
    line-height: 1.6;
}

.footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    border: 1px solid var(--txp-red);
    border-radius: 999px;
    color: var(--txp-white);
    font-weight: 600;
    padding: 9px 13px;
}

.footer-contact:hover,
.footer-contact:focus-visible {
    background: var(--txp-red);
    color: var(--txp-white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-links div {
    display: grid;
    gap: 9px;
    align-content: start;
}

.footer-links h2 {
    margin: 0 0 4px;
    color: var(--txp-white);
    font-size: 16px;
    font-weight: 600;
}

.footer-links a,
.footer-bottom a {
    color: var(--txp-white);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--txp-red);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 34px;
    padding-top: 18px;
}

.footer-bottom p {
    color: var(--txp-white);
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        padding-top: 16px;
    }

    .navbar-nav {
        align-items: stretch;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 13px 0;
    }

    .btn-contact {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 780px) {
    .navbar {
        min-height: 74px;
    }

    .navbar-brand,
    .navbar-brand img {
        width: 150px;
        min-width: 150px;
    }

    .section-grid,
    .content-grid,
    .popular-style-grid,
    .featured-design-layout,
    .city-grid,
    .guide-grid,
    .product-pick-grid,
    .trust-point-grid,
    .artist-spotlight-grid,
    .detail-list,
    .final-search-panel,
    .filter-bar,
    .filter-bar.search-bar {
        grid-template-columns: 1fr;
    }

    .footer-main,
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .final-search-form {
        grid-template-columns: 1fr;
    }

    .featured-design-card-main {
        min-height: 360px;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .hero {
        min-height: 38vh;
    }

    .home-hero {
        background-image:
            linear-gradient(180deg, var(--txp-black) 0%, rgba(14, 14, 14, 0.9) 52%, rgba(14, 14, 14, 0.64) 100%),
            url("/images/home-hero-bg.png");
        background-position: 64% center;
    }

    .min-vh-hero {
        min-height: auto;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .hero-search {
        grid-template-columns: auto 1fr;
        border-radius: 22px;
    }

    .hero-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .hero,
    .simple-page,
    .page-head {
        padding-top: 36px;
    }
}
