/* Extracted from show.html.twig */
/* Auto-generated — do not edit inline styles in the template */

        .course-detail-hero {
            background: linear-gradient(10deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 3rem 0;
            margin-bottom: 3rem;
        }
        
        .course-main-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        
        .course-detail-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            padding: 1rem;
            background: var(--light-bg);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .info-item:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(33, 80, 146, 0.2);
        }
        
        .info-item:hover .info-icon {
            background: white;
            color: var(--primary-color);
        }
        
        .info-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--primary-color);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }
        
        .info-content h6 {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
            opacity: 0.8;
        }
        
        .info-content p {
            margin: 0;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .price-box {
            background: linear-gradient(10deg, var(--accent-color), #f97316);
            color: white;
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            position: sticky;
            top: 100px;
        }
        
        .price-amount {
            font-size: 3rem;
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .btn-add-to-cart {
            width: 100%;
            background: white;
            color: var(--accent-color);
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem;
            border: none;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .btn-add-to-cart:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            color: var(--accent-color);
        }
        
        .occurrence-selector {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .occurrence-option {
            padding: 1rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 0.75rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .occurrence-option:hover {
            border-color: var(--primary-color);
            background: var(--light-bg);
        }
        
        .occurrence-option.selected {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }
        
        .times-list {
            max-height: 300px;
            overflow-y: auto;
        }
        
        .time-item {
            padding: 0.75rem;
            background: var(--light-bg);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .time-item:hover {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .time-item .dropdown .btn {
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        
        .time-item .dropdown .btn:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .time-item .dropdown-menu {
            min-width: 150px;
        }
        
        .time-item .dropdown-item {
            font-size: 0.9rem;
        }
        
        .time-item .dropdown-item i {
            width: 20px;
        }
        
        .related-courses-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid var(--border-color);
        }
        
        /* Related Course Cards */
        .course-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            height: 100%;
            background: white;
        }
        
        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(33, 80, 146, 0.15);
        }
        
        .course-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.3s ease;
        }
        
        .course-card:hover .course-image {
            transform: scale(1.05);
        }
        
        .course-image-wrapper {
            overflow: hidden;
            position: relative;
            background: linear-gradient(10deg, var(--primary-light), var(--primary-color));
        }
        
        .course-price {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: var(--accent-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .course-body {
            padding: 1.5rem;
        }
        
        .course-title {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark-text);
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .btn-view-course {
            width: 100%;
            background: linear-gradient(10deg, var(--primary-color), var(--primary-light));
            border: none;
            color: white;
            font-weight: 600;
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .btn-view-course:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(33, 80, 146, 0.3);
            color: white;
        }
        
        /* Gallery Item Hover Effect */
        .gallery-item-modal:hover {
            transform: scale(1.1);
        }
         .mobile-sticky-price {
            position: sticky;
            top: 80px;
            z-index: 900;
            margin-bottom: 2rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* Calendar Dropdown Styling */
        .dropdown-menu .dropdown-item {
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        
        .dropdown-menu .dropdown-item:hover {
            background: var(--light-bg);
            transform: translateX(4px);
        }
        
        .dropdown-menu .dropdown-item strong {
            display: block;
            margin-bottom: 0.25rem;
        }
        
        .dropdown-menu .dropdown-item small {
            font-size: 0.75rem;
        }

        .fe-course-template-calendar .fe-cal-table {
            table-layout: fixed;
            width: 100%;
        }
        .fe-course-template-calendar .fe-cal-table th {
            text-align: center;
            font-size: 0.75rem;
        }
        .fe-course-template-calendar .fe-cal-daynum {
            display: block;
            text-align: right;
            color: #adb5bd;
            font-size: 0.75rem;
        }
        .fe-course-template-calendar .fe-cal-cell {
            vertical-align: top;
            min-height: 4.5rem;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 0.35rem;
        }
        .fe-course-template-calendar .fe-cal-slot {
            padding: 0.35rem 0.25rem;
            margin-bottom: 0.25rem;
            border-radius: 4px;
            text-align: center;
            font-size: 0.7rem;
            line-height: 1.2;
            color: #fff;
            cursor: default;
        }
        .fe-course-template-calendar .fe-cal-slot.Bookable {
            background: #198754;
            cursor: pointer;
        }
        .fe-course-template-calendar .fe-cal-slot.Requestable {
            background: #ffc107;
            color: #212529;
            cursor: pointer;
        }
        .fe-course-template-calendar .fe-cal-slot.NotAvailable {
            background: #dc3545;
        }
        .fe-course-template-calendar .fe-cal-slot.Booked {
            background: #6c757d;
        }
        .fe-course-template-calendar .fe-cal-legend span {
            display: inline-block;
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 2px;
            margin-right: 0.25rem;
            vertical-align: middle;
        }
