/*
Theme Name:   Peluqueria Angela Ramírez
Theme URI:    https://angelaramirez.es
Description:  Child theme para Angela Ramírez Estilistas
Author:       Javier
Template:     astra
Version:      1.0.0
Text Domain:  peluqueria-child
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    --primary: #d11f7e;
    --primary-90: rgba(209, 31, 126, 0.9);
    --primary-40: rgba(209, 31, 126, 0.4);
    --primary-20: rgba(209, 31, 126, 0.2);
    --primary-10: rgba(209, 31, 126, 0.1);
    --primary-5: rgba(209, 31, 126, 0.05);
    --bg-light: #f8f6f7;
    --bg-dark: #21111a;
    --font-display: 'Manrope', sans-serif;
    --whatsapp: #25D366;
}

/* =============================================
   BASE
   ============================================= */
html.dark,
body.dark-mode {
    background-color: var(--bg-dark);
    color: #f1f5f9;
}

body,
.ar-page {
    font-family: var(--font-display);
    background-color: var(--bg-dark);
    color: #f1f5f9;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

/* =============================================
   RESET ASTRA CONFLICTS on landing page
   ============================================= */
.ar-page .ast-container,
.ar-page #page,
.ar-page #content,
.ar-page .ast-content-layout-wrap {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ar-page .site-header,
.ar-page #masthead {
    display: none !important;
}

.ar-page .site-footer,
.ar-page #colophon {
    display: none !important;
}

.ar-page #primary,
.ar-page .content-area,
.ar-page .ast-article-post {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* =============================================
   GLASS EFFECT
   ============================================= */
.ar-glass {
    background: rgba(33, 17, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* =============================================
   NAVIGATION
   ============================================= */
.ar-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(33, 17, 26, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ar-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.ar-logo-icon {
    color: var(--primary);
    width: 32px;
    height: 32px;
}

.ar-logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #fff;
}

.ar-logo-text span {
    color: var(--primary);
}

.ar-desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .ar-desktop-nav {
        display: flex;
    }
}

.ar-desktop-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.2s;
}

.ar-desktop-nav a:hover,
.ar-desktop-nav a.active {
    color: var(--primary);
}

.ar-desktop-nav a.active {
    position: relative;
}

.ar-desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 9999px;
}

/* Mobile nav toggle */
.ar-mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #f1f5f9;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .ar-mobile-menu-btn {
        display: none;
    }
}

.ar-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(33, 17, 26, 0.95);
}

.ar-mobile-nav.open {
    display: flex;
}

.ar-mobile-nav a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s, background 0.2s;
}

.ar-mobile-nav a:hover {
    color: var(--primary);
    background: var(--primary-5);
}

/* =============================================
   BUTTON
   ============================================= */
.ar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.ar-btn:hover {
    background-color: var(--primary-90);
    color: #fff;
    transform: scale(1.03);
}

.ar-btn-pill {
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.ar-btn-lg {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
}

.ar-btn-outline {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.ar-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: none;
}

/* =============================================
   HERO
   ============================================= */
.ar-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ar-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ar-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(33,17,26,0.6) 50%, transparent 100%);
    z-index: 1;
}

.ar-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-hero-content {
    position: relative;
    z-index: 20;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.ar-hero-inner {
    max-width: 640px;
}

.ar-eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.ar-hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: var(--font-display);
}

.ar-hero h1 em {
    color: var(--primary);
    font-style: italic;
}

@media (min-width: 768px) {
    .ar-hero h1 {
        font-size: 4.5rem;
    }
}

.ar-hero p {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.ar-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .ar-hero-btns {
        flex-direction: row;
    }
}

/* =============================================
   SECTION COMMON
   ============================================= */
.ar-section {
    padding: 6rem 0;
}

.ar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ar-section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .ar-section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.ar-section-header-left {
    max-width: 32rem;
}

.ar-section-header h2 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    color: #f1f5f9;
}

.ar-section-header h2 span {
    color: var(--primary);
}

.ar-section-header p {
    color: #94a3b8;
}

.ar-section-divider {
    flex-grow: 1;
    height: 1px;
    background: var(--primary-20);
    margin: 0 2.5rem;
    display: none;
}

@media (min-width: 768px) {
    .ar-section-divider {
        display: block;
        margin-bottom: 1rem;
    }
}

.ar-text-center {
    text-align: center;
}

/* =============================================
   SERVICES
   ============================================= */
.ar-services {
    background-color: var(--bg-dark);
}

.ar-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ar-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ar-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ar-service-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--primary-5);
    border: 1px solid var(--primary-10);
    transition: border-color 0.3s, transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.ar-service-card:hover {
    border-color: rgba(209, 31, 126, 0.4);
    transform: translateY(-8px);
    color: inherit;
}

.ar-service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-10);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: background 0.3s, color 0.3s;
    font-size: 1.875rem;
}

.ar-service-card:hover .ar-service-icon {
    background: var(--primary);
    color: #fff;
}

.ar-service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.ar-service-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ar-service-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
    text-decoration: none;
}

.ar-service-card:hover .ar-service-link {
    gap: 0.75rem;
}

/* =============================================
   ABOUT
   ============================================= */
.ar-about {
    background: var(--primary-5);
}

.ar-about-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .ar-about-grid {
        flex-direction: row;
        align-items: center;
    }
}

.ar-about-image-wrap {
    width: 100%;
    position: relative;
}

@media (min-width: 1024px) {
    .ar-about-image-wrap {
        width: 50%;
    }
}

.ar-about-blob-1 {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--primary-20);
    border-radius: 9999px;
    filter: blur(40px);
}

