:root {
    --ink: #062b32;
    --ink-soft: #164753;
    --surface: #eef8f8;
    --line: #cbe3e4;
    --brand: #45bfc3;
    --brand-2: #f4c542;
    --gold: #f2d28a;
    --cream: #fff8ea;
    --white: #ffffff;
    --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Fraunces", Georgia, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-display);
    color: var(--ink);
    background: var(--surface);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
.navbar-brand,
.footer-brand {
    font-family: var(--font-heading);
}

.site-header {
    z-index: 1030;
}

.nav-topline {
    background: var(--brand-2);
    color: var(--ink);
    font-size: .82rem;
    font-weight: 800;
}

.nav-topline .container {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-topline span {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}

.navbar-shop {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.music-brand {
    min-width: 220px;
}

.music-brand span {
    display: grid;
    line-height: 1.05;
}

.music-brand strong {
    font-size: 1.35rem;
    letter-spacing: 0;
}

.music-brand small {
    margin-top: .2rem;
    color: rgba(255, 255, 255, .62);
    font-family: var(--font-display);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav-main-links {
    gap: .2rem;
}

.nav-main-links .nav-link {
    position: relative;
    padding-inline: .9rem;
}

.nav-main-links .nav-link.active::after,
.nav-main-links .nav-link:hover::after {
    content: "";
    position: absolute;
    right: .9rem;
    bottom: .28rem;
    left: .9rem;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-2);
}

.site-main {
    min-height: 60vh;
}

.navbar-shop {
    background: rgba(6, 43, 50, .97);
    box-shadow: 0 12px 30px rgba(6, 43, 50, .2);
    backdrop-filter: blur(12px);
}

.navbar-shop .navbar-brand {
    color: var(--white);
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.navbar-shop .navbar-brand img {
    border-radius: 8px;
    background: var(--cream);
    object-fit: contain;
    padding: 2px;
}

.navbar-shop .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    padding: .45rem .65rem;
}

.navbar-shop .navbar-toggler:focus {
    box-shadow: 0 0 0 .18rem rgba(244, 197, 66, .32);
}

.navbar-shop .nav-link {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    border-radius: 8px;
    padding: .55rem .75rem;
}

.navbar-shop .nav-link:hover,
.navbar-shop .nav-link.active,
.navbar-shop .account-toggle {
    color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.navbar-search {
    gap: .45rem;
    min-width: min(310px, 100%);
}

.navbar-search .form-control {
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border-radius: 8px;
}

.navbar-search .form-control::placeholder {
    color: rgba(255, 255, 255, .55);
}

.btn-shop-primary,
.btn-shop-outline,
.btn-shop-light {
    border-radius: 8px;
    font-weight: 800;
}

.btn-shop-primary {
    border-color: var(--brand-2);
    background: var(--brand-2);
    color: var(--ink);
}

.btn-shop-primary:hover {
    border-color: #d9aa21;
    background: #d9aa21;
    color: var(--ink);
}

.btn-shop-outline {
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
}

.btn-shop-outline:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.btn-shop-light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.nav-auth-actions {
    display: flex;
    gap: .6rem;
    margin-left: 1rem;
}

.navbar-search {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    padding: .2rem .35rem .2rem .85rem;
}

.navbar-search i {
    color: var(--brand-2);
}

.navbar-search .form-control {
    border: 0;
    background: transparent;
    min-height: 36px;
    padding-left: .35rem;
}

.store-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--ink);
}

.store-hero-media {
    position: absolute;
    inset: 0;
}

.store-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 43, 50, .92), rgba(6, 43, 50, .64) 42%, rgba(6, 43, 50, .22)),
        linear-gradient(0deg, rgba(6, 43, 50, .78), rgba(6, 43, 50, 0) 46%);
}

.store-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: center;
    gap: 3rem;
    color: var(--white);
}

.store-hero-copy {
    max-width: 760px;
}

.store-hero h1 {
    margin: .9rem 0 1.2rem;
    max-width: 740px;
    font-size: clamp(3rem, 6.2vw, 6.8rem);
    font-weight: 900;
    line-height: .92;
    letter-spacing: 0;
}

.store-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.12rem;
    line-height: 1.8;
}

.hero-product-spotlight {
    align-self: end;
    margin-bottom: 5rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    padding: 1rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
}

.hero-product-spotlight span {
    display: inline-flex;
    border-radius: 999px;
    background: var(--brand-2);
    color: var(--ink);
    padding: .35rem .65rem;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-product-spotlight img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin: .75rem 0;
}

