:root {
    --bc-primary: #1dbcb8;
    --bc-primary-700: #14918e;
    --bc-secondary: #ff8c42;
    --bc-secondary-700: #e56d1d;
    --bc-ink: #1f2a37;
    --bc-muted: #5d6b7a;
    --bc-line: #dbe3ea;
    --bc-soft: #f4faf9;
    --bc-white: #ffffff;
    --bc-shadow: 0 12px 30px rgba(31, 42, 55, 0.08);
    --bc-radius: 16px;
    --bc-radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--bc-ink);
    background: radial-gradient(circle at 0% -10%, #e8f8f7 0, #ffffff 48%) fixed;
    line-height: 1.55;
}

a {
    color: inherit;
}

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

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(219, 227, 234, 0.8);
    transition: padding 0.25s ease, box-shadow 0.25s ease;
    padding: 0.8rem 0;
}

body.show-sticky-bar .navbar {
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
}

.navbar.is-scrolled {
    padding: 0.45rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.navbar-toggler {
    border: 1px solid var(--bc-line);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(29, 188, 184, 0.2);
}

.navbar-brand {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.brand-logo-bg {
    width: auto;
    height: 44px;
    max-width: min(62vw, 265px);
    object-fit: contain;
    display: block;
}

.nav-link {
    color: var(--bc-ink) !important;
    font-weight: 500;
    position: relative;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bc-primary-700) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.3rem;
    height: 2px;
    background: var(--bc-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.main-nav-links {
    justify-content: center;
    gap: 0.2rem;
    padding: 0.2rem 0.35rem;
    border: 1px solid var(--bc-line);
    border-radius: 999px;
    background: #f8fcfc;
}

.nav-more-dropdown .dropdown-menu {
    min-width: 220px;
}

.dropdown-menu {
    border: 1px solid var(--bc-line);
    border-radius: 12px;
    box-shadow: var(--bc-shadow);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: #ecf9f8;
    color: var(--bc-primary-700);
}

.nav-search {
    position: relative;
    min-width: 270px;
    max-width: 330px;
    width: 100%;
}

.nav-search input {
    width: 100%;
    border: 1px solid var(--bc-line);
    border-radius: 999px;
    padding: 0.6rem 2.8rem 0.6rem 1rem;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
    border-color: var(--bc-primary);
    box-shadow: 0 0 0 3px rgba(29, 188, 184, 0.15);
}

.nav-search button {
    position: absolute;
    right: 0.35rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bc-primary);
    color: #fff;
}

.nav-icon-btn {
    border: 0;
    background: var(--bc-soft);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    position: relative;
    color: var(--bc-primary-700);
    transition: transform 0.2s ease;
}

.nav-icon-btn:hover {
    transform: translateY(-1px);
}

.navbar-mobile-tools {
    display: none;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--bc-secondary);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.nav-spacer {
    height: 83px;
}

.sticky-commerce {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1100;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s ease, opacity 0.2s ease;
}

body.show-sticky-bar .sticky-commerce {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-main-row {
    margin-top: 0.25rem;
    margin-bottom: 0.15rem;
    background: linear-gradient(90deg, #1dbcb8, #37cec9);
    border: 1px solid rgba(20, 145, 142, 0.28);
    box-shadow: 0 10px 26px rgba(17, 115, 112, 0.24);
    border-radius: 12px;
    padding: 0.45rem;
    display: grid;
    gap: 0.45rem;
    align-items: center;
    grid-template-columns: auto auto minmax(150px, 1fr) auto;
}

.sticky-icon-btn,
.sticky-cart-btn {
    border: 1px solid rgba(17, 115, 112, 0.34);
    background: rgba(255, 255, 255, 0.95);
    color: #fff;
    border-radius: 10px;
    min-height: 38px;
    min-width: 38px;
    padding: 0.42rem 0.52rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.78rem;
}

.sticky-icon-btn svg,
.sticky-cart-btn svg,
.sticky-search-go svg {
    width: 17px;
    height: 17px;
    display: block;
}

.sticky-icon-btn {
    color: #0f172a;
}

.sticky-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.16);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.sticky-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sticky-logo:hover {
    text-decoration: none;
    filter: brightness(1.02);
}

.sticky-search-form {
    display: flex;
    align-items: center;
    min-width: 0;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
}

.sticky-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    height: 38px;
    font-size: 0.84rem;
    padding: 0 0.75rem;
    color: #0f172a;
}

.sticky-search-input:focus {
    outline: none;
}

.sticky-search-go {
    width: 38px;
    height: 38px;
    border: 0;
    border-left: 1px solid rgba(15, 23, 42, 0.14);
    background: #fff;
    color: #0f172a;
    display: inline-grid;
    place-items: center;
}

.sticky-cart-btn {
    background: #ffffff;
    border-color: rgba(17, 115, 112, 0.34);
    color: #0f172a;
}

.sticky-cart-btn .cart-count {
    min-width: 19px;
    height: 19px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.66rem;
}

.menu-offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-offcanvas-nav,
.menu-offcanvas-cats {
    display: grid;
    gap: 0.45rem;
}

.menu-offcanvas-nav a,
.menu-offcanvas-cats a {
    text-decoration: none;
    color: #163242;
    border: 1px solid var(--bc-line);
    border-radius: 10px;
    padding: 0.58rem 0.75rem;
    font-weight: 600;
}

.menu-offcanvas-nav a:hover,
.menu-offcanvas-cats a:hover {
    color: var(--bc-primary-700);
    background: #f3fbfa;
}

.menu-offcanvas-divider {
    height: 1px;
    background: var(--bc-line);
}

.menu-offcanvas-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.menu-offcanvas-actions .btn-primary-custom,
.menu-offcanvas-actions .btn-outline-custom {
    width: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4.8rem 0 4.2rem;
    background:
        radial-gradient(450px 300px at 85% 22%, rgba(255, 140, 66, 0.2), transparent 70%),
        linear-gradient(130deg, #e9faf9 0%, #d9f4f3 35%, #c7efed 100%);
}

.hero-content,
.hero-image-area {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(20, 145, 142, 0.25);
    color: var(--bc-primary-700);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.hero-title {
    margin: 1rem 0 1rem;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.08;
    letter-spacing: -0.8px;
    font-weight: 800;
}

.hero-title span {
    color: var(--bc-primary-700);
}

.hero-description {
    max-width: 560px;
    color: #38505f;
    font-size: 1.03rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.btn-primary-custom,
.btn-outline-custom,
.btn-outline-mini,
.btn-add-cart {
    text-decoration: none;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary-custom {
    background: var(--bc-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(29, 188, 184, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-1px);
    background: var(--bc-primary-700);
    color: #fff;
}

.btn-outline-custom {
    border-color: rgba(20, 145, 142, 0.4);
    color: var(--bc-primary-700);
    background: rgba(255, 255, 255, 0.7);
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--bc-primary-700);
}

.hero-image-area {
    min-height: 380px;
}

.hero-main-image {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 500px;
    filter: drop-shadow(0 20px 35px rgba(28, 100, 97, 0.25));
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.deco-circle-1 {
    width: 230px;
    height: 230px;
    background: rgba(255, 140, 66, 0.2);
    right: 4%;
    top: 2%;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(29, 188, 184, 0.18);
    left: 8%;
    bottom: 0;
}

.floating-bottle {
    position: absolute;
    width: 58px;
    opacity: 0.9;
    animation: floatY 4.2s ease-in-out infinite;
}

.floating-bottle-1 {
    top: 8%;
    left: 6%;
}

.floating-bottle-2 {
    bottom: 9%;
    right: 6%;
    animation-delay: 0.8s;
}

.floating-bottle-3 {
    top: 24%;
    right: 18%;
    animation-delay: 1.3s;
}

@keyframes floatY {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.section-block {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 2rem;
}

.splide__pagination {
    display: none !important;
}

.section-tag {
    display: inline-block;
    font-size: 0.76rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--bc-primary-700);
    border: 1px solid rgba(20, 145, 142, 0.25);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    background: rgba(29, 188, 184, 0.08);
}

.section-title {
    margin: 0.75rem 0 0.65rem;
    font-size: clamp(1.55rem, 4vw, 2.2rem);
    line-height: 1.2;
    font-weight: 800;
}

.section-subtitle {
    color: var(--bc-muted);
    max-width: 100%;
}

.feature-card {
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius);
    background: #fff;
    padding: 1.2rem;
    height: 100%;
    box-shadow: 0 8px 20px rgba(31, 42, 55, 0.05);
}

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(29, 188, 184, 0.16);
    color: var(--bc-primary-700);
    display: grid;
    place-items: center;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.feature-icon.alt {
    background: rgba(255, 140, 66, 0.17);
    color: var(--bc-secondary-700);
}

.feature-icon.ok {
    background: rgba(40, 167, 69, 0.18);
    color: #1f7e39;
}

.feature-title {
    font-size: 1.05rem;
    margin: 0 0 0.45rem;
    font-weight: 700;
}

.feature-text {
    color: var(--bc-muted);
    margin: 0;
    font-size: 0.92rem;
}

.product-card {
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 42, 55, 0.06);
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-image {
    background: #eaf8f7;
    padding: 0;
    aspect-ratio: 1 / 1;
    display: block;
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.product-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.72rem;
    background: rgba(31, 42, 55, 0.85);
    color: #fff;
    border-radius: 999px;
    padding: 0.22rem 0.62rem;
    letter-spacing: 0.3px;
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: auto;
}

.product-name {
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
}

.product-link {
    text-decoration: none;
}

.product-link:hover {
    color: var(--bc-primary-700);
}

.product-desc,
.product-meta {
    margin: 0;
    font-size: 0.88rem;
    color: var(--bc-muted);
}

.product-actions {
    margin-top: 0.35rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-add-cart {
    border-color: transparent;
    background: var(--bc-primary);
    color: #fff;
    padding: 0.52rem 0.9rem;
    font-size: 0.84rem;
    line-height: 1.15;
}

.btn-add-cart:hover {
    background: var(--bc-primary-700);
    color: #fff;
}

.btn-add-cart.is-added {
    background: #239f56;
}

.btn-outline-mini {
    border: 1px solid rgba(20, 145, 142, 0.35);
    color: var(--bc-primary-700);
    background: #fff;
    padding: 0.52rem 0.85rem;
    font-size: 0.82rem;
    line-height: 1.15;
}

.btn-outline-mini:hover {
    background: rgba(29, 188, 184, 0.1);
}

.quote-link {
    font-size: 0.78rem;
    color: var(--bc-secondary-700);
    font-weight: 600;
    text-decoration: none;
}

.featured-splide .splide__slide {
    height: auto;
    padding: 0.15rem;
}

.featured-splide .product-card {
    height: auto;
}

.featured-splide .product-info {
    height: auto;
    gap: 0.35rem;
    padding: 0.9rem 1rem 0.85rem;
}

.featured-splide .featured-copy {
    margin-bottom: 0.2rem;
}

.featured-splide .product-actions {
    margin-top: 0.15rem;
    justify-content: center;
}

.featured-splide .splide__arrow {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border: 1px solid var(--bc-line);
    opacity: 1;
}

.featured-splide .splide__arrow svg {
    fill: var(--bc-primary-700);
}

.featured-splide .splide__arrow:hover {
    background: var(--bc-soft);
}

.featured-splide .splide__pagination {
    bottom: -1.35rem;
}

.featured-splide .splide__pagination__page {
    width: 7px;
    height: 7px;
    background: #b8c9d8;
}

.featured-splide .splide__pagination__page.is-active {
    background: var(--bc-primary);
    transform: scale(1.15);
}

.home-client-logos-block {
    padding-top: 1.8rem;
    padding-bottom: 0.65rem;
}

.client-logos-splide {
    background: #fff;
}

.client-logos-splide .splide__track {
    background: #fff;
}

#logos-clientes-botellas + #destacadas {
    padding-top: 1.6rem;
}

.logo-strip-header {
    margin-bottom: 1rem;
}

.client-logos-splide .splide__slide {
    padding: 0.15rem;
}

.client-logo-pill {
    height: 70px;
    border-radius: 999px;
    border: 1px solid var(--bc-line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    box-shadow: 0 8px 20px rgba(31, 42, 55, 0.06);
    text-decoration: none;
}

.client-logo-pill img {
    max-width: 138px;
    max-height: 38px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo-text {
    font-size: 0.82rem;
    font-weight: 700;
    color: #243e53;
    text-align: center;
    line-height: 1.2;
}

.client-logos-splide .splide__arrow {
    width: 1.9rem;
    height: 1.9rem;
    background: #fff;
    border: 1px solid var(--bc-line);
}

.client-logos-splide .splide__arrow svg {
    fill: var(--bc-primary-700);
}

.home-productions-block {
    padding-top: 0.35rem;
}

.bottle-productions-box {
    border: 1px solid #0f7f7c;
    border-radius: 20px;
    background: #1dbcb8;
    padding: 0.95rem;
}

.bottle-productions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
}

.bottle-productions-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.bottle-productions-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.68);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.bottle-productions-avatar img {
    width: 84%;
    height: 84%;
    object-fit: contain;
}

.bottle-productions-brand h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.15;
    color: #fff;
    font-weight: 800;
}

.bottle-productions-brand p {
    margin: 0.1rem 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    font-weight: 600;
}

.bottle-productions-link {
    border-color: rgba(255, 255, 255, 0.76);
    color: #fff;
    background: transparent;
    min-height: 36px;
}

.bottle-productions-link:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.bottle-productions-splide .splide__slide {
    height: auto;
    padding: 0.15rem;
}

.bottle-productions-splide .splide__arrow {
    width: 1.9rem;
    height: 1.9rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 127, 124, 0.45);
}

.bottle-productions-splide .splide__arrow svg {
    fill: #0f7f7c;
}

.bottle-production-card {
    border: 1px solid rgba(17, 115, 112, 0.36);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(11, 82, 80, 0.14);
    display: flex;
    flex-direction: column;
}

.bottle-production-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
}

.bottle-production-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bottle-production-body {
    padding: 0.92rem 0.92rem 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.bottle-production-logo {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-production-logo img {
    max-height: 34px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.bottle-production-logo span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #334d5f;
    text-align: center;
}

.bottle-production-card h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.3;
    font-weight: 700;
}

.bottle-production-client {
    margin: 0;
    font-size: 0.81rem;
    color: #496173;
}

.bottle-production-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.22rem;
}

.bottle-production-actions .btn-add-cart,
.bottle-production-actions .btn-outline-mini {
    min-height: 36px;
    padding: 0.46rem 0.88rem;
    font-size: 0.8rem;
}

.home-random-bottle-block {
    padding-top: 1.1rem;
}

.featured-inline-label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 0.95rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.74rem;
    font-weight: 800;
}

.bottle-featured-label {
    color: #fff;
    background: #0f7f7c;
    box-shadow: 0 8px 16px rgba(9, 76, 75, 0.34);
}

.random-bottle-spotlight {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 1rem;
    align-items: start;
    border: 1px solid #0f7f7c;
    border-radius: 20px;
    background: #1dbcb8;
    padding: 0.95rem;
}

.random-bottle-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #0f7f7c;
    background: #fff;
}

.random-bottle-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.random-bottle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.random-bottle-media .splide__arrow {
    width: 1.9rem;
    height: 1.9rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 127, 124, 0.45);
}

