/* ============================================================
   Components: Navbar, Footer, Buttons, Inputs
   ============================================================ */

/* --- Navbar --- */
.badge-digital {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    background: #EF4444;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    width: fit-content;
}

.navbar {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 0 80px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-gray-soft);
    flex-shrink: 0;
}

.navbar__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    width: 100%;
}

.navbar__mobile-search {
    display: none;
    width: 100%;
    padding: 0 0 12px 0;
}

.navbar__mobile-search .navbar__search-form {
    width: 100%;
    background: var(--color-gray-bg);
}

/* --- Promo Bar --- */
.promo-bar {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 10px 80px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-bottom: none;
}

.promo-bar b {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 1px 8px;
    border-radius: 4px;
    margin: 0 4px;
    font-weight: 800;
    border: 1px dashed #FFFFFF;
    letter-spacing: 0.8px;
}

@media (max-width: 768px) {
    .promo-bar {
        padding: 8px 16px;
        font-size: 11px;
    }

    .promo-bar b {
        padding: 1px 4px;
        font-size: 10px;
    }
}

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

.navbar__logo-icon {
    font-size: 28px;
    color: var(--primary-color);
}

.navbar__logo-text {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.navbar__brand-wrap {
    display: flex;
    flex-direction: column;
}

.navbar__subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-gray);
    transition: color 0.2s;
}

.navbar__link:hover {
    color: var(--color-foreground);
}

.navbar__link--active {
    color: var(--color-foreground);
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar__lang-switch {
    margin-right: 4px;
}

.lang-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-dark);
    cursor: pointer;
    outline: none;
    background-color: transparent;
    transition: all 0.2s;
}

.lang-select:hover {
    border-color: var(--color-gray-light);
    background-color: var(--color-gray-bg);
}

.navbar__icon {
    width: 40px;
    height: 40px;
    color: var(--color-gray-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    transition: background 0.2s, color 0.2s;
}

.navbar__icon svg,
svg.navbar__icon {
    width: 20px;
    height: 20px;
}

.navbar__icon:hover {
    color: var(--color-foreground);
}

.navbar__search {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar__search {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.navbar__search--mobile {
    display: none;
    width: 100%;
    margin-bottom: 8px;
}

.navbar__search-form {
    display: flex;
    align-items: center;
    background: var(--color-gray-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0 16px;
    width: 220px;
    height: 40px;
}

.navbar__search-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
    color: var(--color-foreground);
}

.navbar__cart-wrap {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.navbar__cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    background: var(--primary-color);
    color: var(--color-surface);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar__user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--color-gray-bg);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-foreground);
    border: none;
    cursor: pointer;
}

.navbar__user-btn i {
    font-size: 18px;
}

.navbar__lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    background: var(--color-gray-bg);
    border: none;
    cursor: pointer;
    color: var(--color-gray-dark);
    transition: background 0.2s;
}

.navbar__lang-btn:hover {
    background: var(--color-gray-lighter);
}

.navbar__lang-btn i {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.navbar__flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    display: block;
}

/* --- Account Dropdown --- */
.navbar__account {
    position: relative;
}

.navbar__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--color-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    z-index: 100;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.15s, transform 0.15s;
    pointer-events: none;
}

.navbar__menu-item--open .navbar__dropdown,
.navbar__account--open .navbar__dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1001;
    /* Ensure it stays above everything */
}

/* Account dropdown is now click-based across all devices */

/* Bridge the gap so mouse doesn't leave hover area */
.navbar__dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

/* New: Navbar Item Wrapper for Dropdown */
.navbar__menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Navbar menu items (Categories, etc) in desktop are still hover, unless specified otherwise */

.navbar__dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
    font-family: 'DM Sans', sans-serif;
}

.navbar__dropdown-item:hover {
    background: var(--color-gray-soft);
}

.navbar__dropdown-item i {
    font-size: 16px;
    color: var(--color-gray);
}

.navbar__dropdown-item--danger {
    color: var(--color-danger);
}

.navbar__dropdown-item--danger i {
    color: var(--color-danger);
}

.navbar__dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 4px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
    padding: 0 24px;
    height: 44px;
}

.btn--sm {
    padding: 0 16px;
    font-size: 13px;
    gap: 6px;
    border-radius: 20px;
    height: 38px;
}

.btn--lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn--block {
    width: 100%;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--color-surface);
}

.btn--primary:hover {
    background: var(--primary-hover);
}

.btn--outline {
    border: 2px solid var(--color-foreground);
    color: var(--color-foreground);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-gray-bg);
}

.btn--outline-light {
    border: 1px solid var(--border-color);
    color: var(--color-gray);
    background: transparent;
}

