.vitrineh-widget-wrapper {
    --vitrineh-ease: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --vitrineh-btc: transparent;
    font-family: inherit !important;
    direction: rtl;
}
.vitrineh-bottom-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
    gap: 31px;
    padding: 0 15px;
    justify-content: center;
}
.vitrineh-right-widget {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: #000;
}
.vitrineh-widget-title {
    background: #eae9f3;
    border-radius: 0 20px 20px 0;
    padding: 7px 15px 7px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: -25px;
    white-space: nowrap;
    font-weight: 600;
    font-size: 12px;
    z-index: 1;
}
.vitrineh-play-icon {
    background-color: var(--vitrineh-main-dark);
    color: white;
    border-radius: 0 50% 50% 0;
    width: 26px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
}
.vitrineh-play-icon svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    margin-right: -2px;
    display: block;
}
.vitrineh-avatar-wrapper {
    position: relative;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    z-index: 2;
}
.vitrineh-avatar-blob {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--vitrineh-main-dark), var(--vitrineh-main-blue), var(--vitrineh-main-cta));
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(6px);
}
.vitrineh-right-widget:hover .vitrineh-avatar-blob {
    opacity: 1;
}
.vitrineh-avatar-video {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: var(--vitrineh-avatar-border-width, 2px) solid var(--vitrineh-avatar-border-color, var(--vitrineh-main-dark)) !important;
    background: transparent;
}
.vitrineh-left-actions {
    display: flex;
    align-items: center;
    background-color: var(--vitrineh-main-dark);
    border-radius: 30px;
    padding: 11px;
    gap: 8px;
}
.vitrineh-btn, .vitrineh-phone-btn {
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.8;
    font-family: inherit;
    transition: var(--vitrineh-ease);
    white-space: nowrap;
    cursor: pointer;
    border-radius: 2.8rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--vitrineh-btc);
    font-size: 13px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}
.vitrineh-btn {
    padding: 10px 15px;
    background-color: var(--vitrineh-main-blue) !important;
}
.vitrineh-phone-btn {
    direction: ltr;
    padding: 10px 15px 10px 10px;
    background-color: #0b028f;
}
.vitrineh-btn svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.vitrineh-phone-btn svg { width: 20px; height: 20px; fill: currentColor; display: block; }
.vitrineh-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 2, 21, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.vitrineh-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.vitrineh-modal-close {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    border: none;
    color: black;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.vitrineh-modal-close svg { width: 28px; height: 28px; display: block; }
.vitrineh-modal-close:hover {
    background: #eee;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
	color: black !important;
}
.vitrineh-modal-container {
    width: 90%;
    max-width: 450px;
    background: white;
    border-radius: 24px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.vitrineh-modal-overlay.active .vitrineh-modal-container {
    transform: translateY(0);
}
.vitrineh-modal-content {
    padding: 40px 60px 30px;
    text-align: center;
}
.vitrineh-modal-title {
    font-size: 18px;
    color: #1a1b2f;
    margin: 0 0 10px;
    font-weight: 700;
}
.vitrineh-modal-subtitle {
    font-size: 12px;
    color: #777;
    line-height: 1.8;
    margin: 0 0 30px;
}
.vitrineh-input-group {
    position: relative;
    margin-bottom: 15px;
}
.vitrineh-input-group input {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 45px 14px 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 30px !important;
    font-family: inherit;
    font-size: 13px !important;
    outline: none !important;
    transition: border-color 0.3s !important;
}
.vitrineh-input-group input:focus {
    border-color: var(--vitrineh-color-form-btn)!important;
}
.vitrineh-input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #040028;
    display: flex;
    align-items: center;
}
.vitrineh-input-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}
.vitrineh-submit-btn {
    background-color: #9084f6;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
    width: auto;
}
.vitrineh-submit-btn:hover {
    background-color: #7b6eea;
}
.vitrineh-working-hours {
    font-size: 11px;
    color: #555;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}
.vitrineh-working-hours svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}
.vitrineh-modal-footer {
    background-color: var(--vitrineh-main-dark);
    border-radius: 0 0 24px 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 0px;
}
.vitrineh-footer-person {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.vitrineh-footer-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover;
    position: absolute;
    right: 0;
}
.vitrineh-footer-info {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: right;
    padding-right: 60px;
}
.vitrineh-footer-name { font-size: 11px; font-weight: bold; }
.vitrineh-footer-role { font-size: 9px; color: #aaa; margin-top: 3px; }
.vitrineh-footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}
.vitrineh-footer-phone {
    color: white;
    font-weight: bold;
    font-size: 16px;
    direction: ltr;
    white-space: nowrap;
}
.vitrineh-call-btn {
    background: #1b07f2;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
}

