/* ========================================
   TASU+ Custom Styles
   ======================================== */

/* --- Google Fonts Import (Andale Mono fallback) --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

/* --- Menu Tabs Navigation --- */
.ec-menuTabs {
    background-color: #FFFEF3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 100;
    min-height: 119px;
}

.ec-menuTabs__logo {
    flex-shrink: 0;
    width: 224px;
    height: 68px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ec-menuTabs__logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
}

.ec-menuTabs__logo-title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 36px;
    font-weight: 700;
    color: #1B2040;
    letter-spacing: 2px;
    line-height: 1.1;
}

.ec-menuTabs__logo-title .logo-plus {
    color: #4C512A;
    font-size: 28px;
    vertical-align: super;
    margin-left: 2px;
}

.ec-menuTabs__logo-subtitle {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 11px;
    color: #4C512A;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.ec-menuTabs__nav {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 30px;
    flex-shrink: 0;
}

.ec-menuTabs__nav-item {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    color: #4C512A;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease, border-color 0.2s ease;
    padding-bottom: 4px;
    border-bottom: 4px solid transparent;
}

.ec-menuTabs__nav-item:hover {
    color: #2a2d15;
}

.ec-menuTabs__nav-item.is-active {
    border-bottom: 4px solid #4C512A;
    color: #4C512A;
}

