/*
 * Jinbo Marine core frontend styles.
 * Shared reset, header, navigation, layout, recommendations, service and footer.
 */

:root {
    --color-primary: #006666;
    --color-primary-dark: #004444;
    --color-accent: #E67E22;
    --color-accent-dark: #CC6C1E;
    --color-bg: #F8FAFA;
    --color-card: #FFFFFF;
    --color-text: #223333;
    --color-text-muted: #556666;
    --color-border: #E6EAEA;
    --container-max: 1200px;
    --border-radius: 6px;
    --border-radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.28s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Layout / Home */
/* Source: app/home/view/index/index.html */

.product-img picture,
.main.products .thumbnail picture {
    display: block;
    width: 100%;
    height: 100%;
}

.brand-text h1 {
    font-family: 'jinbomarine', sans-serif;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    color: #004098;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-menu a:hover {
    background: #f5f7f7;
}

.site-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
    fill: currentColor;
    vertical-align: -0.125em;
}

.site-icon-search {
    width: 1rem;
    height: 1rem;
}

.site-icon-menu {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 7px;
    vertical-align: -0.2em;
}

.site-icon-chevron {
    width: 12px;
    height: 12px;
    opacity: 0.7;
    transition: transform .2s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);

    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'jinbomarine';
    src: url('/static/font/serpentineicg/serpentineicg-bold-webfont.eot');
    src: url('/static/font/serpentineicg/serpentineicg-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/static/font/serpentineicg/serpentineicg-bold-webfont.woff2') format('woff2'),
         url('/static/font/serpentineicg/serpentineicg-bold-webfont.woff') format('woff'),
         url('/static/font/serpentineicg/serpentineicg-bold-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

.page-header {
    position: relative;
    background: var(--color-card);
    box-shadow: var(--shadow);
    padding-top: 26px;
}

.bar {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    font-size: 13px;
    padding: 4px 0;
    z-index: 9;
}
.bar .tags {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}
.bar a {
    color: rgba(255,255,255,.9) !important;
}
.bar a:hover {
    color: #fff !important;
}

.header-inner {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}
.brand {
    width: 55%;
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo {
    width: 90px; height: 90px;
    overflow: hidden;
    flex-shrink: 0;
}
.logo img {
    width: 90px; height: 180px;
    object-position: top left;
}
.brand-text h1,
.brand-name {
    font-family: 'jinbomarine', sans-serif;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    color: #004098;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.brand-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 3px;
    line-height: 1.4;
}

.header-actions {
    width: 45%;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.search-form {
    flex: 1;
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;

    transition: var(--transition);
}
.search-input {
    flex: 1;
    height: 46px;
    padding: 0 16px;
    border: none; outline: none;
    background: #fff;

    font-size: 14px;
}
.search-btn {
    width: 46px; height: 46px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    display: grid;
    place-items: center;

    transition: var(--transition);
}
.request-a-quote a {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;

    transition: var(--transition);
}
.request-a-quote a:hover {
    background: #cc6d19;

    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(230,126,34,0.25);
}

.navigation-shell {
  margin-bottom: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.main-nav {
  background: var(--color-primary);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  margin: 0;
  box-shadow: none;
}

.slider {
  margin: 0;
  background: transparent;
  border-radius: 0 0 12px 12px;
  padding: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 10 / 3;
  box-shadow: none;
}

.nav-toggle {
    display: none;
    padding: 14px 16px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 18px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 12px 12px 0 0;

    font-weight: 500;
    letter-spacing: 0.5px;
}
.nav-list {
    display: flex;
    white-space: nowrap;
}
.nav-list a {
    display: block;
    padding: 15px 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.nav-list a:hover,
.nav-list .active a {
    background: var(--color-primary-dark);
    border-radius: 8px;
}

.slide {
    position: absolute;
    inset: 12px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0 0 8px 8px;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}

.page-main {
  padding: 12px 0 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.breadcrumb-nav {
    margin: 0 12px 12px;
    padding: 8px 0 10px;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 0;
    margin: 0;
    padding: 0;
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.45;
    list-style: none;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: #9aa6a6;
}

.breadcrumb-link {
    display: inline-block;
    max-width: 240px;
    color: var(--color-primary);
    overflow-wrap: anywhere;
    text-decoration: none;
}

.breadcrumb-item:last-child .breadcrumb-link {
    color: var(--color-text);
    pointer-events: none;

    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--color-primary-dark);
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.content {
  padding: 20px;

    padding-left: 13px !important;
    width: 100% !important;
    margin: 0 !important;
}

.sidebar {
  padding: 20px;
  position: relative;
  z-index: 10;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f2f32;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 2px solid #e0e7e7;
}

.category-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-menu li {
    position: relative;
    margin-bottom: 4px;
}

.category-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    color: #334a4b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.24s ease;
    white-space: normal;
    word-break: break-all;
    line-height: 1.15;
}

.category-menu > li > a:hover {
    background: #e6f0f0;
    color: #0f2f32;
    padding-left: 16px;
}

.category-menu ul a:hover {
    background: #f0f5f5;
    color: #0f2f32;
    padding-left: 16px;
}

.category-menu a .site-icon-chevron {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    flex-shrink: 0;
    margin-left: 6px;
    transition: transform 0.2s;
}

.category-menu li:hover > a .site-icon-chevron {
    transform: rotate(90deg);
    opacity: 0.8;
}

.category-menu li > ul {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 190px;
    max-width: 230px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e6ecec;
    padding: 8px 0;
    z-index: 9999;
    white-space: normal;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.category-menu li ul li ul {
    left: 100%;
    top: 0;
}

.category-menu li:hover > ul {
    display: block;
}

.recommend-section {
    grid-column: 1 / -1;
    margin: 18px 0 22px;
    width: 100%;
    padding: 0 20px;
}
.rec-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0f2f32;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 6px;
}
.rec-title::before {
    content: "";
    width: 4px;
    height: 14px;
    background: var(--color-primary);
    border-radius: 2px;
}
.swiper-container {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: visible;
}
.swiper-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    cursor: grab;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
    user-select: none;
}
.swiper-scroll::-webkit-scrollbar {
    display: none;
}
.swiper-scroll:active {
    cursor: grabbing;
}

.swiper-wrapper {
    display: flex;
    gap: 12px;
}
.swiper-item {
    flex: 0 0 calc((80% - 57.6px) / 7);
    width: calc((80% - 57.6px) / 7);
    min-width: 0;
    flex-shrink: 0;
    scroll-snap-align: start;
}
.swiper-item a {
    display: block;
    text-decoration: none;
    color: #333;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background: #fff;
    padding: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.swiper-item a:hover {
    border-color: #cbdada;
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.item-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f8f9fa;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.item-name {
    display: -webkit-box;
    min-height: calc(13px * 1.35 * 2);
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-overflow: ellipsis;
    text-align: left;
}
.no-data {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #999;
}
.swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 46px;
    border: 0;
    background: rgba(0, 68, 68, 0.46);
    color: #fff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
    transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(2px);
}
.swiper-prev { left: 8px; }
.swiper-next { right: 8px; }
.swiper-arrow:hover {
    background: rgba(0, 102, 102, 0.82);
    transform: translateY(-50%) scale(1.03);
}
.swiper-arrow.swiper-arrow-disabled {
    background: rgba(0,0,0,0.18);
    cursor: not-allowed;
    opacity: 0.45;
}

.swiper-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 18px;
    margin-top: 12px;
}
.swiper-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}
.swiper-indicator-dot.active {
    background: var(--color-primary);
    width: 16px;
    border-radius: 4px;
}

#swiperIndicatorsHistory {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 20px;
    margin-top: 14px;
}

#swiperIndicatorsHistory .swiper-indicator-dot,
#swiperIndicatorsHistory .swiper-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c3d1d1;
    cursor: pointer;
    opacity: 1;
    transition: width 0.2s ease, background-color 0.2s ease, border-radius 0.2s ease;
}

#swiperIndicatorsHistory .swiper-indicator-dot.active,
#swiperIndicatorsHistory .swiper-indicator-dot.is-active,
#swiperIndicatorsHistory .swiper-dot.active,
#swiperIndicatorsHistory .swiper-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: #0f5f63;
}