.btn--outline-light:hover {
    background: var(--color-gray-bg);
    color: var(--color-foreground);
}

.btn--dark {
    background: var(--color-foreground);
    color: var(--color-surface);
    padding: 0 16px;
    height: 44px;
    border-radius: 12px;
}

.btn--paypal {
    background: #0070BA;
    color: var(--color-surface);
}

.btn--paypal:hover {
    background: #005a9e;
}

.btn i {
    font-size: 14px;
}

.btn--lg i {
    font-size: 18px;
}

/* --- Inputs --- */
.input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--color-surface);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}

.input::placeholder {
    color: var(--color-gray-light);
}

/* --- Footer --- */
.footer {
    background: var(--color-foreground);
    color: var(--color-surface);
    padding: 64px 80px 32px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bricolage Grotesque', serif;
    font-size: 24px;
    font-weight: 700;
}

.footer__brand-logo i {
    color: var(--primary-color);
}

.footer__brand-desc {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.5;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__col h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-surface);
}

.footer__col a {
    font-size: 14px;
    color: var(--color-gray-light);
    transition: color 0.2s;
}

.footer__col a:hover {
    color: var(--color-surface);
}

.footer__bottom {
    border-top: 1px solid var(--color-gray-dark);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--color-gray);
}


/* End of footer styles */

/* --- Toast Notification --- */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--color-surface);
    color: var(--color-foreground);
    padding: 14px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    font-size: 14px;
    font-weight: 500;
    animation: toast-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    font-family: 'DM Sans', sans-serif;
}

.toast--success {
    border-left: 4px solid var(--color-success);
}

.toast--error {
    border-left: 4px solid var(--color-danger);
}

.toast--info {
    border-left: 4px solid var(--color-info);
}

.toast i {
    font-size: 20px;
}

.toast--success i {
    color: var(--color-success);
}

.toast--error i {
    color: var(--color-danger);
}

.toast--info i {
    color: var(--color-info);
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* --- Skeleton Loader --- */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton,
.skeleton-text,
.skeleton-title,
.skeleton-price,
.skeleton-img {
    background: var(--color-gray-soft);
    background-image: linear-gradient(90deg,
            var(--color-gray-soft) 0px,
            var(--color-gray-bg) 40px,
            var(--color-gray-soft) 80px);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
}

.product-card--skeleton {
    cursor: default;
    pointer-events: none;
}

.product-card--skeleton .product-card__image {
    background: var(--color-gray-soft);
    /* Fallback */
}

.product-card--skeleton .skeleton-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.product-card--skeleton .skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    width: 80%;
}

.product-card--skeleton .skeleton-title {
    height: 20px;
    margin-bottom: 12px;
    width: 90%;
}

.product-card--skeleton .skeleton-price {
    height: 24px;
    width: 40%;
}

.product-card--skeleton .product-card__heart {
    display: none;
}

/* --- Breadcrumbs --- */
#breadcrumbs-placeholder {
    min-height: 54px;
    /* Matches .breadcrumbs height to prevent CLS */
    display: flex;
    align-items: center;
}

.breadcrumbs {
    padding: 12px 80px;
    font-size: 14px;
    color: var(--color-gray);
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    background: transparent;
}

.breadcrumbs__sep {
    color: var(--color-gray-lighter);
    font-size: 14px;
}

.breadcrumbs__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs__link:hover {
    color: var(--color-foreground);
}

.breadcrumbs__current {
    color: var(--color-foreground);
    font-weight: 500;
}

.breadcrumbs::-webkit-scrollbar {
    display: none;
}

/* ============================================================
   Media Queries: Responsive Design
   ============================================================ */

