/* ============================================
   LMNM My Account Dashboard Tiles
   ============================================ */

.lmnm-myaccount-dashboard {
    padding: 0;
}

.lmnm-myaccount-welcome {
    margin-bottom: 24px;
}

.lmnm-myaccount-welcome p {
    font-family: "DM Sans", sans-serif;
    font-size: 1.4em;
    color: var(--e-global-color-text, #5A5A5A);
    margin: 0;
}

.lmnm-myaccount-welcome strong {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    color: var(--e-global-color-secondary, #1C1C1C);
}

/* Tile grid */
.lmnm-myaccount-tiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

@media screen and (max-width: 640px) {
    .lmnm-myaccount-tiles {
        grid-template-columns: 1fr;
    }
}

/* Individual tile */
.lmnm-account-tile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.lmnm-account-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--e-global-color-accent-gold, #C8B29A);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease;
}

.lmnm-account-tile:hover {
    border-color: var(--e-global-color-accent-gold, #C8B29A);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.lmnm-account-tile:hover::before {
    transform: scaleY(1);
}

/* Icon */
.lmnm-account-tile__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--e-global-color-secondary, #1C1C1C);
    border-radius: 8px;
    transition: background 0.25s ease;
}

.lmnm-account-tile__icon i {
    font-size: 1.4em;
    color: var(--e-global-color-accent-gold, #C8B29A);
    transition: color 0.25s ease;
}

.lmnm-account-tile:hover .lmnm-account-tile__icon {
    background: var(--e-global-color-accent-gold, #C8B29A);
}

.lmnm-account-tile:hover .lmnm-account-tile__icon i {
    color: #ffffff;
}

/* Text body */
.lmnm-account-tile__body {
    flex: 1;
    min-width: 0;
}

.lmnm-account-tile__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: var(--e-global-color-secondary, #1C1C1C);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.lmnm-account-tile__desc {
    font-family: "DM Sans", sans-serif;
    font-size: 1em;
    color: var(--e-global-color-text, #5A5A5A);
    margin: 0;
    line-height: 1.4;
    transition: color 0.25s ease;
}

/* Arrow */
.lmnm-account-tile__arrow {
    flex-shrink: 0;
    color: #c9c9c9;
    font-size: 0.9em;
    transition: color 0.25s ease, transform 0.25s ease;
}

.lmnm-account-tile:hover .lmnm-account-tile__arrow {
    color: var(--e-global-color-accent-gold, #C8B29A);
    transform: translateX(4px);
}

/* Mobile tweaks */
@media screen and (max-width: 480px) {
    .lmnm-account-tile {
        padding: 18px 14px;
        gap: 12px;
    }

    .lmnm-account-tile__icon {
        width: 44px;
        height: 44px;
    }

    .lmnm-account-tile__icon i {
        font-size: 1.2em;
    }
}
