/* ========================================
   Tim's visionOS Workshop Page Styles
   ======================================== */

.workshop-hero {
    background-image: url('assets/workshops/workshop_tim.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 8rem 0 7rem;
    margin: 120px auto 0;
    max-width: 1000px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.5), 
        0 0 0 1px rgba(255, 255, 255, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 120px rgba(250, 115, 67, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 600px;
}

.workshop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(250, 115, 67, 0.45) 0%, rgba(30, 58, 138, 0.65) 100%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
    background-size: cover, 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Override for visionOS version - more spatial tint */
.workshop-hero--vision::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 40% 35%, rgba(255,255,255,0.10) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(250,115,67,0.16) 0%, transparent 60%),
        linear-gradient(135deg, rgba(30,58,138,0.40) 0%, rgba(250,115,67,0.22) 100%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
    background-size: cover, cover, cover, 50px 50px;
    mix-blend-mode: screen;
    opacity: 0.95;
}

/* Spatial computing floating particles */
.workshop-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(250, 115, 67, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='glow'%3E%3CfeGaussianBlur stdDeviation='2' result='coloredBlur'/%3E%3CfeMerge%3E%3CfeMergeNode in='coloredBlur'/%3E%3CfeMergeNode in='SourceGraphic'/%3E%3C/feMerge%3E%3C/filter%3E%3C/defs%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.6)' filter='url(%23glow)'/%3E%3Ccircle cx='150' cy='80' r='1.5' fill='rgba(250,115,67,0.7)' filter='url(%23glow)'/%3E%3Ccircle cx='100' cy='150' r='2.5' fill='rgba(255,255,255,0.5)' filter='url(%23glow)'/%3E%3Ccircle cx='180' cy='30' r='1' fill='rgba(255,255,255,0.8)' filter='url(%23glow)'/%3E%3C/svg%3E");
    background-size: cover, cover, 300px 300px;
    z-index: 1;
    pointer-events: none;
    animation: spatialGlow 8s ease-in-out infinite alternate, particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, -100% -100%, 50% 50%;
    }
}

/* Additional depth layer for 3D effect */
.workshop-hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(250, 115, 67, 0.15) 0%, transparent 35%);
    z-index: 0;
    pointer-events: none;
    animation: depthPulse 12s ease-in-out infinite alternate;
    filter: blur(60px);
}

@keyframes depthPulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes spatialGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.workshop-hero-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    height: 100%;
    text-align: center;
}

.workshop-hero-content::after {
    display: none;
}

.workshop-hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.workshop-hero-logo {
    height: 120px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.instructor-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.workshop-hero-instructor {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--logo-orange);
    border-radius: 50%;
    position: relative;
}

.instructor-name-overlay {
    background: #F5E6D3;
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    line-height: 1.1;
    border: 3px solid var(--logo-orange);
    margin: 0 auto;
    margin-top: 0.45rem;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    width: fit-content;
}

.instructor-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--logo-orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.workshop-hero-instructor::before {
    display: none;
}

.instructor-image-wrapper:hover .workshop-hero-instructor::before {
    display: none;
}

.workshop-hero-content p {
    color: rgba(255, 255, 255, 1);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 800;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    margin-top: 1.5rem;
    opacity: 1;
    letter-spacing: 0.02em;
    line-height: 1.4;
    display: inline-block;
    padding: 0.875rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.workshop-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.75rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-hero {
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.35);
    color: white;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

.workshop-hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
    /* Metallic silver gradient with shimmer */
    background: linear-gradient(
        135deg,
        #E8E8E8 0%,
        #FFFFFF 15%,
        #F5F5F5 30%,
        #E0E0E0 45%,
        #FFFFFF 60%,
        #E8E8E8 75%,
        #F0F0F0 90%,
        #FFFFFF 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 4s ease-in-out infinite, titleGlow 3s ease-in-out infinite alternate;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2),
        0 6px 30px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

@keyframes titleShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes titleGlow {
    0% {
        filter: brightness(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    }
    100% {
        filter: brightness(1.15) drop-shadow(0 6px 30px rgba(255, 255, 255, 0.4));
    }
}

.workshop-hero .workshop-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--text-base);
    font-weight: 500;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    text-align: center;
}

.workshop-hero .workshop-meta span {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.7),
        0 0 60px rgba(255, 255, 255, 0.5),
        0 3px 12px rgba(0, 0, 0, 0.8),
        0 1px 5px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.3s ease;
    position: relative;
    overflow: visible;
    font-weight: 600;
    color: rgba(255, 255, 255, 1);
    font-size: var(--text-base);
    line-height: 1.6;
    display: block;
    text-align: center;
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

.workshop-hero .workshop-meta span::before {
    display: none;
}

.workshop-hero .workshop-meta span:hover {
    background: none;
    border: none;
    box-shadow: none;
    transform: none;
    text-shadow: 
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 80px rgba(255, 255, 255, 0.6),
        0 3px 12px rgba(0, 0, 0, 0.8),
        0 1px 5px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(0, 0, 0, 0.4);
}

.workshop-hero .workshop-meta span:hover::before {
    display: none;
}

.workshop-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.workshop-section {
    margin-bottom: 4rem;
}

.workshop-section h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}

