/* /Pages/Merchant/Dashboard.razor.rz.scp.css */

/* 3D Flip Card Styles */
.flip-container[b-p7hjk965k6] {
    perspective: 1000px;
    width: 100%;
    margin-bottom: 1.5rem;
}

.flipper[b-p7hjk965k6] {
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
}

.giftcard-mockup[b-p7hjk965k6] {
    width: 100%;
    aspect-ratio: 1.58 / 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,0.25);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.giftcard-front[b-p7hjk965k6] {
    position: relative;
    z-index: 2;
    transform: rotateY(0deg);
}

.giftcard-back[b-p7hjk965k6] {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}



.giftcard-mockup[b-p7hjk965k6]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.25) 100%);
    z-index: 1;
}

.giftcard-back[b-p7hjk965k6]::before {
    display: none;
}

.giftcard-content[b-p7hjk965k6] {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.preview-chip[b-p7hjk965k6] {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    align-self: flex-start;
}

.preview-titulo[b-p7hjk965k6] {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.75rem;
    opacity: 0.95;
}

.preview-message[b-p7hjk965k6] {
    font-size: 1.75rem;
    line-height: 1.4;
    word-break: break-word;
    max-height: 120px;
    overflow: hidden;
    margin: 0.75rem 0;
}

.preview-footer[b-p7hjk965k6] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.font-inter[b-p7hjk965k6] { font-family: 'Inter', sans-serif; font-weight: 800; }
.font-playfair[b-p7hjk965k6] { font-family: 'Playfair Display', serif; font-style: italic; }
.font-dancing[b-p7hjk965k6] { font-family: 'Dancing Script', cursive; }
.font-pacifico[b-p7hjk965k6] { font-family: 'Pacifico', cursive; }

.option-grid[b-p7hjk965k6] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 0.75rem;
}

.color-swatch[b-p7hjk965k6] {
    aspect-ratio: 1;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.color-swatch.active[b-p7hjk965k6] {
    border-color: #6366f1;
    transform: scale(1.1);
}

.font-button[b-p7hjk965k6] {
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    transition: all 0.2s ease;
    text-align: center;
}

.font-button.active[b-p7hjk965k6] {
    border-color: #6366f1;
    background: #f5f3ff;
}
/* /Pages/Public/AcceptToken.razor.rz.scp.css */
.gift-container[b-e7hvqicshm] {
    perspective: 1000px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.gift-box[b-e7hvqicshm] {
    position: relative;
    width: 200px;
    height: 200px;
    background: #e74c3c;
    transform-style: preserve-3d;
    transition: transform 1s;
    animation: float-b-e7hvqicshm 3s ease-in-out infinite;
}

.gift-box.open[b-e7hvqicshm] {
    animation: none;
    transform: rotateX(0deg) translateY(100px) scale(0);
    opacity: 0;
}

.gift-lid[b-e7hvqicshm] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #c0392b;
    transform: translateY(-50%);
    z-index: 2;
    transition: transform 0.5s;
}

.gift-box.open .gift-lid[b-e7hvqicshm] {
    transform: translateY(-200%) rotateX(45deg);
}

.ribbon[b-e7hvqicshm] {
    position: absolute;
    background: #f1c40f;
}

.ribbon-vertical[b-e7hvqicshm] {
    width: 40px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.ribbon-horizontal[b-e7hvqicshm] {
    width: 100%;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes float-b-e7hvqicshm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.card-reveal[b-e7hvqicshm] {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card-reveal.show[b-e7hvqicshm] {
    opacity: 1;
    transform: scale(1);
}
/* /Pages/Public/Checkout.razor.rz.scp.css */
.gift-card-preview[b-9jqenz793x] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gift-card-preview:hover[b-9jqenz793x] {
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    transform: translateY(-5px);
}

.card-amount[b-9jqenz793x] {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-logo[b-9jqenz793x] {
    font-size: 1.2rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-chip[b-9jqenz793x] {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    border-radius: 5px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.card-chip[b-9jqenz793x]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 10px, rgba(0,0,0,0.1) 10px, rgba(0,0,0,0.1) 11px);
}

.shine[b-9jqenz793x] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    animation: shine-b-9jqenz793x 6s infinite;
}

@keyframes shine-b-9jqenz793x {
    0% { transform: translateX(-100%) rotate(30deg); }
    20% { transform: translateX(100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}
/* /Pages/Public/Home.razor.rz.scp.css */
/* Tarjetas Hero action bar */
.action-bar-container[b-vfvv8k1e47] {
    margin-top: -30px;
    z-index: 10;
    position: relative;
}

.action-pill[b-vfvv8k1e47] {
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.action-pill:hover[b-vfvv8k1e47] {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.action-icon-circle[b-vfvv8k1e47] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Scroll horizontal muestrario */
.horizontal-scroll-container[b-vfvv8k1e47] {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}

.horizontal-scroll-container[b-vfvv8k1e47]::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Gift Card visual styles */
.gift-card-item[b-vfvv8k1e47] {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    transition: transform 0.2s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.gift-card-item:hover[b-vfvv8k1e47] {
    transform: translateY(-5px);
}

.gift-card-image-wrapper[b-vfvv8k1e47] {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-card-image[b-vfvv8k1e47] {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevent cropping on models */
    background-size: cover;
    background-position: center;
}

.gift-card-image-fallback[b-vfvv8k1e47] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.gift-card-details[b-vfvv8k1e47] {
    padding: 12px 4px;
}

.gift-card-title[b-vfvv8k1e47] {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gift-card-commerce[b-vfvv8k1e47] {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.commerce-logo-mini[b-vfvv8k1e47] {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 50%;
}

.gift-card-price[b-vfvv8k1e47] {
    font-weight: 700;
    color: #212529;
}

/* Categorias */
.category-section-title[b-vfvv8k1e47] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

/* Regalo Universal Hero Card */
.regalo-universal-card[b-vfvv8k1e47] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #a855f7 100%);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.regalo-universal-card[b-vfvv8k1e47]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.regalo-universal-card:hover[b-vfvv8k1e47] {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(79, 70, 229, 0.4);
}

.regalo-universal-icon[b-vfvv8k1e47] {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* PWA Install Banner */
.pwa-install-banner[b-vfvv8k1e47] {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    animation: slideUp-b-vfvv8k1e47 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp-b-vfvv8k1e47 {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.step-badge[b-vfvv8k1e47] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