/* --- Responsive: Tablet & below --- */
@media screen and (max-width: 1200px) {
    .ec-menuTabs {
        padding: 0 32px;
    }

    .ec-menuTabs__nav {
        gap: 24px;
    }

    .ec-menuTabs__nav-item {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .ec-menuTabs {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .ec-menuTabs__logo {
        margin-bottom: 12px;
    }

    .ec-menuTabs__nav {
        flex-wrap: wrap;
        gap: 16px 24px;
        height: auto;
    }
}

@media screen and (max-width: 767px) {
    .ec-menuTabs {
        display: none;
    }
}

/* --- Override default header styles for TASU+ branding --- */
.ec-layoutRole {
    background: #FFFEF3;
}

/* ========================================
   Hero Banner Slider
   ======================================== */
.ec-heroBanner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ec-heroBanner__slider {
    width: 100%;
}

.ec-heroBanner__slide {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
}

.ec-heroBanner__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Scroll down indicator - stays on top of slider */
.ec-heroBanner__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 20;
    animation: heroBounce 2s ease-in-out infinite;
    pointer-events: none;
}

.ec-heroBanner__scroll-text {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.ec-heroBanner__scroll-arrow {
    font-size: 18px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

@keyframes heroBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* Slick slider overrides for hero */
.ec-heroBanner .slick-list,
.ec-heroBanner .slick-track {
    height: 100%;
}

.ec-heroBanner .slick-slide {
    outline: none;
}

/* --- Responsive Hero Banner --- */
@media screen and (max-width: 767px) {
    .ec-heroBanner__slide {
        height: 60vh;
        min-height: 350px;
    }

    .ec-heroBanner__scroll {
        bottom: 24px;
    }
}

/* ========================================
   About Us Page Overrides
   ======================================== */
.about_us_page .ec-layoutRole__contentTop {
    padding: 0;
}

.about_us_page .ec-layoutRole__contents {
    max-width: 100%;
}

/* ========================================
   About Content Component
   ======================================== */
.ec-aboutContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFEF3;
}

/* --- Welcome Heading --- */
.ec-aboutContent__welcome {
    width: 100%;
    padding: 80px 64px 60px;
    text-align: center;
}

.ec-aboutContent__welcome-title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: #0E1D42;
    margin: 0;
    letter-spacing: 1px;
}

/* --- Generic Section Layout --- */
.ec-aboutContent__section {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1108px;
    width: 100%;
    padding: 0 64px;
    margin: 0 auto;
}

/* --- Section spacing (150px gap from Figma) --- */
.ec-aboutContent__section+.ec-aboutContent__section {
    margin-top: 150px;
}

.ec-aboutContent__section--whoWeAre {
    margin-top: 0;
}

/* --- Image Block --- */
.ec-aboutContent__imageBlock {
    flex-shrink: 0;
    overflow: hidden;
}

.ec-aboutContent__section--whoWeAre .ec-aboutContent__imageBlock {
    width: 500px;
    height: 500px;
}

.ec-aboutContent__section--whatWeOffer .ec-aboutContent__imageBlock {
    width: 500px;
    height: 409px;
}

.ec-aboutContent__imageBlock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Text Block --- */
.ec-aboutContent__textBlock {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.ec-aboutContent__heading {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: #4C512A;
    margin: 0;
}

.ec-aboutContent__body {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0E1D42;
    margin: 0;
}

/* --- What do we offer: larger body text --- */
.ec-aboutContent__section--whatWeOffer .ec-aboutContent__body {
    font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    line-height: 28px;
}

/* ===== Section 3: Its relevance (dark green) ===== */
.ec-aboutContent__section--relevance {
    max-width: 100%;
    width: 100%;
    padding: 0;
    background-color: #4C512A;
    height: 531px;
    min-height: auto;
    gap: 70px;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
    overflow: visible;
    position: relative;
    box-sizing: border-box;
}

/* Shared image wrapper */
.ec-aboutContent__relevanceImage {
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

/* Left image: container 402×665 */
.ec-aboutContent__relevanceImage--left {
    width: 402px;
    height: 665px;
}

/* Left image positioning (from Figma: 420.51×554.91, centered, bottom: 5.02) */
.ec-aboutContent__relevanceImage--left img {
    position: absolute;
    width: 420.51px;
    height: 554.91px;
    left: 50%;
    margin-left: -210px;
    bottom: 5.02px;
    display: block;
    object-fit: cover;
}

/* Right image: container 359×675 */
.ec-aboutContent__relevanceImage--right {
    width: 359px;
    height: 675px;
}

/* Right image positioning (from Figma: 963×526, left: -256, top: 2) */
.ec-aboutContent__relevanceImage--right img {
    position: absolute;
    width: 963px;
    height: 526px;
    left: -256px;
    top: 2px;
    display: block;
    object-fit: cover;
}

/* Cream-colored text for dark section */
.ec-aboutContent__heading--cream {
    color: #FFFEF3;
}

.ec-aboutContent__body--cream {
    color: #FFFEF3;
    font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    line-height: 28px;
}

/* Text block: 392×635, centered vertically */
.ec-aboutContent__textBlock--cream {
    justify-content: center;
    width: 392px;
    height: 635px;
    flex-shrink: 0;
    max-width: 392px;
}

/* ===== Responsive ===== */
@media screen and (max-width: 1200px) {
    .ec-aboutContent__welcome-title {
        font-size: 36px;
    }

    .ec-aboutContent__section {
        gap: 40px;
        padding: 0 40px;
    }

    .ec-aboutContent__section--whoWeAre .ec-aboutContent__imageBlock {
        width: 400px;
        height: 400px;
    }

    .ec-aboutContent__section--whatWeOffer .ec-aboutContent__imageBlock {
        width: 400px;
        height: 327px;
    }

    .ec-aboutContent__heading {
        font-size: 32px;
        line-height: 40px;
    }

    .ec-aboutContent__section--relevance {
        gap: 30px;
        height: 400px;
    }

    .ec-aboutContent__relevanceImage--left {
        width: 300px;
        height: 500px;
    }

    .ec-aboutContent__relevanceImage--left img {
        width: 315px;
        height: 416px;
        margin-left: -157px;
        bottom: 4px;
    }

    .ec-aboutContent__relevanceImage--right {
        width: 260px;
        height: 510px;
    }

    .ec-aboutContent__relevanceImage--right img {
        width: 700px;
        height: 383px;
        left: -186px;
        top: 2px;
    }

    .ec-aboutContent__textBlock--cream {
        width: 300px;
        height: auto;
        max-width: 300px;
    }

    .ec-aboutContent__heading--cream {
        font-size: 32px;
    }

    .ec-aboutContent__body--cream {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 991px) {
    .ec-aboutContent__welcome {
        padding: 60px 20px 40px;
    }

    .ec-aboutContent__welcome-title {
        font-size: 28px;
    }

    .ec-aboutContent__section {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }

    .ec-aboutContent__section+.ec-aboutContent__section {
        margin-top: 80px;
    }

    .ec-aboutContent__section--whoWeAre .ec-aboutContent__imageBlock,
    .ec-aboutContent__section--whatWeOffer .ec-aboutContent__imageBlock {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    /* Reverse order on mobile for "What do we offer" so image comes first */
    .ec-aboutContent__section--whatWeOffer {
        flex-direction: column-reverse;
    }

    .ec-aboutContent__heading {
        font-size: 28px;
        line-height: 36px;
    }

    /* Its relevance: stack vertically on mobile */
    .ec-aboutContent__section--relevance {
        flex-direction: column;
        height: auto;
        gap: 0;
        padding: 40px 20px;
        margin-top: 80px;
        overflow: hidden;
    }

    /* Reset images to normal flow on mobile */
    .ec-aboutContent__relevanceImage--left,
    .ec-aboutContent__relevanceImage--right {
        width: 100%;
        height: 280px;
    }

    .ec-aboutContent__relevanceImage--left img,
    .ec-aboutContent__relevanceImage--right img {
        position: static;
        width: 100%;
        height: 100%;
        margin-left: 0;
        left: auto;
        top: auto;
        bottom: auto;
        object-fit: cover;
    }

    .ec-aboutContent__textBlock--cream {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 30px 0;
    }

    .ec-aboutContent__heading--cream {
        font-size: 28px;
    }

    .ec-aboutContent__body--cream {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ========================================
   Timeline Component
   ======================================== */
.ec-timeline {
    background-color: #FFFEF3;
    padding: 80px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ec-timeline__title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: #4C512A;
    text-align: center;
    margin: 0 0 47px;
}

/* --- Track (holds all rows + vertical line) --- */
.ec-timeline__track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 47px;
    width: 100%;
    max-width: 1288px;
    padding: 0 64px;
}

/* Central vertical line */
.ec-timeline__track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #4C512A;
    transform: translateX(-50%);
    z-index: 0;
}

/* --- Row --- */
.ec-timeline__row {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    gap: 30px;
    align-items: start;
    position: relative;
}

/* --- Dot marker --- */
.ec-timeline__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #4C512A;
    flex-shrink: 0;
    z-index: 1;
    justify-self: center;
    margin-top: 12px;
}

/* --- Content (text side) --- */
.ec-timeline__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-timeline__content--left {
    text-align: right;
    align-items: flex-end;
}

.ec-timeline__content--right {
    text-align: left;
    align-items: flex-start;
}

.ec-timeline__year {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 40px;
    font-weight: 400;
    line-height: 48px;
    color: #4C512A;
    margin: 0;
}

.ec-timeline__desc {
    font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #0E1D42;
    margin: 0;
}

/* --- Media (image side) --- */
.ec-timeline__media {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.ec-timeline__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsive Timeline ===== */
@media screen and (max-width: 1200px) {
    .ec-timeline__track {
        padding: 0 40px;
    }

    .ec-timeline__year {
        font-size: 32px;
        line-height: 40px;
    }

    .ec-timeline__desc {
        font-size: 16px;
        line-height: 24px;
    }

    .ec-timeline__media {
        height: 280px;
    }
}

@media screen and (max-width: 991px) {
    .ec-timeline {
        padding: 60px 0 80px;
    }

    .ec-timeline__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .ec-timeline__track {
        padding: 0 20px;
    }

    .ec-timeline__track::before {
        left: 32px;
    }

    .ec-timeline__row {
        grid-template-columns: 24px 1fr;
        gap: 20px;
    }

    .ec-timeline__dot {
        margin-top: 0;
    }

    /* Stack content + image vertically */
    .ec-timeline__content--left,
    .ec-timeline__content--right {
        text-align: left;
        align-items: flex-start;
        grid-column: 2;
    }

    .ec-timeline__media--left,
    .ec-timeline__media--right {
        grid-column: 2;
    }

    .ec-timeline__media {
        height: 220px;
    }

    .ec-timeline__year {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ========================================
   Custom Footer
   ======================================== */
.ec-footerCustom {
    background-color: #FFFEF3;
    width: 100%;
}

.ec-footerCustom__inner {
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
    padding: 55px 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* --- Top Row: Logo + Nav + Social --- */
.ec-footerCustom__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.ec-footerCustom__logo {
    flex-shrink: 0;
    width: 255px;
}

.ec-footerCustom__logo a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
}

.ec-footerCustom__logo-title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 36px;
    font-weight: 700;
    color: #1B2040;
    letter-spacing: 2px;
    line-height: 1.1;
}

.ec-footerCustom__logo-title .logo-plus {
    color: #4C512A;
    font-size: 28px;
    vertical-align: super;
    margin-left: 2px;
}

.ec-footerCustom__logo-subtitle {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 11px;
    color: #4C512A;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Navigation */
.ec-footerCustom__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ec-footerCustom__nav-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.ec-footerCustom__nav-link {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0E1D42;
    text-decoration: underline;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.ec-footerCustom__nav-link:hover {
    color: #4C512A;
}

/* Social Icons */
.ec-footerCustom__social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ec-footerCustom__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #4C512A;
    color: #FFFEF3;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ec-footerCustom__social-icon:hover {
    background-color: #85A443;
    transform: scale(1.1);
}

/* --- Middle Row: Contact + Subscribe --- */
.ec-footerCustom__middle {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* Contact */
.ec-footerCustom__contact {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.ec-footerCustom__contact-badge {
    display: inline-block;
    background-color: #85A443;
    color: #FFFEF3;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 7px;
    border-radius: 6px;
    width: fit-content;
}

.ec-footerCustom__contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-footerCustom__contact-info p {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0E1D42;
    margin: 0;
}

/* Subscribe */
.ec-footerCustom__subscribe {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 58px 40px;
    border-radius: 14px;
}

.ec-footerCustom__subscribe-input {
    width: 285px;
    padding: 22px 35px;
    border: 1px solid #0E1D42;
    border-radius: 14px;
    background: transparent;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #0E1D42;
    outline: none;
    transition: border-color 0.2s ease;
}

.ec-footerCustom__subscribe-input::placeholder {
    color: #0E1D42;
    opacity: 0.6;
}

.ec-footerCustom__subscribe-input:focus {
    border-color: #85A443;
}

.ec-footerCustom__subscribe-btn {
    padding: 20px 35px;
    background-color: #85A443;
    color: #FFFEF3;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.ec-footerCustom__subscribe-btn:hover {
    background-color: #6e8c36;
    transform: translateY(-1px);
}

/* --- Bottom: Line + Copyright --- */
.ec-footerCustom__bottom {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
}

.ec-footerCustom__line {
    border: none;
    border-top: 1px solid #0E1D42;
    margin: 0;
    width: 100%;
    opacity: 0.3;
}

.ec-footerCustom__copyright {
    display: flex;
    gap: 40px;
    align-items: center;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #0E1D42;
}

.ec-footerCustom__privacy-link {
    color: #0E1D42;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-footerCustom__privacy-link:hover {
    color: #4C512A;
    text-decoration: underline;
}

/* ===== Responsive Footer ===== */
@media screen and (max-width: 1200px) {
    .ec-footerCustom__inner {
        padding: 40px 40px 40px;
    }

    .ec-footerCustom__subscribe-input {
        width: 220px;
        padding: 16px 24px;
    }

    .ec-footerCustom__subscribe-btn {
        padding: 16px 24px;
    }

    .ec-footerCustom__subscribe {
        padding: 40px 24px;
    }
}

@media screen and (max-width: 991px) {
    .ec-footerCustom__inner {
        padding: 30px 20px 30px;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        gap: 40px;
    }

    .ec-footerCustom__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .ec-footerCustom__nav-row {
        gap: 20px;
        flex-wrap: wrap;
    }

    .ec-footerCustom__social {
        margin-top: 8px;
    }

    .ec-footerCustom__middle {
        flex-direction: column;
        gap: 30px;
    }

    .ec-footerCustom__subscribe {
        padding: 0;
        flex-direction: column;
        width: 100%;
    }

    .ec-footerCustom__subscribe-input {
        width: 100%;
    }

    .ec-footerCustom__subscribe-btn {
        width: 100%;
        text-align: center;
    }

    .ec-footerCustom__copyright {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
}

/* Hide default EC-CUBE footer on about_us page */
.about_us_page .ec-footerRole {
    display: none;
}

/* ========================================
   Online Shop — Floating Cart
   ======================================== */
.ec-floatingCart {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0E1D42;
    box-shadow: 0 4px 20px rgba(14, 29, 66, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ec-floatingCart:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(14, 29, 66, 0.35);
}

.ec-floatingCart svg {
    width: 24px;
    height: 24px;
}

.ec-floatingCart__count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    background-color: #4C512A;
    color: #FFFEF3;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 5px;
    border: 2px solid #FFFEF3;
}

/* ========================================
   Online Shop — Hero Banner
   ======================================== */
.ec-shopHero {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.ec-shopHero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ec-shopHero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ec-shopHero__title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 56px;
    font-weight: 400;
    color: #FFFEF3;
    text-align: center;
    letter-spacing: 2px;
}

/* ========================================
   Online Shop — Layout (Sidebar + Main)
   ======================================== */
.ec-shopLayout {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    gap: 0;
    background-color: #FFFEF3;
}

.ec-shopLayout__divider {
    width: 1px;
    background-color: #CFD2D9;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0 24px;
}

.ec-shopLayout__main {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Online Shop — Filter Sidebar
   ======================================== */
.ec-filterSidebar {
    width: 305px;
    flex-shrink: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-filterSidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ec-filterSidebar__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterSidebar__reset {
    width: 100px;
    height: 30px;
    border: 1px solid #9FA5B3;
    border-radius: 6px;
    background: transparent;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ec-filterSidebar__reset:hover {
    background-color: #3E4A68;
    color: #FFFEF3;
    border-color: #3E4A68;
}

.ec-filterSidebar__divider {
    border: none;
    border-top: 1px solid #CFD2D9;
    margin: 0;
}

/* --- Filter Group --- */
.ec-filterGroup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-filterGroup__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    margin: 0;
}

.ec-filterGroup__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Filter Item (checkbox row) --- */
.ec-filterItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.ec-filterItem--disabled {
    opacity: 0.5;
    cursor: default;
}

.ec-filterItem__checkbox {
    display: none;
}

.ec-filterItem__checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #CFD2D9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ec-filterItem__checkIcon {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark {
    background-color: #3E4A68;
    border-color: #3E4A68;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark .ec-filterItem__checkIcon {
    opacity: 1;
}

.ec-filterItem__checkbox:disabled+.ec-filterItem__checkmark {
    background-color: #CFD2D9;
    border-color: #CFD2D9;
}

.ec-filterItem__label {
    flex: 1;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterItem__count {
    width: 24px;
    height: 24px;
    border-radius: 8.25px;
    background-color: #9FA5B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #FFFEF3;
    flex-shrink: 0;
    line-height: 1;
}

/* --- Price Range Slider --- */
.ec-filterRange {
    position: relative;
    height: 14px;
    margin-top: 4px;
}

.ec-filterRange__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    top: 5px;
    z-index: 2;
    margin: 0;
    cursor: pointer;
}

.ec-filterRange__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.ec-filterRange__slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.ec-filterRange__track {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #CFD2D9;
    border-radius: 2px;
    z-index: 0;
}

.ec-filterRange__trackFill {
    height: 100%;
    background: #0E1D42;
    border-radius: 2px;
    width: 50%;
}

.ec-filterRange__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Breadcrumb
   ======================================== */
.ec-shopBreadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ec-shopBreadcrumb__item {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6E778E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-shopBreadcrumb__item:hover {
    color: #3E4A68;
}

.ec-shopBreadcrumb__item--active {
    color: #0E1D42;
    font-weight: 500;
}

.ec-shopBreadcrumb__chevron {
    display: flex;
    align-items: center;
}

/* ========================================
   Online Shop — Product Grid
   ======================================== */
.ec-productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ========================================
   Online Shop — Product Card
   ======================================== */
.ec-productCard {
    width: 100%;
}

.ec-productCard__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ec-productCard__link:hover {
    box-shadow: 0 4px 20px rgba(14, 29, 66, 0.1);
    transform: translateY(-2px);
}

/* Image area */
.ec-productCard__imageWrap {
    height: 224px;
    background: #23262F;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.ec-productCard__imageInner {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-productCard__image {
    max-width: 67%;
    max-height: 100%;
    object-fit: contain;
}

/* Info area */
.ec-productCard__info {
    background: #FCFCFD;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-productCard__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ec-productCard__name {
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #23262F;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ec-productCard__brewery {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #23262F;
    margin: 0;
}

.ec-productCard__specs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__spec {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #B4B9C4;
}

.ec-productCard__specDivider {
    width: 0;
    height: 16px;
    border-left: 1px solid #B4B9C4;
}

.ec-productCard__divider {
    border: none;
    border-top: 1px solid #E6E8EC;
    margin: 0;
}

.ec-productCard__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__priceIcon {
    flex-shrink: 0;
    margin-top: 1px;
}

.ec-productCard__priceValue {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #23262F;
}

/* ========================================
   Online Shop — See More Button
   ======================================== */
.ec-shopMore {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.ec-shopMore__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-width: 185px;
    height: 56px;
    background-color: #4C512A;
    color: #FFFEF3;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.ec-shopMore__btn:hover {
    background-color: #3E4422;
    transform: translateY(-1px);
}

/* Empty state */
.ec-shopEmpty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Responsive
   ======================================== */
@media screen and (max-width: 1200px) {
    .ec-shopHero__title {
        font-size: 42px;
    }

    .ec-shopLayout {
        padding: 20px 24px 40px;
    }

    .ec-filterSidebar {
        width: 260px;
        padding: 16px;
    }

    .ec-productGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 991px) {
    .ec-shopHero {
        height: 300px;
    }

    .ec-shopHero__title {
        font-size: 36px;
    }

    .ec-shopLayout {
        flex-direction: column;
        padding: 20px 16px 40px;
    }

    .ec-shopLayout__divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
    }

    .ec-filterSidebar {
        width: 100%;
    }

    .ec-productGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ec-productCard__name {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ec-shopHero {
        height: 220px;
    }

    .ec-shopHero__title {
        font-size: 28px;
    }

    .ec-productGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ec-productCard__imageWrap {
        height: 200px;
    }
}

/* ========================================
   Online Shop — Hero Banner
   ======================================== */
.ec-shopHero {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.ec-shopHero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ec-shopHero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ec-shopHero__title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 56px;
    font-weight: 400;
    color: #FFFEF3;
    text-align: center;
    letter-spacing: 2px;
}

/* ========================================
   Online Shop — Layout (Sidebar + Main)
   ======================================== */
.ec-shopLayout {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    gap: 0;
    background-color: #FFFEF3;
}

.ec-shopLayout__divider {
    width: 1px;
    background-color: #CFD2D9;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0 24px;
}

.ec-shopLayout__main {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Online Shop — Filter Sidebar
   ======================================== */
.ec-filterSidebar {
    width: 305px;
    flex-shrink: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-filterSidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ec-filterSidebar__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterSidebar__reset {
    width: 100px;
    height: 30px;
    border: 1px solid #9FA5B3;
    border-radius: 6px;
    background: transparent;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ec-filterSidebar__reset:hover {
    background-color: #3E4A68;
    color: #FFFEF3;
    border-color: #3E4A68;
}

.ec-filterSidebar__divider {
    border: none;
    border-top: 1px solid #CFD2D9;
    margin: 0;
}

/* --- Filter Group --- */
.ec-filterGroup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-filterGroup__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    margin: 0;
}

.ec-filterGroup__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Filter Item (checkbox row) --- */
.ec-filterItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.ec-filterItem--disabled {
    opacity: 0.5;
    cursor: default;
}

.ec-filterItem__checkbox {
    display: none;
}

.ec-filterItem__checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #CFD2D9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ec-filterItem__checkIcon {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark {
    background-color: #3E4A68;
    border-color: #3E4A68;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark .ec-filterItem__checkIcon {
    opacity: 1;
}

.ec-filterItem__checkbox:disabled+.ec-filterItem__checkmark {
    background-color: #CFD2D9;
    border-color: #CFD2D9;
}

.ec-filterItem__label {
    flex: 1;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterItem__count {
    width: 24px;
    height: 24px;
    border-radius: 8.25px;
    background-color: #9FA5B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #FFFEF3;
    flex-shrink: 0;
    line-height: 1;
}

/* --- Price Range Slider --- */
.ec-filterRange {
    position: relative;
    height: 14px;
    margin-top: 4px;
}

.ec-filterRange__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    top: 5px;
    z-index: 2;
    margin: 0;
    cursor: pointer;
}

.ec-filterRange__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.ec-filterRange__slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.ec-filterRange__track {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #CFD2D9;
    border-radius: 2px;
    z-index: 0;
}

.ec-filterRange__trackFill {
    height: 100%;
    background: #0E1D42;
    border-radius: 2px;
    width: 50%;
}

.ec-filterRange__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Breadcrumb
   ======================================== */
.ec-shopBreadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ec-shopBreadcrumb__item {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6E778E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-shopBreadcrumb__item:hover {
    color: #3E4A68;
}

.ec-shopBreadcrumb__item--active {
    color: #0E1D42;
    font-weight: 500;
}

.ec-shopBreadcrumb__chevron {
    display: flex;
    align-items: center;
}

/* ========================================
   Online Shop — Product Grid
   ======================================== */
.ec-productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ========================================
   Online Shop — Product Card
   ======================================== */
.ec-productCard {
    width: 100%;
}

.ec-productCard__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ec-productCard__link:hover {
    box-shadow: 0 4px 20px rgba(14, 29, 66, 0.1);
    transform: translateY(-2px);
}

/* Image area */
.ec-productCard__imageWrap {
    height: 224px;
    background: #23262F;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.ec-productCard__imageInner {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-productCard__image {
    max-width: 67%;
    max-height: 100%;
    object-fit: contain;
}

/* Info area */
.ec-productCard__info {
    background: #FCFCFD;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-productCard__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ec-productCard__name {
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #23262F;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ec-productCard__brewery {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #23262F;
    margin: 0;
}

.ec-productCard__specs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__spec {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #B4B9C4;
}

.ec-productCard__specDivider {
    width: 0;
    height: 16px;
    border-left: 1px solid #B4B9C4;
}

.ec-productCard__divider {
    border: none;
    border-top: 1px solid #E6E8EC;
    margin: 0;
}

.ec-productCard__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__priceIcon {
    flex-shrink: 0;
    margin-top: 1px;
}

.ec-productCard__priceValue {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #23262F;
}

/* ========================================
   Online Shop — See More Button
   ======================================== */
.ec-shopMore {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.ec-shopMore__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-width: 185px;
    height: 56px;
    background-color: #4C512A;
    color: #FFFEF3;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.ec-shopMore__btn:hover {
    background-color: #3E4422;
    transform: translateY(-1px);
}

/* Empty state */
.ec-shopEmpty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Responsive
   ======================================== */
@media screen and (max-width: 1200px) {
    .ec-shopHero__title {
        font-size: 42px;
    }

    .ec-shopLayout {
        padding: 20px 24px 40px;
    }

    .ec-filterSidebar {
        width: 260px;
        padding: 16px;
    }

    .ec-productGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 991px) {
    .ec-shopHero {
        height: 300px;
    }

    .ec-shopHero__title {
        font-size: 36px;
    }

    .ec-shopLayout {
        flex-direction: column;
        padding: 20px 16px 40px;
    }

    .ec-shopLayout__divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
    }

    .ec-filterSidebar {
        width: 100%;
    }

    .ec-productGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ec-productCard__name {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ec-shopHero {
        height: 220px;
    }

    .ec-shopHero__title {
        font-size: 28px;
    }

    .ec-productGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ec-productCard__imageWrap {
        height: 200px;
    }
}

/* ========================================
   Online Shop — Hero Banner
   ======================================== */
.ec-shopHero {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.ec-shopHero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ec-shopHero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ec-shopHero__title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 56px;
    font-weight: 400;
    color: #FFFEF3;
    text-align: center;
    letter-spacing: 2px;
}

/* ========================================
   Online Shop — Layout (Sidebar + Main)
   ======================================== */
.ec-shopLayout {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    gap: 0;
    background-color: #FFFEF3;
}

.ec-shopLayout__divider {
    width: 1px;
    background-color: #CFD2D9;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0 24px;
}

.ec-shopLayout__main {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Online Shop — Filter Sidebar
   ======================================== */
.ec-filterSidebar {
    width: 305px;
    flex-shrink: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-filterSidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ec-filterSidebar__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterSidebar__reset {
    width: 100px;
    height: 30px;
    border: 1px solid #9FA5B3;
    border-radius: 6px;
    background: transparent;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ec-filterSidebar__reset:hover {
    background-color: #3E4A68;
    color: #FFFEF3;
    border-color: #3E4A68;
}

.ec-filterSidebar__divider {
    border: none;
    border-top: 1px solid #CFD2D9;
    margin: 0;
}

/* --- Filter Group --- */
.ec-filterGroup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-filterGroup__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    margin: 0;
}

.ec-filterGroup__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Filter Item (checkbox row) --- */
.ec-filterItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.ec-filterItem--disabled {
    opacity: 0.5;
    cursor: default;
}

.ec-filterItem__checkbox {
    display: none;
}

.ec-filterItem__checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #CFD2D9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ec-filterItem__checkIcon {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark {
    background-color: #3E4A68;
    border-color: #3E4A68;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark .ec-filterItem__checkIcon {
    opacity: 1;
}

.ec-filterItem__checkbox:disabled+.ec-filterItem__checkmark {
    background-color: #CFD2D9;
    border-color: #CFD2D9;
}

.ec-filterItem__label {
    flex: 1;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterItem__count {
    width: 24px;
    height: 24px;
    border-radius: 8.25px;
    background-color: #9FA5B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #FFFEF3;
    flex-shrink: 0;
    line-height: 1;
}

/* --- Price Range Slider --- */
.ec-filterRange {
    position: relative;
    height: 14px;
    margin-top: 4px;
}

.ec-filterRange__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    top: 5px;
    z-index: 2;
    margin: 0;
    cursor: pointer;
}

.ec-filterRange__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.ec-filterRange__slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.ec-filterRange__track {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #CFD2D9;
    border-radius: 2px;
    z-index: 0;
}

.ec-filterRange__trackFill {
    height: 100%;
    background: #0E1D42;
    border-radius: 2px;
    width: 50%;
}

.ec-filterRange__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Breadcrumb
   ======================================== */
.ec-shopBreadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ec-shopBreadcrumb__item {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6E778E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-shopBreadcrumb__item:hover {
    color: #3E4A68;
}

.ec-shopBreadcrumb__item--active {
    color: #0E1D42;
    font-weight: 500;
}

.ec-shopBreadcrumb__chevron {
    display: flex;
    align-items: center;
}

/* ========================================
   Online Shop — Product Grid
   ======================================== */
.ec-productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ========================================
   Online Shop — Product Card
   ======================================== */
.ec-productCard {
    width: 100%;
}

.ec-productCard__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ec-productCard__link:hover {
    box-shadow: 0 4px 20px rgba(14, 29, 66, 0.1);
    transform: translateY(-2px);
}

/* Image area */
.ec-productCard__imageWrap {
    height: 224px;
    background: #23262F;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
}

.ec-productCard__imageInner {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-productCard__image {
    max-width: 67%;
    max-height: 100%;
    object-fit: contain;
}

/* Info area */
.ec-productCard__info {
    background: #FCFCFD;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-productCard__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ec-productCard__name {
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #23262F;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ec-productCard__brewery {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #23262F;
    margin: 0;
}

.ec-productCard__specs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__spec {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #B4B9C4;
}

.ec-productCard__specDivider {
    width: 0;
    height: 16px;
    border-left: 1px solid #B4B9C4;
}

.ec-productCard__divider {
    border: none;
    border-top: 1px solid #E6E8EC;
    margin: 0;
}

.ec-productCard__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__priceIcon {
    flex-shrink: 0;
    margin-top: 1px;
}

.ec-productCard__priceValue {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #23262F;
}

/* ========================================
   Online Shop — See More Button
   ======================================== */
.ec-shopMore {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.ec-shopMore__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-width: 185px;
    height: 56px;
    background-color: #4C512A;
    color: #FFFEF3;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.ec-shopMore__btn:hover {
    background-color: #3E4422;
    transform: translateY(-1px);
}

/* Empty state */
.ec-shopEmpty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Responsive
   ======================================== */
@media screen and (max-width: 1200px) {
    .ec-shopHero__title {
        font-size: 42px;
    }

    .ec-shopLayout {
        padding: 20px 24px 40px;
    }

    .ec-filterSidebar {
        width: 260px;
        padding: 16px;
    }

    .ec-productGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 991px) {
    .ec-shopHero {
        height: 300px;
    }

    .ec-shopHero__title {
        font-size: 36px;
    }

    .ec-shopLayout {
        flex-direction: column;
        padding: 20px 16px 40px;
    }

    .ec-shopLayout__divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
    }

    .ec-filterSidebar {
        width: 100%;
    }

    .ec-productGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ec-productCard__name {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ec-shopHero {
        height: 220px;
    }

    .ec-shopHero__title {
        font-size: 28px;
    }

    .ec-productGrid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ec-productCard__imageWrap {
        height: 200px;
    }
}


/* ========================================
   Online Shop — Hero Banner
   ======================================== */
.ec-shopHero {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
}

.ec-shopHero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.ec-shopHero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ec-shopHero__title {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 56px;
    font-weight: 400;
    color: #FFFEF3;
    text-align: center;
    letter-spacing: 2px;
}

/* ========================================
   Online Shop — Layout (Sidebar + Main)
   ======================================== */
.ec-shopLayout {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 30px 40px 60px;
    gap: 0;
    background-color: #FFFEF3;
    align-items: flex-start;
}

.ec-shopLayout__sidebarWrap {
    width: 305px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Scrollbar styling for sidebar */
.ec-shopLayout__sidebarWrap::-webkit-scrollbar {
    width: 4px;
}

.ec-shopLayout__sidebarWrap::-webkit-scrollbar-track {
    background: transparent;
}

.ec-shopLayout__sidebarWrap::-webkit-scrollbar-thumb {
    background: #CFD2D9;
    border-radius: 2px;
}

.ec-shopLayout__divider {
    width: 1px;
    background-color: #CFD2D9;
    flex-shrink: 0;
    align-self: stretch;
    margin: 0 24px;
}

.ec-shopLayout__main {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Online Shop — Filter Sidebar
   ======================================== */
.ec-filterSidebar {
    width: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ec-filterSidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ec-filterSidebar__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterSidebar__reset {
    width: 100px;
    height: 30px;
    border: 1px solid #9FA5B3;
    border-radius: 6px;
    background: transparent;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ec-filterSidebar__reset:hover {
    background-color: #3E4A68;
    color: #FFFEF3;
    border-color: #3E4A68;
}

.ec-filterSidebar__divider {
    border: none;
    border-top: 1px solid #CFD2D9;
    margin: 0;
}

/* --- Filter Group --- */
.ec-filterGroup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ec-filterGroup__title {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    color: #3E4A68;
    margin: 0;
}

.ec-filterGroup__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Filter Item (checkbox row) --- */
.ec-filterItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    gap: 8px;
}

.ec-filterItem--disabled {
    opacity: 0.5;
    cursor: default;
}

.ec-filterItem__checkbox {
    display: none;
}

.ec-filterItem__checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #CFD2D9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.ec-filterItem__checkIcon {
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark {
    background-color: #3E4A68;
    border-color: #3E4A68;
}

.ec-filterItem__checkbox:checked+.ec-filterItem__checkmark .ec-filterItem__checkIcon {
    opacity: 1;
}

.ec-filterItem__checkbox:disabled+.ec-filterItem__checkmark {
    background-color: #CFD2D9;
    border-color: #CFD2D9;
}

.ec-filterItem__label {
    flex: 1;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #3E4A68;
}

.ec-filterItem__count {
    width: 24px;
    height: 24px;
    border-radius: 8.25px;
    background-color: #9FA5B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: #FFFEF3;
    flex-shrink: 0;
    line-height: 1;
}

/* --- Price Range Slider --- */
.ec-filterRange {
    position: relative;
    height: 14px;
    margin-top: 4px;
}

.ec-filterRange__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    position: absolute;
    top: 5px;
    z-index: 2;
    margin: 0;
    cursor: pointer;
}

.ec-filterRange__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.ec-filterRange__slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0E1D42;
    border: 3px solid #FFFEF3;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.ec-filterRange__track {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #CFD2D9;
    border-radius: 2px;
    z-index: 0;
}

.ec-filterRange__trackFill {
    height: 100%;
    background: #0E1D42;
    border-radius: 2px;
    width: 50%;
}

.ec-filterRange__labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Breadcrumb
   ======================================== */
.ec-shopBreadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.ec-shopBreadcrumb__item {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6E778E;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-shopBreadcrumb__item:hover {
    color: #3E4A68;
}

.ec-shopBreadcrumb__item--active {
    color: #0E1D42;
    font-weight: 500;
}

.ec-shopBreadcrumb__chevron {
    display: flex;
    align-items: center;
}

/* ========================================
   Online Shop — Product Grid
   ======================================== */
.ec-productGrid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.ec-productGrid__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Product badges (MỚI, Hết hàng) */
.ec-productCard__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #FFFEF3;
    white-space: nowrap;
}

.ec-productCard__badge--new {
    background-color: #4C512A;
}

.ec-productCard__badge--soldout {
    background-color: #D94545;
    top: 12px;
    left: auto;
    right: 12px;
}

/* ========================================
   Online Shop — Product Card
   ======================================== */
.ec-productCard {
    width: 100%;
}

.ec-productCard__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.ec-productCard__link:hover {
    box-shadow: 0 4px 20px rgba(14, 29, 66, 0.1);
    transform: translateY(-2px);
}

/* Image area */
.ec-productCard__imageWrap {
    height: 224px;
    background: #FFFFFF;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    border: 1px solid #E6E8EC;
    border-bottom: none;
}

.ec-productCard__imageInner {
    position: absolute;
    inset: 0;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-productCard__image {
    max-width: 67%;
    max-height: 100%;
    object-fit: contain;
}

/* Info area */
.ec-productCard__info {
    background: #FCFCFD;
    border-radius: 0 0 16px 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #E6E8EC;
    border-top: none;
}

.ec-productCard__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ec-productCard__name {
    font-family: 'Andale Mono', 'Space Mono', monospace;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: #23262F;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ec-productCard__brewery {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #23262F;
    margin: 0;
}

.ec-productCard__specs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__spec {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #B4B9C4;
}

.ec-productCard__specDivider {
    width: 0;
    height: 16px;
    border-left: 1px solid #B4B9C4;
}

.ec-productCard__divider {
    border: none;
    border-top: 1px solid #E6E8EC;
    margin: 0;
}

.ec-productCard__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__priceIcon {
    flex-shrink: 0;
    margin-top: 1px;
}

.ec-productCard__priceValue {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #23262F;
}

/* ========================================
   Online Shop — See More Button
   ======================================== */
.ec-shopMore {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.ec-shopMore__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    min-width: 185px;
    height: 56px;
    background-color: #4C512A;
    color: #FFFEF3;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.ec-shopMore__btn:hover {
    background-color: #3E4422;
    transform: translateY(-1px);
}

/* Empty state */
.ec-shopEmpty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #6E778E;
}

/* ========================================
   Online Shop — Responsive
   ======================================== */
@media screen and (max-width: 1200px) {
    .ec-shopHero__title {
        font-size: 42px;
    }

    .ec-shopLayout {
        padding: 20px 24px 40px;
    }

    .ec-shopLayout__sidebarWrap {
        width: 260px;
    }

    .ec-filterSidebar {
        padding: 16px;
    }

    .ec-productGrid__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media screen and (max-width: 991px) {
    .ec-shopHero {
        height: 300px;
    }

    .ec-shopHero__title {
        font-size: 36px;
    }

    .ec-shopLayout {
        flex-direction: column;
        padding: 20px 16px 40px;
    }

    .ec-shopLayout__divider {
        width: 100%;
        height: 1px;
        margin: 16px 0;
    }

    .ec-shopLayout__sidebarWrap {
        width: 100%;
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .ec-floatingCart {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .ec-productGrid__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ec-productCard__name {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 768px) {
    .ec-shopHero {
        height: 220px;
    }

    .ec-shopHero__title {
        font-size: 28px;
    }

    .ec-productGrid__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ec-productCard__imageWrap {
        height: 200px;
    }
}

/* ========================================
   Cart Drawer (Slide-out Right Panel)
   ======================================== */

/* Overlay */
.ec-cartDrawer__overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 66, 0.35);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ec-cartDrawer__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.ec-cartDrawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 345px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 24px rgba(14, 29, 66, 0.12);
}

.ec-cartDrawer.is-open {
    transform: translateX(0);
}

/* --- Header --- */
.ec-cartDrawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #E6E8EC;
    flex-shrink: 0;
}

.ec-cartDrawer__headerLeft {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ec-cartDrawer__headerIcon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.ec-cartDrawer__headerTitle {
    font-family: 'Roboto Slab', 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    color: #0E1D42;
    letter-spacing: 0.02em;
}

.ec-cartDrawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.15s ease;
}

.ec-cartDrawer__close:hover {
    background: #F0F1F5;
}

/* --- Body --- */
.ec-cartDrawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Empty state */
.ec-cartDrawer__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px 24px;
}

.ec-cartDrawer__emptyContent {
    text-align: center;
}

.ec-cartDrawer__emptyText {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6E778E;
    line-height: 24px;
}

/* --- Item row --- */
.ec-cartDrawer__item {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #E6E8EC;
}

/* Remove button (X) */
.ec-cartDrawer__itemRemove {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.15s ease;
}

.ec-cartDrawer__itemRemove:hover {
    background: #F0F1F5;
}

/* Product image */
.ec-cartDrawer__itemImage {
    width: 64px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    background: #FCFCFD;
    border: 1px solid #E6E8EC;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-cartDrawer__itemImage img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product info */
.ec-cartDrawer__itemInfo {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
}

.ec-cartDrawer__itemName {
    font-family: 'Roboto Slab', 'Georgia', serif;
    font-size: 14px;
    font-weight: 500;
    color: #0E1D42;
    line-height: 20px;
    margin: 0;
}

.ec-cartDrawer__itemPrice {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6E778E;
    line-height: 18px;
    margin: 0;
}

/* Quantity controls */
.ec-cartDrawer__itemQty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.ec-cartDrawer__itemQtyValue {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0E1D42;
    min-width: 20px;
}

.ec-cartDrawer__itemQtyBtns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-cartDrawer__itemQtyBtn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: opacity 0.15s ease;
}

.ec-cartDrawer__itemQtyBtn:hover {
    opacity: 0.7;
}

.ec-cartDrawer__itemQtyBtn svg {
    width: 16px;
    height: 16px;
}

/* --- Footer --- */
.ec-cartDrawer__footer {
    flex-shrink: 0;
    padding: 20px 24px 28px;
    border-top: 1px solid #E6E8EC;
    background: #FFFFFF;
}

/* Subtotal */
.ec-cartDrawer__subtotal {
    text-align: center;
    margin-bottom: 16px;
}

.ec-cartDrawer__subtotalLabel {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6E778E;
    margin: 0 0 2px;
}

.ec-cartDrawer__subtotalValue {
    font-family: 'Roboto Slab', 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    color: #0E1D42;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Action buttons */
.ec-cartDrawer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ec-cartDrawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 8px;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    border: none;
}

.ec-cartDrawer__btn--continue {
    background-color: #4C512A;
    color: #FFFEF3;
}

.ec-cartDrawer__btn--continue:hover {
    background-color: #3E4422;
    transform: translateY(-1px);
}

.ec-cartDrawer__btn--checkout {
    background-color: #4C512A;
    color: #FFFEF3;
}

.ec-cartDrawer__btn--checkout:hover {
    background-color: #3E4422;
    transform: translateY(-1px);
}

/* --- Responsive --- */
@media screen and (max-width: 480px) {
    .ec-cartDrawer {
        width: 100%;
    }
}

/* ========================================
   Product Detail Page Custom Styles
   ======================================== */

.tasu-product-detail {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 64px;
    background-color: #FFFEF3;
    padding: 0px;
    margin-bottom: 80px;
}

.tasu-product-gallery {
    width: 100%;
}

.tasu-product-gallery .item_visual {
    background: #FFFFFF;
    border: 1px solid #E6E8EC;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.tasu-product-gallery .slide-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 460px;
    background: #FFFFFF;
}

.tasu-product-gallery .slide-item img {
    max-width: 67%;
    max-height: 90%;
    object-fit: contain;
}

.tasu-product-gallery .item_nav {
    display: flex;
    gap: 16px;
}

.tasu-product-gallery .slideThumb {
    width: 80px;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #E6E8EC;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}

.tasu-product-gallery .slideThumb:hover,
.tasu-product-gallery .slideThumb.slick-current {
    border-color: #4C512A;
}

.tasu-product-gallery .slideThumb img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Info Column */
.tasu-product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tasu-product-title-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 8px;
}

.tasu-product-title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    color: #1B2040;
    margin: 0;
}

.tasu-product-volume {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    color: #B4B9C4;
}

.tasu-product-price {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 40px;
    font-weight: 700;
    color: #1B2040;
    line-height: 1.2;
    margin: 8px 0 16px;
}

/* Cart status indicator */
.tasu-cart-status {
    margin-bottom: 16px;
}

.tasu-cart-status__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(125, 157, 70, 0.1);
    border: 1px solid rgba(125, 157, 70, 0.3);
    color: #4C512A;
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}

/* Specs */
.tasu-product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.tasu-product-spec-row {
    display: flex;
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 14px;
    line-height: 20px;
}

.tasu-product-spec-label {
    color: #B4B9C4;
    width: 160px;
    flex-shrink: 0;
}

.tasu-product-spec-value {
    color: #23262F;
    font-weight: 500;
}

.tasu-product-divider {
    border: none;
    border-top: 1px solid #E6E8EC;
    margin: 24px 0;
}

.tasu-product-description {
    font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #23262F;
}

/* Actions & Buttons */
.tasu-product-actions {
    margin: 24px 0;
}

.tasu-btn-row {
    display: flex;
    gap: 16px;
}

.tasu-btn-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #84A345;
    color: #FFFEF3;
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    height: 56px;
    padding: 0 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.tasu-btn-add-cart:hover {
    background-color: #749236;
}

.tasu-btn-add-cart:active {
    transform: scale(0.98);
}

.tasu-btn-favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #FFFFFF;
    color: #23262F;
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    height: 56px;
    padding: 0 24px;
    border-radius: 8px;
    border: 1px solid #E6E8EC;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.tasu-btn-favorite:hover {
    background-color: #FCFCFD;
    border-color: #B4B9C4;
}

.tasu-btn-favorite:active {
    transform: scale(0.98);
}

.tasu-select select {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #E6E8EC;
    background-color: #FFFFFF;
    padding: 0 16px;
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 14px;
    color: #23262F;
    outline: none;
    margin-bottom: 16px;
}

/* Similar Products section */
.tasu-similar-products {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #E6E8EC;
}

.tasu-similar-products__title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #4C512A;
    margin-bottom: 40px;
}

/* Detail page responsiveness */
@media screen and (max-width: 991px) {
    .tasu-product-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .tasu-product-gallery .slide-item {
        height: 350px;
    }
}

/* ========================================
   TASU+ Shop Page Product Grid & Cards (Recovered)
   ======================================== */
.ec-productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.ec-productCard {
    background-color: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 4px;
}

.ec-productCard:hover {
    transform: translateY(-2px);
}

.ec-productCard__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ec-productCard__imageWrap {
    position: relative;
    /* 1:1 Aspect Ratio */
    background-color: transparent;
    overflow: hidden;
    margin-bottom: 15px;
}

.ec-productCard__imageInner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-productCard__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ec-productCard__info {
    padding: 0;
}

.ec-productCard__meta {
    margin-bottom: 12px;
}

.ec-productCard__name {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #1B2040;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.ec-productCard__brewery {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 12px;
    color: #8C8C8C;
    margin: 0 0 8px 0;
}

.ec-productCard__specs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #4C512A;
}

.ec-productCard__specDivider {
    width: 1px;
    height: 10px;
    background-color: #4C512A;
}

.ec-productCard__divider {
    border: none;
    border-top: 1px solid #EAEAEA;
    margin: 0 0 12px 0;
}

.ec-productCard__price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ec-productCard__priceText {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #1B2040;
}

/* Shop Layout Adjustments */
.ec-shopLayout {
    display: flex;
    gap: 40px;
    padding: 40px 64px;
    max-width: 1440px;
    margin: 0 auto;
}

.ec-shopLayout__divider {
    width: 1px;
    background-color: #EAEAEA;
    flex-shrink: 0;
}

.ec-shopLayout__main {
    flex-grow: 1;
}

.ec-shopEmpty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-family: 'Space Mono', monospace;
    color: #8C8C8C;
}

.ec-shopMore {
    text-align: center;
    margin-top: 40px;
}

.ec-shopMore__btn {
    background-color: #4C512A;
    color: #FFF;
    border: none;
    padding: 12px 32px;
    font-family: 'Space Mono', monospace;
    cursor: pointer;
    border-radius: 4px;
}

/* ========================================
   Age Verification Popup (18+ Compliance)
   ======================================== */
.ec-ageVerify {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.ec-ageVerify.is-hidden {
    opacity: 0;
    pointer-events: none;
}

/* --- Backdrop (blurred dark overlay) --- */
.ec-ageVerify__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 29, 66, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- Modal Card --- */
.ec-ageVerify__modal {
    position: relative;
    background: #FFFEF3;
    border-radius: 20px;
    padding: 48px 56px 40px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(76, 81, 42, 0.1);
    animation: ageVerifySlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    overflow: hidden;
}

@keyframes ageVerifySlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --- Top Accent Bar --- */
.ec-ageVerify__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #85A443 0%, #a2c453 40%, #badf66 70%, #85A443 100%);
    background-size: 200% 100%;
    animation: ageAccentShimmer 3s ease-in-out infinite;
}

@keyframes ageAccentShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* --- Logo --- */
.ec-ageVerify__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

.ec-ageVerify__logo-title {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    color: #1B2040;
    letter-spacing: 2px;
    line-height: 1.1;
}

.ec-ageVerify__logo-title .logo-plus {
    color: #85A443;
    font-size: 24px;
    vertical-align: super;
    margin-left: 2px;
}

.ec-ageVerify__logo-subtitle {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 10px;
    color: #85A443;
    letter-spacing: 2px;
    margin-top: 2px;
}

/* --- Age Badge --- */
.ec-ageVerify__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(145deg, #85A443, #6a8534);
    box-shadow:
        0 8px 24px rgba(133, 164, 67, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    margin: 0 auto 24px;
    position: relative;
    animation: ageBadgePulse 2.5s ease-in-out infinite;
}

@keyframes ageBadgePulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(133, 164, 67, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
    50% { box-shadow: 0 8px 32px rgba(133, 164, 67, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 6px rgba(133, 164, 67, 0.1); }
}

.ec-ageVerify__badge-number {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 40px;
    font-weight: 700;
    color: #FFFEF3;
    line-height: 1;
    position: relative;
}

.ec-ageVerify__badge-plus {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    color: #FFFEF3;
    position: absolute;
    top: -2px;
    right: -18px;
}

/* --- Heading --- */
.ec-ageVerify__heading {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    color: #0E1D42;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.ec-ageVerify__subheading {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 28px;
}

/* --- Question --- */
.ec-ageVerify__question {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #85A443;
    margin: 0 0 24px;
}

/* --- Buttons --- */
.ec-ageVerify__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ec-ageVerify__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ec-ageVerify__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.ec-ageVerify__btn:hover::before {
    left: 100%;
}

/* Confirm button (Yes) */
.ec-ageVerify__btn--confirm {
    background: linear-gradient(145deg, #85A443, #718f35);
    color: #FFFEF3;
    box-shadow: 0 4px 16px rgba(133, 164, 67, 0.3);
}

.ec-ageVerify__btn--confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(133, 164, 67, 0.4);
    background: linear-gradient(145deg, #718f35, #85A443);
}

.ec-ageVerify__btn--confirm:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(133, 164, 67, 0.3);
}

.ec-ageVerify__btn-icon {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

/* Deny button (No) */
.ec-ageVerify__btn--deny {
    background: transparent;
    color: #888;
    border: 2px solid #ddd;
    padding: 14px 32px;
}

.ec-ageVerify__btn--deny:hover {
    border-color: #c44;
    color: #c44;
    background: rgba(204, 68, 68, 0.05);
}

/* --- Disclaimer --- */
.ec-ageVerify__disclaimer {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: #999;
    margin: 0;
}

.ec-ageVerify__disclaimer a {
    color: #85A443;
    text-decoration: underline;
    text-decoration-color: rgba(133, 164, 67, 0.3);
    transition: text-decoration-color 0.2s ease;
}

.ec-ageVerify__disclaimer a:hover {
    text-decoration-color: #85A443;
}

/* --- Body scroll lock when popup is visible --- */
body.age-verify-active {
    overflow: hidden;
}

/* --- Denied state message --- */
.ec-ageVerify__denied {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.ec-ageVerify__denied.is-visible {
    display: block;
}

.ec-ageVerify__denied-icon {
    font-size: 48px;
    color: #c44;
    margin-bottom: 16px;
}

.ec-ageVerify__denied-text {
    font-family: 'Space Mono', 'Andale Mono', monospace;
    font-size: 16px;
    color: #c44;
    font-weight: 700;
    margin: 0 0 8px;
}

.ec-ageVerify__denied-sub {
    font-family: 'Avenir', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* --- Responsive --- */
@media screen and (max-width: 600px) {
    .ec-ageVerify__modal {
        padding: 36px 28px 32px;
        border-radius: 16px;
        width: 94%;
    }

    .ec-ageVerify__logo-title {
        font-size: 26px;
    }

    .ec-ageVerify__badge {
        width: 80px;
        height: 80px;
    }

    .ec-ageVerify__badge-number {
        font-size: 32px;
    }

    .ec-ageVerify__badge-plus {
        font-size: 20px;
    }

    .ec-ageVerify__heading {
        font-size: 22px;
    }

    .ec-ageVerify__subheading {
        font-size: 13px;
    }

    .ec-ageVerify__btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}