.ar-about-blob-2 {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: var(--primary-20);
    border-radius: 9999px;
    filter: blur(40px);
}

.ar-about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    aspect-ratio: 4/5;
}

.ar-about-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-about-badge {
    position: absolute;
    bottom: 2.5rem;
    right: -2.5rem;
    display: none;
    background: var(--bg-dark);
    border: 1px solid rgba(209, 31, 126, 0.3);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    max-width: 240px;
}

@media (min-width: 1280px) {
    .ar-about-badge {
        display: block;
    }
}

.ar-about-badge-number {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.ar-about-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
}

.ar-about-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .ar-about-content {
        width: 50%;
    }
}

.ar-about-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #f1f5f9;
    font-family: var(--font-display);
}

.ar-about-content p {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.ar-about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .ar-about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ar-feature {
    display: flex;
    gap: 1rem;
}

.ar-feature-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.ar-feature h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #f1f5f9;
}

.ar-feature p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

/* =============================================
   GALLERY
   ============================================= */
.ar-gallery {
    background-color: var(--bg-dark);
}

.ar-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .ar-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ar-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 1rem;
    position: relative;
    cursor: pointer;
}

.ar-gallery-item.ar-tall {
    /* handled via grid-row-span in JS or inline */
}

@media (min-width: 768px) {
    .ar-gallery-item.ar-tall {
        grid-row: span 2;
    }
}

.ar-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ar-gallery-item:hover img {
    transform: scale(1.1);
}

.ar-gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-40);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-gallery-item:hover .ar-gallery-overlay {
    opacity: 1;
}

.ar-gallery-overlay p {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem;
}

/* =============================================
   WHY CHOOSE US (mobile section)
   ============================================= */
.ar-why {
    background: var(--primary-5);
    border-top: 1px solid rgba(33,17,26,0.5);
}

.ar-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ar-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ar-why-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--primary-10);
    background: var(--bg-dark);
    transition: transform 0.3s;
}

.ar-why-card:hover {
    transform: translateY(-4px);
}

.ar-why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: var(--primary-10);
    color: var(--primary);
    font-size: 1.5rem;
}

.ar-why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
}

.ar-why-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* =============================================
   FOOTER
   ============================================= */
.ar-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.ar-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .ar-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ar-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.ar-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.ar-footer-brand-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: #fff;
}

.ar-footer-brand-text span {
    color: var(--primary);
}

.ar-footer-desc {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.ar-social-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ar-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}

.ar-social-links a:hover {
    background: var(--primary);
}

.ar-footer-col h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.ar-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ar-footer-list li {
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ar-footer-list li span.time {
    color: #fff;
}

.ar-footer-list li span.closed {
    color: var(--primary);
    font-weight: 700;
}

.ar-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.ar-footer-contact-item .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

.ar-footer-map {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 8rem;
    background: #1e293b;
    margin-top: 1rem;
}

.ar-footer-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.ar-footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .ar-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.ar-footer-bottom p,
.ar-footer-bottom a {
    font-size: 0.75rem;
    color: #64748b;
}

.ar-footer-bottom-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ar-footer-bottom-links a:hover {
    color: #fff;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.ar-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 50;
    text-decoration: none;
    display: block;
}

.ar-whatsapp-glow {
    position: absolute;
    inset: 0;
    background: var(--whatsapp);
    border-radius: 9999px;
    filter: blur(12px);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.ar-whatsapp:hover .ar-whatsapp-glow {
    opacity: 0.7;
}

.ar-whatsapp-btn {
    position: relative;
    background: var(--whatsapp);
    color: #fff;
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.ar-whatsapp:hover .ar-whatsapp-btn {
    transform: scale(1.1);
}

/* =============================================
   WOOCOMMERCE SHOP OVERRIDES
   ============================================= */
.woocommerce-page .ar-shop-header {
    background: var(--bg-dark);
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--primary-10);
}

.woocommerce-page .ar-shop-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f1f5f9;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.woocommerce-page .ar-shop-header h1 span {
    color: var(--primary);
}

.woocommerce-page .ar-shop-header p {
    color: #94a3b8;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 1.5rem !important;
}

@media (min-width: 640px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.woocommerce ul.products li.product {
    border-radius: 1rem;
    overflow: hidden;
    background: var(--primary-5);
    border: 1px solid var(--primary-10);
    transition: border-color 0.3s, transform 0.3s;
    text-align: left;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.woocommerce ul.products li.product:hover {
    border-color: rgba(209, 31, 126, 0.4);
    transform: translateY(-6px);
}

.woocommerce ul.products li.product img {
    width: 100% !important;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display) !important;
    font-weight: 700;
    font-size: 1.1rem !important;
    color: #f1f5f9 !important;
    padding: 1.25rem 1.25rem 0.5rem !important;
}

.woocommerce ul.products li.product .price {
    padding: 0 1.25rem !important;
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 1.1rem !important;
    font-family: var(--font-display) !important;
}

.woocommerce ul.products li.product .button {
    display: block;
    margin: 1rem 1.25rem 1.25rem !important;
    background: var(--primary) !important;
    color: #fff !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    text-align: center;
    transition: background 0.2s !important;
    border: none !important;
    box-shadow: none !important;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--primary-90) !important;
}

/* WooCommerce single product */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
}

.woocommerce div.product .cart .single_add_to_cart_button {
    background: var(--primary) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    border-radius: 0.75rem !important;
    padding: 1rem 2rem !important;
    transition: background 0.2s !important;
}

.woocommerce div.product .cart .single_add_to_cart_button:hover {
    background: var(--primary-90) !important;
}

/* =============================================
   MATERIAL ICONS HELPER
   ============================================= */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
}