/* Mobile & Tablet (up to 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 40px;
    }

    .footer {
        padding: 64px 40px 32px;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 4px 12px 8px;
        height: auto;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar__main {
        height: 48px;
    }

    .navbar__logo-text {
        font-size: 20px;
    }

    .navbar__subtitle {
        display: none;
    }

    .navbar__links {
        display: none;
        /* Hide desktop links */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 120px);
        background: var(--color-surface);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 16px;
        z-index: 1000;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
        overflow-y: auto;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }

    .navbar--mobile-open .navbar__links {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .navbar__link {
        font-size: 16px;
        /* Slightly smaller font for mobile */
        width: 100%;
        padding: 8px 0;
        /* Add vertical padding for easier tapping */
    }

    /* Only apply accordion behavior to links inside the hamburger menu */
    .navbar__links .navbar__menu-item {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar__links .navbar__dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 16px;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
        background: var(--color-gray-bg);
        border-radius: 8px;
        margin-top: 8px;
    }

    .navbar__links .navbar__menu-item--open .navbar__dropdown {
        display: block;
    }

    /* Keep top-bar dropdowns (Language/Account) as popups on mobile */
    .navbar__right .navbar__dropdown {
        top: calc(100% + 8px);
        opacity: 0;
        transform: translateY(-4px);
        pointer-events: none;
        display: none;
        /* Controlled by JS or CSS open class */
    }

    /* Fixed visibility for top-bar dropdowns when toggled */
    #lang-menu.navbar__menu-item--open .navbar__dropdown,
    .navbar__account--open .navbar__dropdown {
        display: block;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        z-index: 2000;
    }

    /* Rotate icon when open */
    .navbar__menu-item--open .navbar__link i[data-lucide="chevron-down"] {
        transform: rotate(180deg);
    }

    .navbar__link i[data-lucide="chevron-down"] {
        transition: transform 0.2s ease;
    }

    .navbar__search {
        display: none;
        /* Hide regular search bar from navbar on mobile */
    }

    .navbar__mobile-search {
        display: flex;
        width: 100%;
        margin-top: 2px;
    }

    .navbar__mobile-search .navbar__search-form {
        width: 100%;
        background: var(--color-gray-bg);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        height: 38px;
    }

    .navbar__right {
        gap: 8px;
        /* Compact gaps on mobile */
    }

    .navbar__user-btn span {
        display: none;
    }

    .navbar__user-btn {
        padding: 8px 10px;
        gap: 0;
    }

    .navbar__toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--color-foreground);
        cursor: pointer;
    }

    .promo-bar__code {
        display: none;
    }

    .promo-bar {
        font-size: 12px;
        padding: 8px 20px;
    }

    .breadcrumbs {
        padding: 12px 20px;
        font-size: 12px;
        /* Smaller font on mobile */
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .footer {
        padding: 48px 20px 24px;
    }

    .footer__top {
        flex-direction: column;
    }
}

/* Base styles for the hidden toggle */
.navbar__toggle {
    display: none;
}

/* --- Product Grid & Card --- */
.product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    width: 100%;
    min-height: 400px;
    /* Prevent CLS */
}

.product-card {
    width: 100%;
    /* max-width kept to avoid super wide cards on large screens if desired, 
       but usually let grid handle it. Let's remove fixed width. */
    border-radius: 16px;
    border: 1px solid var(--color-gray-soft);
    background: var(--color-surface);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid var(--border-color);
}

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 0;
    padding: 8px 18px;
    border-radius: 0 8px 8px 0;
    background: var(--primary-color);
    color: var(--color-surface);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 2px 4px 8px -1px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-left: none;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.product-card__badge--green {
    background: var(--color-success);
}

.product-card__heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.product-card__heart:hover {
    background: var(--color-surface);
    transform: scale(1.1);
}

.product-card__heart--active {
    background: var(--color-surface);
}

.product-card__heart--active i,
.product-card__heart--active svg {
    fill: var(--primary-color);
    color: var(--primary-color);
}

.product-card__heart i,
.product-card__heart svg {
    font-size: 16px;
    color: var(--color-danger);
}

.product-card__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card__category {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

.product-card__title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 16px;
    font-weight: 700;
}

.product-card__tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tag {
    padding: 3px 8px;
    border-radius: 8px;
    background: var(--color-gray-bg);
    font-size: 11px;
    font-weight: 500;
    color: var(--color-gray);
}

.product-card__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card__price {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-foreground);
}

.product-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-card__old-price {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--color-danger);
}

.product-card__btns {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: auto;
    width: 100%;
}

.product-card__btns .btn--outline {
    padding: 6px 10px;
}

.product-card__btns .btn--outline i {
    width: 14px;
    height: 14px;
}

/* --- Purchased Product State --- */
.product-card__badge--purchased {
    background: var(--color-foreground);
    color: var(--color-surface);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn--purchased {
    background: var(--color-success);
    color: var(--color-surface);
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    font-weight: 700;
}

.btn--purchased:hover {
    background: var(--color-success-hover);
    color: var(--color-surface);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile */
        gap: 12px;
        /* Smaller gap for mobile */
    }

    /* Adjust product card for mobile readability */
    .product-card__title {
        font-size: 14px;
        /* Slightly smaller title for 2-column layout */
    }

    .product-card__info {
        padding: 12px;
        gap: 6px;
    }

    .product-card__price {
        font-size: 16px;
    }

    .product-card__btns {
        display: none;
    }

    .category-title {
        font-size: 28px;
    }

    /* Compact badges for mobile */
    .product-card__badge {
        padding: 4px 10px;
        font-size: 11px;
        top: 12px;
    }

    .btn--purchased {
        padding: 0 10px;
        font-size: 11px;
        height: 34px;
    }
}