.hero-product-spotlight h2 {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 900;
}

.hero-product-spotlight strong {
    display: block;
    margin-top: .35rem;
    color: #0f6770;
    font-size: 1.1rem;
    font-weight: 900;
}

.category-section,
.featured-section,
.inventory-section,
.services-section,
.about-section {
    padding: 82px 0;
}

.category-section {
    background: var(--cream);
}

.split-heading {
    display: flex;
    max-width: none;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.split-heading p {
    max-width: 450px;
    margin: 0;
    color: #587077;
    line-height: 1.7;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.category-tile {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 8px;
    color: var(--white);
    padding: 1.1rem;
    isolation: isolate;
}

.category-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(6, 43, 50, .12), rgba(6, 43, 50, .86));
}

.category-tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.category-tile:hover {
    color: var(--white);
}

.category-tile:hover img {
    transform: scale(1.06);
}

.category-tile span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand-2);
    color: var(--ink);
    font-size: 1.25rem;
}

.category-tile h3 {
    position: absolute;
    right: 1.1rem;
    bottom: 2.75rem;
    left: 1.1rem;
    margin: 0;
    font-size: 1.55rem;
    font-weight: 900;
}

.category-tile p {
    position: absolute;
    right: 1.1rem;
    bottom: 1rem;
    left: 1.1rem;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
}

.featured-section {
    background: var(--white);
}

.featured-layout {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 1.3rem;
}

.featured-story,
.catalog-aside {
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    padding: 2rem;
}

.featured-story h2,
.catalog-aside h3 {
    margin: .8rem 0 1rem;
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-weight: 900;
    line-height: 1;
}

.featured-story p,
.catalog-aside p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.7;
}

.featured-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mini-product-card {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7fbfb;
    padding: 1rem;
}

.mini-product-card img {
    width: 130px;
    height: 120px;
    object-fit: contain;
}

.mini-product-card span {
    color: #0f6770;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mini-product-card h3 {
    margin: .35rem 0;
    font-size: 1.2rem;
    font-weight: 900;
}

.mini-product-card strong {
    color: var(--ink);
    font-weight: 900;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
    gap: 1.35rem;
}

.catalog-aside {
    position: sticky;
    top: 118px;
    background: linear-gradient(180deg, var(--ink), #0f6770);
}

.catalog-aside ul {
    display: grid;
    gap: .75rem;
    margin: 1.4rem 0;
    padding: 0;
    list-style: none;
}

.catalog-aside li {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255, 255, 255, .84);
    font-weight: 700;
}

.catalog-aside li i {
    color: var(--brand-2);
}

.catalog-layout .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.footer-premium {
    padding-top: 0;
    background: transparent;
}

.footer-cta {
    background: var(--cream);
    color: var(--ink);
    padding: 54px 0;
}

.footer-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer-cta h2 {
    margin: .6rem 0 .5rem;
    font-size: clamp(2rem, 4vw, 4.2rem);
    font-weight: 900;
    line-height: .98;
}

.footer-cta p {
    max-width: 620px;
    margin: 0;
    color: #587077;
}

.footer-main {
    background: #05242a;
    color: rgba(255, 255, 255, .72);
    padding: 58px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) .75fr .9fr minmax(260px, 1fr);
    gap: 2rem;
}

.footer-brand-block img,
.footer-contact-card {
    border-radius: 8px;
}

.footer-brand-block img {
    background: var(--cream);
}

.footer-contact-card {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    padding: 1.25rem;
}

.footer-contact-card li {
    display: flex;
    gap: .65rem;
}

.footer-main .footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    padding: 1.2rem 0;
    color: rgba(255, 255, 255, .56);
}

.hero-carousel {
    background: var(--ink);
}

.hero-carousel .carousel-item {
    min-height: 570px;
    background: var(--white);
}

.hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 43, 50, .88), rgba(6, 43, 50, .42) 45%, rgba(6, 43, 50, .05) 78%);
}

.hero-carousel img {
    height: 570px;
    object-fit: cover;
}