.workshop-section h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.workshop-section p {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.workshop-section ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.workshop-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-primary);
    line-height: 1.7;
}

.workshop-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.instructor-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.instructor-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.instructor-info h3 {
    margin-top: 0;
}

.requirements-box {
    background: linear-gradient(135deg, rgba(250, 115, 67, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.requirements-box h3 {
    margin-top: 0;
    color: var(--primary);
}

.pricing-section {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-tier {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border);
}

.pricing-tier.current {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(250, 115, 67, 0.2);
}

.pricing-tier .tier-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pricing-tier .tier-price {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary);
}

.cta-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 16px;
    margin: 3rem 0;
}

.cta-section h2 {
    color: white;
    border-bottom: 3px solid white;
}

.cta-section p {
    color: white;
}

.cta-section .btn {
    margin-top: 1.5rem;
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.cta-section .btn:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .workshop-hero {
        padding: 5rem 0 6rem;
        margin: 100px 1rem 0;
        border-radius: 16px;
    }
    
    .workshop-hero-logo-wrapper {
        margin-bottom: 1rem;
    }
    
    .instructor-name-overlay {
        padding: 0.5rem 1rem;
        margin-top: 0.35rem;
        margin-bottom: 0.75rem;
        border-radius: 16px;
        border-width: 2.5px;
        max-width: 90%;
    }
    
    .instructor-name {
        font-size: 0.7rem;
        letter-spacing: 0.06em;
    }
    
    .workshop-hero-content {
        padding: 0 1rem;
    }
    
    .workshop-hero .workshop-meta {
        gap: 0.3rem;
        font-size: var(--text-sm);
        bottom: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        width: 90%;
        max-width: 100%;
        text-align: center;
    }
    
    .workshop-hero .workshop-meta span {
        padding: 0;
        font-size: var(--text-sm);
        background: none;
        backdrop-filter: none;
        text-align: center;
        display: block;
    }
    
    .workshop-hero-cta {
        margin-bottom: 0.5rem;
    }
    
    .workshop-content {
        padding: 2rem 1rem;
    }
    
    .instructor-card {
        flex-direction: column;
        text-align: center;
    }
    
    .instructor-image {
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-hero-cta {
        flex-direction: column;
    }
    
    .btn-hero,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
    }
}

.tito-release {
    /* background: var(--bg-primary); */
    background-image: url('assets/workshops/workshop_tim.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--workshop-shadow);
    transition: all 0.3s var(--workshop-easing);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    /* gap: 2rem; */
    align-items: flex-start;
}

/* .tito-widget p {
    display: none;
} */

.rockiesworkshop {
    display: block;
}

.rockieshome {
    display: none;
}

/* Description on the left */
.tito-release-description {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.tito-widget .tito-widget-form .tito-release .tito-release--title {
    color: #E0E0E0;
}

/* Right column container for price and quantity */
.tito-release > .tito-price-details-regular {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Price details on the right */
.tito-price-details-regular {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 1rem;
    /* background: rgba(227, 139, 16, 0.95); */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3); */
}

/* Quantity selector on the right, below price - horizontal layout */
.tito-release > .tito-quantity {
    flex-shrink: 0;
}

.tito-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0 0;
    padding: 0.75rem;
    width: auto;
}

/* Hide times section if present */
.tito-times {
    display: none;
}

/* .tito-widget .tito-widget-form .tito-release .tito-price-details-regular {
    display: none;
} */

.tito-widget .tito-widget-form .tito-release .tito-release-description .tito-release-description--combos {
    display: none;
}

.workshop-tito-buttons {
    text-align: center;
}

.tito-buttons-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-tito-workshop,
.btn-tito-bundle {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-tito-workshop {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(250, 115, 67, 0.3);
}

.btn-tito-workshop:hover {
    background: #e85d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 115, 67, 0.4);
}

.btn-tito-bundle {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-tito-bundle:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 115, 67, 0.2);
}

@media (max-width: 768px) {
    .tito-buttons-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-tito-workshop,
    .btn-tito-bundle {
        width: 100%;
        max-width: 320px;
    }
    
    /* Tito widget container mobile styles */
    .tito-widget-container {
        padding: 0 0.125rem !important;
        margin: 2rem auto !important;
    }
    
    /* Stack Tito release vertically on mobile */
    .tito-release {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem !important;
        margin-bottom: 1.5rem;
        background-size: cover !important;
        background-position: center !important;
        position: relative;
    }
    
    /* Add overlay for better text readability on mobile */
    .tito-release::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 0;
        border-radius: 16px;
    }
    
    /* Ensure content is above overlay */
    .tito-release > * {
        position: relative;
        z-index: 1;
    }
    
    .tito-release-description {
        width: 100%;
        order: 1;
    }
    
    /* Price and quantity container on mobile */
    .tito-release > .tito-price-details-regular {
        order: 2;
        width: 100%;
        align-items: center !important;
        padding: 0.25rem 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border-radius: 0;
        min-height: auto;
    }
    
    .tito-price-details-regular {
        width: 100%;
        align-items: center !important;
    }
    
    /* Quantity selector on mobile */
    .tito-release > .tito-quantity {
        order: 3;
        width: 100%;
        margin-top: 0.75rem !important;
        justify-content: center;
        padding-top: 0;
    }
    
    .tito-quantity {
        width: 100%;
        justify-content: center;
    }
    
    /* Improve text readability on mobile */
    .tito-widget .tito-widget-form .tito-release .tito-release--title {
        color: #0f172a !important;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }
    
    /* Better spacing for description content */
    .tito-release-description p,
    .tito-release-description div {
        color: rgba(15, 23, 42, 0.85);
        line-height: 1.6;
    }
    
    /* Price styling on mobile */
    .tito-price-details-regular .tito-release--price {
        font-size: 1.75rem !important;
        font-weight: 700;
        color: var(--primary) !important;
    }
    
    /* Quantity selector buttons on mobile */
    .tito-quantity button,
    .tito-quantity a {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Form actions on mobile */
    .tito-form-actions {
        margin-top: 1.5rem;
    }
    
    .tito-widget .tito-form-actions .tito-submit {
        width: 100% !important;
        padding: 1rem !important;
        font-size: 1rem;
        font-weight: 700;
    }

    .tito-widget .tito-widget-form .tito-release .tito-details--waiting-list .tito-price, .tito-widget .tito-widget-form .tito-release .tito-price-details-donation .tito-price, .tito-widget .tito-widget-form .tito-release .tito-price-details-regular .tito-price {
        padding: 0.5rem;
        color: var(--primary);
        max-width: fit-content !important;
    }

    .tito-widget .tito-widget-form .tito-release .tito-release--title  {
        color:white !important;
    }

    .tito-widget .tito-widget-form .tito-release .tito-details--waiting-list, .tito-widget .tito-widget-form .tito-release .tito-price-details-donation, .tito-widget .tito-widget-form .tito-release .tito-price-details-regular {
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.20);
        box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.6);
        backdrop-filter: blur(10px);
        color: #f4f5f6;
        padding: 1rem;
        max-width: fit-content !important;
        margin: 0 auto !important;
    }
}

.tito-widget .tito-widget-form .tito-release .tito-details--waiting-list, .tito-widget .tito-widget-form .tito-release .tito-price-details-donation, .tito-widget .tito-widget-form .tito-release .tito-price-details-regular {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    color: #f4f5f6;
    padding: 1rem;
    max-width: fit-content !important;
    margin-bottom:0.75rem;
}

.tito-widget .tito-widget-form .tito-release .tito-release--title  {
    padding: 1rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.06);
    backdrop-filter: blur(10px);
    color: #f4f5f6;
}