.vitrineh-call-btn:hover {
    color: white !important;
}
.vitrineh-story-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10005;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 20px 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.vitrineh-story-overlay.active {
    opacity: 1;
    visibility: visible;
}
.vitrineh-story-container {
    width: 430px;
    height: 725px;
    max-height: 800px;
    background: #000;
    border-radius: 24px;
    position: relative;
    border: 2px solid #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.vitrineh-story-top {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    z-index: 10;
}
.vitrineh-progress-wrapper {
    width: 100%;
    margin-bottom: 5px;
}
.vitrineh-progress-container {
    display: flex;
    gap: 4px;
    width: 100%;
}
.vitrineh-progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    overflow: hidden;
}
.vitrineh-progress-fill {
    height: 100%;
    background: var(--vitrineh-color-form-btn) !important;
    width: 0%;
    transform-origin: left;
    transition: width 0.1s linear;
}
.vitrineh-story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.vitrineh-story-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.vitrineh-controls-left {
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}
.vitrineh-story-timer {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.vitrineh-close-btn {
    background: #fff !important;
    border: none;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #000 !important;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    padding: 0;
}
.vitrineh-close-btn svg { width: 18px; height: 18px; display: block; }
.vitrineh-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}
.vitrineh-gradient {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, #090078, transparent 50%);
    z-index: 5;
    pointer-events: none;
    border-radius: 22px;
}
.vitrineh-menu-container {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
}
.vitrineh-nav-btn {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 14px 20px;
    border-radius: 30px !important;
    color: #000 !important;
    font-family: inherit !important;
    font-size: 13px;
    font-weight: 500 !important;
    width: 100%;
    cursor: pointer;
    transition: var(--vitrineh-ease) !important;
    text-align: center;
    line-height: 1.5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.vitrineh-nav-btn:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--vitrineh-main-blue) !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}
.vitrineh-home-icon {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px);
    border: none !important;
    color: white !important;
    cursor: pointer;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--vitrineh-ease) !important;
    z-index: 25;
    padding: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.vitrineh-home-icon.vitrineh-show {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.vitrineh-home-icon:hover {
    background: rgba(0, 0, 0, 0.7) !important;
    color: #fff !important;
    transform: translateX(-50%) translateY(-4px) scale(1.1) !important;
    border-color: rgba(255,255,255,0.4) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}
.vitrineh-home-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block; }
.vitrineh-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: vitrineh-spin 1s linear infinite;
    z-index: 15;
    display: none;
}
@keyframes vitrineh-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.vitrineh-overlay-cta {
    position: absolute;
    bottom: 145px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--vitrineh-main-blue) !important;
    color: white !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px !important;
    border-radius: 2.8rem !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    z-index: 25;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    transition: var(--vitrineh-ease) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.vitrineh-overlay-cta:hover {
    background-color: #1000b0 !important;
    transform: translateX(-50%) translateY(-4px) scale(1.03) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4) !important;
}
.vitrineh-cta-icon { display: flex; align-items: center; justify-content: center; }
.vitrineh-cta-icon svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.vitrineh-contact-banner {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95) !important;
    display: flex;
    align-items: center;
    border-radius: 30px !important;
    z-index: 25;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    direction: ltr;
    overflow: hidden;
    transition: var(--vitrineh-ease) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-width: 90%;
    white-space: nowrap;
}
.vitrineh-contact-banner:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3) !important;
}
.vitrineh-banner-text {
    color: #000 !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 10px 15px 10px 25px !important;
}
.vitrineh-banner-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px 10px 20px !important;
    background-color: #fff !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    transition: background-color 0.3s !important;
}
.vitrineh-banner-phone:hover { background-color: #f5f5f5 !important; }
.vitrineh-phone-icon { display: flex; align-items: center; justify-content: center; }
.vitrineh-phone-icon svg { width: 18px; height: 18px; stroke-width: 2; display: block; }
.vitrineh-banner-phone .vitrineh-phone-number {
    color: var(--vitrineh-main-cta) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    direction: ltr !important;
}
.vitrineh-show-cta {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

@media (max-width: 768px) {
    .vitrineh-left-actions { display: none; }
    .vitrineh-widget-title { font-size: 10px; padding: 6.5px 14px 6.5px 0px; margin-left: -13px; gap: 8px; }
    .vitrineh-avatar-wrapper { width: 70px; height: 70px; }
    .vitrineh-modal-footer { flex-direction: column; gap: 15px; align-items: center; padding: 20px 15px; }
    .vitrineh-footer-person { flex-direction: column; text-align: center; align-items: center; }
    .vitrineh-footer-avatar { position: static; right: auto; width: 60px !important; height: 60px !important; margin-bottom: 5px; }
    .vitrineh-footer-info { padding-right: 0; align-items: center; }
    .vitrineh-footer-contact { width: 100%; justify-content: space-between; background: rgba(255, 255, 255, 0.08); padding: 15px; border-radius: 16px; flex-wrap: wrap; margin-top: 5px; }
    .vitrineh-story-overlay { justify-content: center; padding: 15px; }
    .vitrineh-story-container { width: 100%; height: 90vh; max-height: 90vh; }
    .vitrineh-nav-btn { padding: 10px 20px; font-size: 12px; }
    .vitrineh-contact-banner { justify-content: space-between;}
    .vitrineh-banner-text { padding: 10px 10px 10px 20px !important; font-size: 11px !important; }
    .vitrineh-banner-phone { padding: 10px 15px !important; }
    .vitrineh-modal-content { padding: 40px 30px 30px; text-align: center; }
    .vitrineh-modal-close { position: absolute; top: 15px; z-index: 100; }
}

.vitrineh-widget-wrapper button, 
.vitrineh-widget-wrapper input, 
.vitrineh-widget-wrapper textarea, 
.vitrineh-widget-wrapper a {
    font-family: inherit !important;
}