.random-bottle-media .splide__arrow svg {
    fill: #0f7f7c;
}

.random-bottle-media .splide__pagination {
    bottom: 0.35rem;
}

.random-bottle-media .splide__pagination__page {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.62);
}

.random-bottle-media .splide__pagination__page.is-active {
    background: #fff;
}

.random-bottle-content {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 100%;
}

.random-bottle-main {
    display: grid;
    gap: 0.5rem;
    margin-bottom: auto;
}

.random-bottle-main .product-meta {
    color: rgba(255, 255, 255, 0.86);
}

.random-bottle-main h3 {
    margin: 0;
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: 1.15;
    color: #fff;
}

.random-bottle-main h3 .product-link:hover {
    color: #f4ffff;
}

.random-bottle-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.93);
}

.random-bottle-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.random-bottle-actions .btn-add-cart,
.random-bottle-actions .btn-outline-mini {
    min-height: 38px;
    font-size: 0.83rem;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
}

.random-bottle-actions .btn-add-cart {
    background: #fff;
    color: #0f7f7c;
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.random-bottle-actions .btn-add-cart:hover {
    background: #f2ffff;
    color: #0b6663;
}

.random-bottle-actions .btn-outline-mini {
    border-color: rgba(255, 255, 255, 0.76);
    color: #fff;
    background: transparent;
}

.random-bottle-actions .btn-outline-mini:hover {
    background: rgba(255, 255, 255, 0.18);
}

.random-bottle-content .bottle-featured-label {
    align-self: flex-end;
    width: auto;
    max-width: fit-content;
}

.wm-wrap {
    font-family: inherit;
    display: flex;
    gap: 14px;
    align-items: stretch;
    min-height: 320px;
    padding: 4px 0;
}

.wm-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 64px;
    flex-shrink: 0;
}