@media (max-width: 576px) {
.breadcrumb-nav {
        margin: 0 8px 10px;
        padding-bottom: 8px;
    }

    .breadcrumb-list {
        font-size: 12px;
    }

    .breadcrumb-link {
        max-width: 46vw;
    }

.recommend-section {
        padding: 0 12px;
    }

    .swiper-item {
        flex-basis: 110px;
        width: 110px;
        min-width: 110px;
    }

    .swiper-arrow {
        width: 30px;
        height: 40px;
        font-size: 18px;
    }

    .swiper-prev {
        left: 4px;
    }

    .swiper-next {
        right: 4px;
    }
}

.service {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 32px 0 0;

    padding: 0 24px 24px;
}
.service > div {
    min-height: 118px;
    padding: 24px 22px 22px 104px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-card);
    background-repeat: no-repeat;
    background-position: 24px center;
    background-size: 58px 58px;
    box-shadow: var(--shadow);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service > div::before {
    content: "";
    position: absolute;
    inset: 0;
    border-left: 5px solid var(--color-primary);
    opacity: 0.9;
    pointer-events: none;
}
.service > div:hover {
    border-color: rgba(27, 96, 166, 0.28);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.service h3 {
    font-size: 16px;
    color: var(--color-primary);
    margin: 0 0 8px;
    line-height: 1.25;
    text-transform: uppercase;
}
.service p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}
.service1 {
    background-image: url(/static/image/service-1.png);
}
.service2 {
    background-image: url(/static/image/service-2.png);
}
.service3 {
    background-image: url(/static/image/service-3.png);
}

.page-footer {
    margin-top: 32px;
    padding: 0;
    background: #0f2f32;
    border-top: 4px solid var(--color-accent);
    color: rgba(255, 255, 255, 0.82);
}
.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px 36px;
    padding-top: 34px;
    padding-bottom: 26px;
}
.page-footer .mod {
    margin: 0;
}