.tito-widget .tito-widget-form .tito-release .tito-release--title > small {
    display: none;
}

/* ========================================
   visionOS-Style Enhancements
   ======================================== */

.workshop-hero--vision {
    position: relative;
    isolation: isolate;
}

/* Spatial layer sits behind text but above background */
.vision-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Glass panes (visionOS window vibe) */
.vision-pane {
    position: absolute;
    border-radius: 26px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow:
        0 26px 80px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.16);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    transform: translateZ(0);
}

.vision-pane--left {
    width: 280px;
    height: 170px;
    left: 6%;
    top: 18%;
    opacity: 0.55;
    filter: blur(0.2px);
    transform: rotate(-8deg) translateZ(0);
    animation: floatA 9s ease-in-out infinite;
}

.vision-pane--right {
    width: 300px;
    height: 180px;
    right: 6%;
    top: 22%;
    opacity: 0.40;
    filter: blur(0.8px);
    transform: rotate(9deg) translateZ(0);
    animation: floatB 11s ease-in-out infinite;
}

/* Volumetric tile (thicker card in space) */
.vision-tile {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 50%;
    top: 14%;
    opacity: 0.35;
    filter: blur(1px);
    transform: translateX(-50%) translateY(4px);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 30px 90px rgba(0,0,0,0.35),
        0 0 50px rgba(250,115,67,0.12);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    animation: floatC 12s ease-in-out infinite;
}