.wm-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #14918e;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.wm-btn:hover {
    transform: scale(1.1);
    background: #0f7f7c;
}

.wm-btn:active {
    transform: scale(0.93);
}

.wm-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.wm-tube-wrap {
    flex: 1;
    width: 40px;
    position: relative;
}

.wm-tube-svg {
    width: 40px;
    height: 100%;
    min-height: 190px;
}

.wm-label {
    font-size: 0.79rem;
    font-weight: 700;
    color: #14918e;
    text-align: center;
    margin-top: 2px;
}

.wm-right {
    flex: 1;
    min-width: 0;
}

.wm-card {
    background: #fff;
    border: 1px solid #d5e7e6;
    border-radius: 12px;
    border-left: 3px solid #1dbcb8;
    padding: 14px 16px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.wm-main-title {
    font-size: 1rem;
    font-weight: 700;
    color: #14918e;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(29, 188, 184, 0.22);
}

.wm-sub {
    font-size: 0.85rem;
    color: var(--bc-muted);
    margin: 0 0 6px;
    font-weight: 600;
}

.wm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    flex: 1;
}

.wm-list li {
    padding: 3px 0 3px 14px;
    position: relative;
    font-size: 0.82rem;
    color: #244154;
    line-height: 1.4;
}

.wm-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 3px;
    color: #1dbcb8;
    font-size: 1rem;
    line-height: 1;
}