.page-footer .mod.logos {
    grid-column: 1 / -1;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.mod-title {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}

.society-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.society-list li {
    height: 50px;
    background: url(/static/image/logos-f3.png) no-repeat;
    opacity: 0.82;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-radius: 6px;
    padding: 2px;
}
.society-list li:hover {
    opacity: 1;
    transform: translateY(-2px);
}
.society-list li a {
    display: block;
    height: 50px;
    color: transparent;
    font-size: 0;
    cursor: default;
}

.society-list li.bv    { width: 40px; background-position: -34px -50px; }
.society-list li.lr    { width: 97px; background-position: -79px -50px; }
.society-list li.abs   { width: 145px; background-position: -773px -50px; }
.society-list li.ccs   { width: 75px; background-position: -280px -50px; }
.society-list li.cl    { width: 190px; background-position: -434px -50px; }
.society-list li.rina  { width: 53px; background-position: -624px -50px; }
.society-list li.dnvgl { width: 91px; background-position: -679px -50px; }
.society-list li.kr    { width: 97px; background-position: -175px -49px; }

.mod .text {
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}
.mod .text p {
    max-width: 560px;
    margin: 0 0 10px;
}
.mod .text strong {
    color: #fff;
}
.footer-logo {
    position: static;
    display: inline-block;
    margin: 0 0 12px;
    color: #fff;
    font-family: "jinbomarine";
    font-size: 26px;
    line-height: 1;
}

.footer-nav {
    height: auto;
    line-height: 1.4;
    justify-self: end;
}
.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li {
    margin: 0;
}
.footer-nav a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #fff;
}

.followus {
    display: flex;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    height: auto;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
}
.followus .ico {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    background-size: 18px 18px;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.followus .ico:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}
.ico-twitter  { background-image: url(/static/image/social-media-icons/32px/twitter.png); }
.ico-facebook { background-image: url(/static/image/social-media-icons/32px/facebook.png); }
.ico-linkedin { background-image: url(/static/image/social-media-icons/32px/linkedin.png); }

@media (max-width: 767px) {
    .container {
        padding: 0 10px;
    }
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 12px 0;
    }
    .brand,
    .header-actions {
        width: 100%;
    }
    .brand {
        justify-content: center;
        text-align: center;
    }
    .logo {
        display: none;
    }
    .brand-text h1,
    .brand-name {
        font-size: 1.35rem;
        line-height: 1.15;
    }
    .brand-text p {
        font-size: 0.76rem;
    }
    .header-actions {
        flex-direction: column;
    }
    .request-a-quote a {
        width: 100%;
    }
    .nav-toggle {
        display: block;
    }
    .nav-list {
        display: none;
        white-space: normal;
    }
    .nav-list.show {
        display: block;
    }
    .nav-list a {
        padding: 13px 16px;
        border-top: 1px solid rgba(255,255,255,0.16);
    }
    .nav-list a:hover,
    .nav-list .active a {
        border-radius: 0;
    }
    .slider,
    .sidebar {
        display: none;
    }
    .page-main {
        padding: 0;
        margin-top: 12px;
    }
    .breadcrumb-nav {
        margin: 0 10px 10px;
        padding-top: 10px;
    }
    .main-grid {
        display: block;
    }
    .content {
        padding: 16px 12px;
    }
    .section {
        margin-bottom: 24px;
    }
    .section-header {
        align-items: flex-start;
        gap: 10px;
    }
    .service {
        grid-template-columns: 1fr;
        gap: 12px;

    padding: 0 16px 16px;
}
    .service > div {
        min-height: auto;
        padding: 18px 16px 18px 86px;
        background-position: 20px center;
        background-size: 48px 48px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 28px;
        padding-bottom: 24px;
    }
    .footer-nav,
    .footer-nav ul,
    .followus {
        justify-content: flex-start;
        justify-self: start;
    }
    .followus {
        margin-top: 16px;
        flex-wrap: wrap;
    }
    .society-list {
        gap: 10px 16px;
    }
}

/* Final mobile header override */
@media (max-width: 767px) {
    .page-header {
        padding-top: 0;
    }

    .page-header .bar {
        position: static;
        padding: 6px 0;
        line-height: 1.35;
    }

    .page-header .bar .tags {
        display: block;
        padding: 0 12px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .page-header .header-inner {
        padding: 14px 0 12px;
    }

    .page-header .brand {
        min-width: 0;
        justify-content: center;
    }

    .page-header .brand-text {
        min-width: 0;
    }

    .page-header .brand-name,
    .page-header .brand-text h1 {
        font-size: clamp(1.25rem, 6vw, 1.55rem);
        line-height: 1.15;
    }
}

/* Header search width adjustment */

.header-actions .search-form:has(#siteSearch) {
    flex: 0 1 75%;
    max-width: 75%;
}

@media (max-width: 767px) {
    .header-actions .search-form:has(#siteSearch) {
        flex-basis: 100%;
        max-width: 100%;
    }
}

/* Shared interaction and responsive overrides */
.search-form:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,102,102,0.1);
}

.search-btn:hover {
    background: var(--color-accent-dark);
}