/* Orb / lens hint */
.vision-orb {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    left: 64%;
    top: 10%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.08) 35%, transparent 70%),
        radial-gradient(circle at 60% 70%, rgba(250,115,67,0.20) 0%, transparent 55%);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 20px 60px rgba(0,0,0,0.25),
        0 0 40px rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
}

/* Subtle spatial grid */
.vision-grid {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at 55% 55%, rgba(0,0,0,0.9) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 55% 55%, rgba(0,0,0,0.9) 0%, transparent 70%);
}

/* Gaze highlight */
.vision-gaze {
    position: absolute;
    width: 220px;
    height: 220px;
    left: 15%;
    top: 55%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
    filter: blur(2px);
    opacity: 0.55;
    animation: gazeDrift 10s ease-in-out infinite alternate;
}

@keyframes gazeDrift {
    from { transform: translate(0,0); }
    to   { transform: translate(220px,-120px); }
}

@keyframes floatA {
    0%, 100% { transform: rotate(-8deg) translateY(0) translateX(0); }
    50% { transform: rotate(-8deg) translateY(-10px) translateX(6px); }
}

@keyframes floatB {
    0%, 100% { transform: rotate(9deg) translateY(0) translateX(0); }
    50% { transform: rotate(9deg) translateY(-14px) translateX(-8px); }
}

@keyframes floatC {
    0%, 100% { transform: translateX(-50%) translateY(4px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Put your text inside a single glass HUD */
.hero-glass-card {
    position: relative;
    display: inline-block;
    padding: 30px 36px;
    border-radius: 34px;
    
    /* visionOS glass */
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.14) 0%,
        rgba(255,255,255,0.08) 35%,
        rgba(15,23,42,0.22) 100%
    );
    
    border: 1px solid rgba(255,255,255,0.22);
    
    box-shadow:
        0 40px 120px rgba(0,0,0,0.55),
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.18);
    
    backdrop-filter: blur(26px) saturate(170%);
    -webkit-backdrop-filter: blur(26px) saturate(170%);
    
    max-width: 880px;
    z-index: 3;
}

/* Specular highlight (sheen) */
.hero-glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    
    background:
        radial-gradient(circle at 28% 18%, rgba(255,255,255,0.26) 0%, transparent 42%),
        radial-gradient(circle at 78% 30%, rgba(250,115,67,0.16) 0%, transparent 55%);
    
    opacity: 0.9;
    mix-blend-mode: screen;
}

/* Crisp inner edge */
.hero-glass-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.12);
    opacity: 0.9;
}

/* Ensure content sits above overlays */
.workshop-hero-content {
    position: relative;
    z-index: 3;
}

/* Lens vignette (headset view effect) */
.workshop-hero--vision::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    
    /* very soft lens vignette */
    background:
        radial-gradient(circle at 50% 45%, transparent 0%, transparent 55%, rgba(0,0,0,0.22) 100%);
    opacity: 0.55;
}

/* visionOS-style CTA button */
.workshop-hero .btn,
.workshop-hero .btn-primary,
.workshop-hero a.btn,
.workshop-hero a.btn-primary,
.workshop-hero button.btn {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    border: 1px solid rgba(255,255,255,0.22);
    background: linear-gradient(180deg, rgba(250,115,67,0.95), rgba(202,105,53,0.95));
    box-shadow:
        0 18px 50px rgba(250,115,67,0.35),
        0 6px 18px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    color: white;
    font-weight: 700;
}

.workshop-hero .btn:hover,
.workshop-hero .btn-primary:hover,
.workshop-hero a.btn:hover,
.workshop-hero a.btn-primary:hover,
.workshop-hero button.btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 24px 70px rgba(250,115,67,0.45),
        0 10px 24px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.28);
    filter: brightness(1.02);
}

/* Mobile adjustments for visionOS elements */
@media (max-width: 768px) {
    .vision-pane--left {
        width: 180px;
        height: 110px;
        left: 4%;
        top: 15%;
    }
    
    .vision-pane--right {
        width: 200px;
        height: 120px;
        right: 4%;
        top: 18%;
    }
    
    .vision-tile {
        width: 140px;
        height: 140px;
        top: 10%;
    }
    
    .vision-orb {
        width: 80px;
        height: 80px;
        left: 60%;
        top: 8%;
    }
    
    .vision-gaze {
        width: 150px;
        height: 150px;
        left: 10%;
        top: 50%;
    }
    
    .hero-glass-card {
        padding: 20px 24px;
        border-radius: 24px;
        max-width: 95%;
    }
}