.wm-list li b {
    color: #0f7f7c;
}

.quote-link:hover {
    text-decoration: underline;
}

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

.faq-grid article {
    border: 1px solid var(--bc-line);
    border-radius: 14px;
    padding: 1rem;
    background: #fff;
}

.faq-grid h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
}

.faq-grid p {
    margin: 0;
    color: var(--bc-muted);
    font-size: 0.92rem;
}

.catalog-section {
    padding-top: 3.2rem;
}

.catalog-toolbar {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.chips-wrap {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 980px;
}

.chip {
    text-decoration: none;
    padding: 0.34rem 0.42rem 0.34rem 0.78rem;
    border-radius: 999px;
    font-size: 0.84rem;
    border: 1px solid var(--bc-line);
    background: #fff;
    color: #2d3f50;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.chip-label {
    line-height: 1;
}

.chip-count {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #edf4fb;
    color: #3a5166;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 0.35rem;
}

.chip:hover,
.chip.active {
    border-color: transparent;
    background: var(--bc-primary);
    color: #fff;
}

.chip:hover .chip-count,
.chip.active .chip-count {
    background: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.catalog-search {
    width: min(360px, 100%);
    display: flex;
    gap: 0.4rem;
}

.catalog-search input {
    flex: 1;
    border: 1px solid var(--bc-line);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
}

.catalog-search input:focus {
    border-color: var(--bc-primary);
    outline: none;
}

.catalog-search button {
    border: 0;
    border-radius: 999px;
    background: var(--bc-primary);
    color: #fff;
    padding: 0.6rem 1rem;
    font-weight: 600;
}

.catalog-count {
    color: var(--bc-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.pagination-wrap {
    margin-top: 1.8rem;
}

.pagination {
    gap: 0.35rem;
    flex-wrap: wrap;
}

.pagination .page-link {
    border-radius: 10px;
    margin-right: 0;
    border: 1px solid var(--bc-line);
    color: #294154;
    min-width: 40px;
    text-align: center;
}

.page-ellipsis {
    background: #f8fcfc;
    color: #6f8090;
}

.pagination .page-item.active .page-link {
    background: var(--bc-primary);
    border-color: var(--bc-primary);
}

.breadcrumb-wrap {
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.84rem;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--bc-primary-700);
    text-decoration: none;
}

.product-detail {
    border: 1px solid var(--bc-line);
    border-radius: var(--bc-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(31, 42, 55, 0.06);
}

.detail-image {
    background: linear-gradient(180deg, #f7fcfc, #e9f7f6);
    padding: 0.8rem;
    min-height: 420px;
    display: block;
}

.detail-image-gallery {
    display: block;
}

.detail-gallery {
    border: 1px solid #d7e6ef;
    border-radius: 14px;
    padding: 0.55rem;
    background: #f8fbff;
}

.detail-main {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #dbeafe;
    background: #fff;
    aspect-ratio: 1 / 1;
}

.detail-zoom-btn {
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: zoom-in;
}

.detail-main img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
}

.detail-thumbs {
    margin-top: 0.55rem;
}

.detail-thumbs .splide__track {
    padding: 2px 0;
}

.detail-thumbs .splide__list {
    align-items: stretch;
}

.detail-thumbs .splide__slide {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #dbeafe;
    background: #fff;
    opacity: 0.72;
    cursor: pointer;
    width: 92px;
    min-width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-thumbs .splide__slide.is-active {
    border-color: #14918e;
    opacity: 1;
}

.detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.detail-no-image {
    min-height: 320px;
    display: grid;
    place-items: center;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    color: #5d6b7a;
    font-size: 0.92rem;
    background: #fff;
    text-align: center;
    padding: 1rem;
}

.detail-modal-content {
    background: rgba(12, 21, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.detail-modal-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 5;
}

.detail-modal-body {
    padding: 0.8rem;
    min-height: min(86vh, 900px);
    display: grid;
    place-items: center;
}

.detail-modal-body img {
    width: 100%;
    max-height: calc(86vh - 1.6rem);
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    background: #fff;
}

.related-splide .splide__track {
    padding-bottom: 0.4rem;
}

.detail-body {
    padding: 1.3rem;
}

.detail-title {
    margin: 0 0 0.6rem;
    font-size: clamp(1.4rem, 3.2vw, 2.1rem);
    line-height: 1.2;
    font-weight: 800;
}

.detail-meta {
    color: var(--bc-muted);
    margin: 0.2rem 0;
}

.detail-desc {
    margin: 1rem 0;
    color: #324c5f;
    white-space: pre-line;
}

.detail-actions {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
}

.related-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.empty-state {
    min-height: 50vh;
    display: grid;
    align-items: center;
}

.footer-site {
    padding: 1.1rem 0;
    border-top: 1px solid var(--bc-line);
    background: #f8fcfc;
}

.footer-site p {
    margin: 0;
    color: #466073;
    font-size: 0.9rem;
    text-align: center;
}

.offcanvas {
    border-left: 1px solid var(--bc-line);
}

.offcanvas-title {
    font-size: 1.08rem;
    font-weight: 700;
}

.cart-items {
    display: grid;
    gap: 0.8rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0.65rem;
    border: 1px solid var(--bc-line);
    border-radius: 12px;
    padding: 0.55rem;
    background: #fff;
}

.cart-item-image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    background: #ecf7f6;
}

.cart-item-name {
    margin: 0 0 0.25rem;
    font-size: 0.89rem;
    font-weight: 700;
    line-height: 1.2;
}

.cart-item-meta {
    margin: 0;
    color: var(--bc-muted);
    font-size: 0.79rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.qty-btn,
.remove-btn {
    border: 1px solid var(--bc-line);
    background: #fff;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    padding: 0;
    font-weight: 700;
}

.qty-input {
    width: 54px;
    height: 28px;
    border: 1px solid var(--bc-line);
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-align: center;
    color: var(--bc-ink);
    padding: 0 0.2rem;
    background: #fff;
}

.remove-btn {
    margin-left: auto;
    width: auto;
    padding: 0 0.5rem;
    color: #b44747;
    font-size: 0.78rem;
}

.cart-footer {
    margin-top: 1rem;
    border-top: 1px solid var(--bc-line);
    padding-top: 0.9rem;
}

.cart-total {
    margin-bottom: 0.75rem;
    color: var(--bc-muted);
}

.cart-empty {
    color: var(--bc-muted);
    text-align: center;
    margin-top: 1.2rem;
}

.toast-note {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    background: #1e3f53;
    color: #fff;
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    font-size: 0.84rem;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast-note.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .navbar-mobile-tools {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.45rem;
        margin-left: 0.65rem;
        min-width: 0;
        flex: 1 1 auto;
    }

    .main-nav-links {
        border-radius: 12px;
        margin-top: 0.65rem;
        padding: 0.45rem;
    }

    .brand-logo-bg {
        height: 38px;
        max-width: min(50vw, 170px);
    }

    .nav-search {
        max-width: 100%;
        min-width: 100%;
        margin-top: 0.6rem;
    }

    .nav-search-mobile {
        margin-top: 0;
        min-width: 0;
        max-width: none;
        width: min(56vw, 330px);
    }

    .nav-search-mobile input {
        height: 38px;
        padding: 0.52rem 2.55rem 0.52rem 0.82rem;
        font-size: 0.8rem;
    }

    .nav-search-mobile button {
        width: 32px;
        height: 32px;
        right: 0.28rem;
    }

    .nav-icon-btn {
        margin-top: 0.6rem;
    }

    .nav-icon-btn-mobile {
        margin-top: 0;
        width: 38px;
        height: 38px;
        flex: 0 0 auto;
    }

    .nav-spacer {
        height: 74px;
    }

    .sticky-main-row {
        grid-template-columns: auto auto minmax(0, 1fr) auto;
    }

    .hero-section {
        padding-top: 3.2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero-image-area {
        margin-top: 1.2rem;
    }

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

    .catalog-toolbar {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .catalog-search {
        width: 100%;
    }

    .detail-image {
        min-height: 300px;
    }

    .random-bottle-spotlight {
        grid-template-columns: 1fr;
    }

    .bottle-productions-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .random-bottle-media {
        width: 100%;
        max-width: none;
        justify-self: stretch;
    }

    .wm-wrap {
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .random-bottle-spotlight {
        position: relative;
    }

    .random-bottle-content .bottle-featured-label {
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        z-index: 4;
        margin: 0;
    }
}

@media (min-width: 992px) {
    .navbar .container {
        position: relative;
    }

    .navbar-collapse {
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        min-height: 52px;
    }

    .main-nav-links {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        white-space: nowrap;
        z-index: 2;
    }

    .main-nav-links .nav-link {
        padding-left: 0.72rem;
        padding-right: 0.72rem;
    }

    .nav-search {
        margin-left: auto;
        width: 300px;
        min-width: 300px;
    }
}

@media (max-width: 575.98px) {
    .navbar-mobile-tools {
        margin-left: 0.45rem;
        gap: 0.35rem;
    }

    .nav-search-mobile {
        width: min(62vw, 245px);
    }

    .nav-search-mobile input {
        font-size: 0.76rem;
        padding-left: 0.7rem;
    }

    .wm-wrap {
        gap: 10px;
    }

    .wm-card {
        padding: 12px;
    }

    .wm-main-title {
        font-size: 0.94rem;
    }

    .wm-list li {
        font-size: 0.79rem;
    }

    .sticky-main-row {
        margin-top: 0;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .sticky-logo {
        display: none;
    }

    .section-block {
        padding: 3.1rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
    }

    .product-actions {
        flex-direction: column;
        margin-top: 0.45rem;
    }

    .btn-add-cart,
    .btn-outline-mini {
        width: 100%;
    }

    .pagination .page-link {
        min-width: 34px;
        padding: 0.42rem 0.55rem;
        font-size: 0.84rem;
    }

    .client-logo-pill {
        height: 64px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .client-logo-pill img {
        max-width: 110px;
        max-height: 34px;
    }

    .detail-image {
        padding: 0.55rem;
    }

    .detail-gallery {
        padding: 0.4rem;
    }

    .bottle-production-actions .btn-add-cart,
    .bottle-production-actions .btn-outline-mini {
        width: auto;
    }

    .chips-wrap {
        max-width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
    }
}