.hero-caption {
    z-index: 2;
    right: auto;
    left: 7%;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: min(620px, 86vw);
    text-align: left;
    color: var(--white);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--brand-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

.hero-caption h1,
.hero-caption h2 {
    margin: .85rem 0 1rem;
    color: var(--white);
    font-size: clamp(2.2rem, 4.6vw, 5.2rem);
    line-height: .96;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 4px 26px rgba(0, 0, 0, .32);
}

.hero-caption h1::after {
    display: none;
}

.hero-caption h2 {
    font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.hero-caption p {
    max-width: 580px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.5rem;
}

.brand-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.brand-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
}

.brand-strip span {
    color: var(--ink);
    font-weight: 800;
    text-transform: uppercase;
}

.brand-strip strong {
    color: var(--ink-soft);
    font-size: 1.15rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-intro,
.inventory-section,
.services-section,
.about-section {
    padding: 82px 0;
}

.home-intro {
    background: linear-gradient(180deg, #ffffff 0%, #eef8f8 100%);
}

.home-intro h2,
.section-heading h2,
.about-band h2 {
    margin: .75rem 0 1rem;
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.home-intro p,
.about-band p {
    color: #5c6776;
    font-size: 1.08rem;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 8px;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 24px 70px rgba(6, 43, 50, .2);
}

.stats-panel div {
    padding: 2rem 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.stats-panel div:last-child {
    border-right: 0;
}

.stats-panel strong {
    display: block;
    color: var(--white);
    font-size: 2.35rem;
    line-height: 1;
}

.stats-panel span {
    display: block;
    margin-top: .6rem;
    color: rgba(255, 255, 255, .66);
    font-weight: 600;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.inventory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    max-width: none;
}

.inventory-heading p {
    max-width: 430px;
    margin: 0;
    color: #606b7a;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 16px 38px rgba(18, 28, 45, .09);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(69, 191, 195, .46);
    box-shadow: 0 22px 50px rgba(6, 43, 50, .14);
}

.product-media {
    position: relative;
    display: grid;
    height: 245px;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #e3f4f3);
}

.product-media img {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform .24s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.04);
}

.product-type {
    position: absolute;
    top: .85rem;
    right: .85rem;
    border-radius: 999px;
    background: rgba(6, 43, 50, .9);
    color: var(--white);
    padding: .4rem .7rem;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.product-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .8rem;
    margin-bottom: .75rem;
}

.product-meta span {
    color: var(--brand);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-meta strong {
    color: var(--brand-2);
    font-size: .92rem;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.product-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.28rem;
    font-weight: 900;
    letter-spacing: 0;
}

.product-card p {
    margin: .7rem 0 1rem;
    color: #5f6b7a;
    line-height: 1.55;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: auto;
}

.product-tags span {
    border: 1px solid #dbe3ee;
    border-radius: 999px;
    background: #f5fbfb;
    color: #3d4a5c;
    padding: .35rem .62rem;
    font-size: .75rem;
    font-weight: 800;
}

.product-actions {
    display: flex;
    gap: .65rem;
    border-top: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
}

.product-actions .btn {
    flex: 1;
    padding: .72rem .85rem;
    font-size: .9rem;
}

.btn-shop-card {
    border-color: #d4dce7;
    background: var(--white);
    color: var(--ink);
    border-radius: 8px;
    font-weight: 800;
}

.btn-shop-card:hover {
    border-color: var(--gold);
    background: var(--cream);
    color: var(--ink);
}

.vehicle-card,
.service-item {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 14px 36px rgba(18, 28, 45, .08);
}

.vehicle-card {
    position: relative;
    overflow: hidden;
    min-height: 310px;
}

.vehicle-card i {
    color: var(--brand);
    font-size: 3.6rem;
}

.vehicle-card h3,
.service-item h3 {
    margin: 1.2rem 0 .7rem;
    font-size: 1.45rem;
    font-weight: 900;
}

.vehicle-card p,
.service-item p {
    color: #606b7a;
}

.vehicle-card span {
    display: inline-block;
    margin-top: .7rem;
    color: var(--brand-2);
    font-weight: 900;
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border-radius: 999px;
    background: rgba(69, 191, 195, .14);
    color: var(--brand);
    padding: .35rem .7rem;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vehicle-card-dark {
    background: var(--ink);
    color: var(--white);
}

.vehicle-card-dark p {
    color: rgba(255, 255, 255, .68);
}

.vehicle-card-dark .vehicle-badge {
    background: rgba(255, 255, 255, .12);
    color: var(--gold);
}

.vehicle-card-dark i {
    color: var(--gold);
}

.services-section {
    background: var(--white);
}

.service-item i {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 8px;
    background: rgba(69, 191, 195, .14);
    color: var(--brand);
    font-size: 1.65rem;
}

.about-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-radius: 8px;
    padding: 2.4rem;
    background: linear-gradient(135deg, var(--ink), #0f6770);
    color: var(--white);
}

.about-band p {
    color: rgba(255, 255, 255, .72);
}

.footer-premium {
    padding-top: 64px;
    background: #05242a;
    color: rgba(255, 255, 255, .7);
}

.footer-brand {
    color: var(--brand-2);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.footer-premium h5 {
    color: var(--white);
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-premium ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-premium li {
    margin-bottom: .7rem;
}

.footer-premium a {
    color: rgba(255, 255, 255, .68);
}

.footer-premium a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-premium .bi {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-social a {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
}

.footer-premium hr {
    border-color: rgba(255, 255, 255, .12);
    margin: 2.5rem 0 0;
}

.footer-bottom {
    padding: 1.2rem 0;
    background: rgba(0, 0, 0, .22);
}

.responsive-table-shell {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: auto;
}

.responsive-table {
    width: 100%;
    margin-bottom: 0;
    vertical-align: middle;
}

.responsive-table th {
    white-space: nowrap;
}

.responsive-table td {
    overflow-wrap: anywhere;
}

.responsive-table .btn {
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}

.site-main:not(.home-page) {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}

.site-main:not(.home-page) > .row,
.site-main:not(.home-page) > .container {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(6, 43, 50, .08);
    padding: 1.6rem;
}

.site-main h1 {
    color: var(--ink);
    font-weight: 900;
    letter-spacing: 0;
}

.site-main h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: .65rem;
    border-radius: 999px;
    background: var(--brand-2);
}

.site-main:not(.home-page) form label,
.site-main:not(.home-page) label {
    color: var(--ink);
    font-weight: 800;
    margin-bottom: .35rem;
}

.site-main:not(.home-page) .form-control,
.site-main:not(.home-page) .form-select {
    border-color: var(--line);
    border-radius: 8px;
    padding: .75rem 1rem;
}

.site-main:not(.home-page) .form-control:focus,
.site-main:not(.home-page) .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 .2rem rgba(69, 191, 195, .22);
}

.site-main .btn-success,
.site-main .btn-primary {
    border-color: var(--brand-2);
    background: var(--brand-2);
    color: var(--ink);
    border-radius: 8px;
    font-weight: 900;
}

.site-main .btn-success:hover,
.site-main .btn-primary:hover {
    border-color: #d9aa21;
    background: #d9aa21;
    color: var(--ink);
}

.site-main .btn-warning {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
    border-radius: 8px;
    font-weight: 900;
}

.site-main .btn-danger {
    border-color: #b94b4b;
    background: #b94b4b;
    border-radius: 8px;
    font-weight: 900;
}

.site-main .btn-info,
.site-main .btn-secondary {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    border-radius: 8px;
    font-weight: 900;
}

.responsive-table thead {
    border-color: var(--ink);
}

.responsive-table .table-dark th,
.responsive-table thead th {
    background: var(--ink);
    color: var(--white);
}

.home-page .hero-caption h1,
.home-page .hero-caption h2 {
    color: var(--white);
}

.home-page .hero-caption h1::after {
    display: none;
}

@media (max-width: 991.98px) {
    .nav-topline .container {
        justify-content: center;
        text-align: center;
    }

    .nav-topline-contact {
        display: none !important;
    }

    .navbar-shop .container {
        align-items: center;
    }

    .music-brand {
        min-width: 0;
    }

    .navbar-shop .navbar-collapse {
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, .12);
        padding-top: .85rem;
    }

    .nav-main-links .nav-link {
        padding: .75rem .8rem;
    }

    .nav-main-links .nav-link.active::after,
    .nav-main-links .nav-link:hover::after {
        right: auto;
        bottom: .45rem;
        left: .8rem;
        width: 42px;
    }

    .navbar-search,
    .nav-auth-actions {
        margin: .8rem 0 0;
    }

    .navbar-search {
        width: 100%;
        min-width: 0;
    }

    .nav-auth-actions {
        flex-wrap: wrap;
        margin-left: 0;
        width: 100%;
    }

    .nav-auth-actions .btn {
        flex: 1 1 150px;
    }

    .hero-carousel .carousel-item,
    .hero-carousel img {
        height: 600px;
        min-height: 600px;
    }

    .hero-caption {
        left: 5%;
    }

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

    .featured-layout,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-aside {
        position: static;
    }

    .catalog-layout .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-cta .container,
    .footer-main .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .about-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .inventory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 767.98px) {
    .nav-topline {
        font-size: .74rem;
    }

    .nav-topline .container {
        min-height: 34px;
    }

    .navbar-shop {
        box-shadow: 0 10px 24px rgba(6, 43, 50, .18);
    }

    .navbar-shop .navbar-brand img {
        width: 46px;
        height: 46px;
    }

    .music-brand strong {
        font-size: 1.1rem;
    }

    .music-brand small {
        font-size: .64rem;
    }

    .navbar-shop .navbar-toggler {
        padding: .38rem .55rem;
    }

    .hero-carousel .carousel-item,
    .hero-carousel img {
        height: 540px;
        min-height: 540px;
    }

    .hero-carousel .carousel-item::after {
        background: linear-gradient(180deg, rgba(6, 43, 50, .52), rgba(6, 43, 50, .90));
    }

    .hero-caption h1,
    .hero-caption h2 {
        font-size: 2.3rem;
        line-height: 1;
    }

    .hero-caption p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-caption {
        top: auto;
        bottom: 3.6rem;
        left: 20px;
        width: calc(100% - 40px);
        transform: none;
    }

    .hero-actions {
        gap: .65rem;
    }

    .hero-actions .btn {
        width: 100%;
        padding: .85rem 1rem;
    }

    .hero-carousel .carousel-indicators {
        margin-bottom: 1.1rem;
    }

    .brand-strip .container {
        justify-content: flex-start;
        max-width: 100%;
    }

    .stats-panel {
        grid-template-columns: 1fr;
    }

    .stats-panel div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .stats-panel div:last-child {
        border-bottom: 0;
    }

    .home-intro,
    .category-section,
    .featured-section,
    .inventory-section,
    .services-section,
    .about-section {
        padding: 58px 0;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: .75rem;
    }

    .split-heading p {
        max-width: none;
    }

    .category-grid,
    .featured-products,
    .catalog-layout .products-grid,
    .service-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-tile {
        min-height: 210px;
    }

    .featured-story,
    .catalog-aside {
        padding: 1.4rem;
    }

    .featured-story h2,
    .catalog-aside h3,
    .footer-cta h2 {
        font-size: 2rem;
        line-height: 1.05;
    }

    .mini-product-card {
        grid-template-columns: 100px minmax(0, 1fr);
        padding: .85rem;
    }

    .mini-product-card img {
        width: 100px;
        height: 96px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-media {
        height: 220px;
    }

    .product-meta {
        flex-direction: column;
        gap: .25rem;
    }

    .product-meta strong {
        text-align: left;
    }

    .product-actions {
        flex-direction: column;
    }

    .footer-cta {
        padding: 42px 0;
    }

    .footer-main {
        padding-top: 42px;
    }

    .responsive-table-shell {
        overflow-x: visible;
    }

    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block;
    }

    .responsive-table {
        border-collapse: separate;
        border-spacing: 0;
        background: transparent;
    }

    .responsive-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .responsive-table tbody {
        display: grid;
        gap: 1rem;
    }

    .responsive-table tbody tr {
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white) !important;
        box-shadow: 0 14px 34px rgba(18, 28, 45, .09);
    }

    .responsive-table td {
        display: grid;
        grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
        align-items: center;
        gap: .9rem;
        border: 0;
        border-bottom: 1px solid #edf1f6;
        padding: .9rem 1rem;
        text-align: left;
        min-width: 0;
    }

    .responsive-table td:last-child {
        border-bottom: 0;
    }

    .responsive-table td::before {
        content: attr(data-label);
        color: var(--brand);
        font-size: .78rem;
        font-weight: 900;
        letter-spacing: .06em;
        text-align: left;
        text-transform: uppercase;
    }

    .responsive-table td[data-label="Editar"],
    .responsive-table td[data-label="Eliminar"],
    .responsive-table td[data-label="PDF"] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .responsive-table td[data-label="Editar"]::before,
    .responsive-table td[data-label="Eliminar"]::before,
    .responsive-table td[data-label="PDF"]::before {
        display: none;
    }

    .responsive-table td .btn,
    .responsive-table td form,
    .responsive-table td form button {
        width: 100%;
    }

    .responsive-table td .btn,
    .responsive-table td form button {
        display: block;
        padding: .75rem 1rem;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .hero-carousel .carousel-item,
    .hero-carousel img {
        height: 500px;
        min-height: 500px;
    }

    .hero-caption h1,
    .hero-caption h2 {
        font-size: 2rem;
    }

    .eyebrow,
    .section-kicker {
        font-size: .7rem;
        letter-spacing: .08em;
    }

    .eyebrow::before,
    .section-kicker::before {
        width: 22px;
    }

    .product-card h3 {
        font-size: 1.15rem;
    }

    .product-type {
        max-width: calc(100% - 1.7rem);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .footer-main .footer-bottom {
        font-size: .86rem;
    }
}
