/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

  .day-dots {
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    display: flex;
    gap: 2px;
  }
  .day-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #37b184; /* vždy zelená */    
    display: inline-block;
    /* gap: 2px; */
    margin: 2px 1px;
  }
  .easepick-wrapper .day .day-num { position: relative; }

  @media (max-width: 991px) {

  	.stepy-titles li {
		width: 24%;
    	text-align: center;
  	}
	 .stepy-titles li span {
		display: none; 
	}
	.form-group.radio_input {
		        margin-bottom: 0px;
        margin-top: 0px;
	}
	.form-group.radio_input figure.image {
		display: none; 
	}
	
	.radio_input_small label {
    	max-width: 95px;
	}
	.radio_input label {
    	margin-right: 4px;
	}
}

/*============================================================================================*/
/* Rezervace / Potvrzení */
/*============================================================================================*/

.card ::after, .card ::before {
  content: none;
}


        .success-icon {
            text-align: center;
            margin-bottom: 20px;
        }

        .success-icon svg {
            width: 80px;
            height: 80px;
            fill: #10b981;
            animation: scaleIn 0.5s ease-out;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
            }
            to {
                transform: scale(1);
            }
        }

        .card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card-header {
            background: #00442b;
            color: white;
            padding: 30px;
            text-align: center;
        }

        .card-header h1 {
            font-weight: 700;
		    text-transform: uppercase;
		    font-size: 40px;
        	color: white;
            margin-bottom: 8px;
        }

        .card-header p {
            opacity: 0.95;
        	font-size: 26px;
        }

        .card-body {
            padding: 40px 30px;
        }

        	
		.customer-info {
            background: #f8f9fa;
            border-left: 4px solid #d69838;
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info-icon {
            width: 20px;
            height: 20px;
            fill: #6b7280;
            flex-shrink: 0;
        }

        .customer-details {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .customer-name {
            font-size: 14px;
            font-weight: 600;
            color: #1f2937;
        }

        .customer-contact {
            font-size: 13px;
            color: #6b7280;
            font-family: monospace;
        }
        
        
        .countdown-text {
            text-align: center;
            padding: 25px;
            border-radius: 12px;
            margin-bottom: 30px;        	
            /*background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #bae6fd;
        	*/
            background-color: #151515 !important;
		    background-image: url(/assets/images/background/diplomat-bs_footer_bg.png) !important;
		    background-size: contain !important;
		    background-position-x: -30px !important;
		    background-repeat: repeat-y !important;
        	
        }
        
            

        .countdown-icon {
            width: 48px;
            height: 48px;
            fill: #d5a149;
            margin-bottom: 12px;
        }

        .countdown-text p {
            font-size: 22px;
            color: #f8f9fa;
            margin: 0;
        }

        .countdown-text strong {
            color: #d5a149;
            font-size: 24px;
        }

        .countdown-date {
            font-size: 18px !important;
            color: #b5b5b5 !important;
            margin-top: 8px !important;
        }

        .appointment-details {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 4px solid #d69838;
        }

        .detail-row {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .detail-row:last-child {
            margin-bottom: 0;
        }

        .detail-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #d69838 0%, #d4b876 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .detail-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .detail-content {
            flex: 1;
        }

        .detail-label {
            font-size: 12px;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .detail-value {
            font-size: 18px;
            color: #1f2937;
            font-weight: 600;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .action-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .btn {
            padding: 16px 24px;
            border-radius: 10px;
            text-decoration: none;
            text-align: center;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #d69838 0%, #d4b876 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #d69838;
            border: 2px solid #d69838;
        }

        .btn-secondary:hover {
            background: #d69838;
            color: white;
            transform: translateY(-2px);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .info-box {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .info-box h3 {
            font-size: 16px;
            color: #92400e;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-box p {
            font-size: 14px;
            color: #78350f;
            line-height: 1.6;
        }

        .tips-section {
            margin-bottom: 30px;
            animation: fadeInUp 0.6s ease-out;
            animation-delay: 0.1s;
            animation-fill-mode: both;
        }

        .tips-section h3 {
            font-size: 20px;
            color: #1f2937;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tips-section h3 svg {
            width: 24px;
            height: 24px;
            fill: #d69838;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .tip-card {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: #d69838;
        }

        .tip-icon {
            width: 32px;
            height: 32px;
            fill: #d69838;
            margin-bottom: 12px;
        }

        .tip-card h4 {
            font-size: 16px;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .tip-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        .promo-section {
            margin-bottom: 30px;
        }

        .promo-card {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border: 2px solid #86efac;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .promo-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(34, 197, 94, 0.15);
        }

        .promo-icon {
            width: 40px;
            height: 40px;
            fill: #16a34a;
            flex-shrink: 0;
        }

        .promo-content h4 {
            font-size: 16px;
            color: #166534;
            margin-bottom: 6px;
        }

        .promo-content p {
            font-size: 14px;
            color: #15803d;
            line-height: 1.5;
            margin: 0;
        }

        .mini-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: white;
            color: #16a34a;
            border: 1px solid #86efac;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .mini-btn:hover {
            background: #16a34a;
            color: white;
            transform: translateY(-1px);
        }

        .loyalty-program {
            background: linear-gradient(179deg, #151515 0%, #374151 100%);
            color: white;
            padding: 30px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .loyalty-program::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .loyalty-program h3 {
            font-size: 22px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
        }

        .loyalty-program h3 svg {
            width: 28px;
            height: 28px;
            fill: #d69838;
        }

        .loyalty-program p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .progress-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            height: 16px;
            position: relative;
            overflow: hidden;
        }

        .progress-bar {
            background: linear-gradient(90deg, #d69838 0%, #d4b876 100%);
            height: 100%;
            border-radius: 20px;
            transition: width 0.5s ease;
            position: relative;
        }

        .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .progress-text {
            text-align: center;
            margin-top: 12px;
            font-size: 14px;
            font-weight: 600;
        }

        .visits-counter {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
    		margin-bottom: 20px;
        }

        .visit-dot {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .visit-dot.completed {
            background: linear-gradient(135deg, #d69838 0%, #d4b876 100%);
            transform: scale(1.1);
        }

        .footer {
            text-align: center;
            color: #9ca3af;
            font-size: 14px;
            margin-top: 30px;
            padding: 20px;
        }

        @media (max-width: 640px) {
            .action-buttons {
                grid-template-columns: 1fr;
            }

            .card-body {
                padding: 30px 20px;
            }

            .appointment-details {
                padding: 20px;
            }

            .detail-value {
                font-size: 16px;
                flex-direction: column;
                align-items: flex-start !important;
            }
            
            .detail-value a {
                margin-top: 4px;
                margin-left: 0 !important;
            }

            .visits-counter {
                flex-wrap: wrap;
            }

            .visit-dot {
                width: 32px;
                height: 32px;
                font-size: 11px;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }

            .countdown-text strong {
                font-size: 20px;
            }

            .promo-card {
                flex-direction: column;
            }
            

	    	.customer-info {
                padding: 12px 15px;
            }

            .customer-contact {
                font-size: 11px;
                word-break: break-all;
            }            
            
        }
        
/*============================================================================================*/
/* Alpine wizard (booking) — vybraný stav, sloty, navigace */
/*============================================================================================*/
[x-cloak] { display: none !important; }

/* Pure-CSS radia (bez iCheck/jQuery) — schováme nativní input, stav nese .is-selected na labelu. */
.radio_input label input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio_input label { cursor: pointer; }
.radio_input label.is-selected {
	outline: 2px solid #37b184;
	outline-offset: 2px;
	border-radius: 6px;
}
.confirm-options .opt.is-selected { background: rgba(55, 177, 132, .08); }

/* Krokový indikátor — splnění řeší fajfka (.step-check) v brand.css. */

#time-slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
#time-slots .slot-pick {
	cursor: pointer;
	padding: 8px 14px;
	border: 1px solid #ccc;
	border-radius: 6px;
	margin: 0;
}
#time-slots .slot-pick.is-selected {
	background: #37b184;
	border-color: #37b184;
	color: #fff;
}
#time-slots .slot-pick input { display: none; }

.wizard-nav .btn[disabled] { opacity: .5; cursor: not-allowed; }
