@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://fonts.googleapis.com/css?family=Mountains+of+Christmas');

.doors-grid {
    display: block;
}

.door-item {
    display: inline-block;
    width: 16.66667%;
    padding: 0.5rem;
    box-sizing: border-box;
    margin-bottom: 0.5rem;
    vertical-align: top;
}

/* Animation delays for door items */
.door-item-0 { animation-delay: 0s !important; }
.door-item-1 { animation-delay: 0.05s !important; }
.door-item-2 { animation-delay: 0.1s !important; }
.door-item-3 { animation-delay: 0.15s !important; }
.door-item-4 { animation-delay: 0.2s !important; }
.door-item-5 { animation-delay: 0.25s !important; }
.door-item-6 { animation-delay: 0.3s !important; }
.door-item-7 { animation-delay: 0.35s !important; }
.door-item-8 { animation-delay: 0.4s !important; }
.door-item-9 { animation-delay: 0.45s !important; }
.door-item-10 { animation-delay: 0.5s !important; }
.door-item-11 { animation-delay: 0.55s !important; }
.door-item-12 { animation-delay: 0.6s !important; }
.door-item-13 { animation-delay: 0.65s !important; }
.door-item-14 { animation-delay: 0.7s !important; }
.door-item-15 { animation-delay: 0.75s !important; }
.door-item-16 { animation-delay: 0.8s !important; }
.door-item-17 { animation-delay: 0.85s !important; }
.door-item-18 { animation-delay: 0.9s !important; }
.door-item-19 { animation-delay: 0.95s !important; }
.door-item-20 { animation-delay: 1s !important; }
.door-item-21 { animation-delay: 1.05s !important; }
.door-item-22 { animation-delay: 1.1s !important; }
.door-item-23 { animation-delay: 1.15s !important; }



@media (max-width: 1200px) {
    .door-item {
        width: 20%;
    }
}

@media (max-width: 992px) {
    .door-item {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .door-item {
        width: 33.33333%;
    }
}

@media (max-width: 576px) {
    .door-item {
        width: 50%;
    }
}

.adventskalender-wrapper {
    background: url('../Images/weihnachtsdorf.jpg') center center no-repeat;
    background-size: cover;
   
    position: relative;
    min-height: 100vh;
    
}

.adventskalender-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(60, 60, 60, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.adventskalender-wrapper > * {
    position: relative;
    z-index: 2;
}

.ribbon-box {
    position: relative;
}

.ribbon-box .ribbon-two {
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: 1;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
}

.ribbon-box .ribbon-two-primary span {
    background: #ffd700;
}

.ribbon-box .ribbon-two span {
    font-size: 13px;
    color: #000000;
    text-align: center;
    line-height: 20px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100px;
    display: block;
    -webkit-box-shadow: 0 0 8px 0 rgba(var(--ct-dark-rgb), .08), 0 1px 0 0 rgba(var(--ct-dark-rgb), .03);
    box-shadow: 0 0 8px 0 rgba(var(--ct-dark-rgb), .08), 0 1px 0 0 rgba(var(--ct-dark-rgb), .03);
    position: absolute;
    top: 19px;
    left: -21px;
    font-weight: 600;
}

.adventskalender-wrapper h1 {
    color: #fff !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    font-family: "Mountains of Christmas";
}

.adventskalender-wrapper .lead {
    color: #f8f9fa !important;
}

.christmas-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    color: #fff;
    font-size: 1em;
    user-select: none;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        top: -10%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0.3;
    }
}

.snowflake:nth-child(odd) {
    animation-duration: 10s;
}

.snowflake:nth-child(even) {
    animation-duration: 15s;
}

.snowflake:nth-child(3n) {
    animation-duration: 12s;
    font-size: 0.8em;
}

.snowflake:nth-child(4n) {
    animation-duration: 18s;
    font-size: 1.2em;
}

.snowflake:nth-child(5n) {
    animation-duration: 14s;
}

.door-card {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
   
    width: 100%;
    min-height: 100px;
    height: 100%;
    
    align-items: center;
    justify-content: center;
}

.door-card.unlocked {
    background: linear-gradient(135deg, 
        var(--door-unlocked-start, #0f7c3c) 0%, 
        var(--door-unlocked-end, #2d5016) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
}

.door-card.unlocked:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 10px 30px rgba(15, 124, 60, 0.6);
    background: linear-gradient(135deg, 
        var(--door-unlocked-start, #0f7c3c) 0%, 
        var(--door-unlocked-end, #2d5016) 100%);
    filter: brightness(1.1);
}

.door-card.locked {
    background: linear-gradient(135deg, 
        var(--door-locked-start, #c31432) 0%, 
        var(--door-locked-end, #d32f2f) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
}

.door-card.locked:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(195, 20, 50, 0.5);
    background: linear-gradient(135deg, 
        var(--door-locked-start, #c31432) 0%, 
        var(--door-locked-end, #d32f2f) 100%);
    filter: brightness(1.1);
}

.door-card.special-christmas {
    background: linear-gradient(135deg, var(--door-christmas-start, #ffd700) 0%, var(--door-christmas-end, #ff8c00) 100%);
    border: 3px solid var(--door-christmas-start, #ffd700);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: glow-christmas 2s ease-in-out infinite;
}

.door-card.special-christmas:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 1), 0 10px 30px rgba(195, 20, 50, 0.6);
}

.door-card.special-nikolaus {
    background: linear-gradient(135deg, var(--door-nikolaus-start, #ff0000) 0%, var(--door-nikolaus-end, #8b0000) 100%);
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: glow-nikolaus 2s ease-in-out infinite;
}

.door-card.special-nikolaus:hover {
    transform: translateY(-10px) rotate(-2deg) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.8), 0 10px 30px rgba(195, 20, 50, 0.6);
}

.door-card.custom-style {
    color: white;
}

.door-card.custom-style:hover {
    transform: translateY(-10px) rotate(2deg);
    filter: brightness(1.1);
}

.door-card.past-door {
    opacity: 0.6;
    filter: grayscale(0.5);
}

.door-card.past-door:hover {
    opacity: 0.75;
    filter: grayscale(0.3);
    transform: translateY(-5px) rotate(1deg);
}

@keyframes glow-christmas {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 1), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@keyframes glow-nikolaus {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.6), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.9), 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.door-inner {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.door-number-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.door-icon {
    font-size: 2rem;
    margin: 5px 0;
}

.door-lock-icon {
    width: 50px;
    height: 50px;
    margin: 5px 0;
    opacity: 0.7;
    object-fit: contain;
}

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

.door-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.2;
}

.door-hover-text {
    font-size: 0.65rem;
    margin-top: 3px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.door-locked-text {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.6;
}

.door-detail-card {
    animation: fadeInUp 0.5s ease;
}

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

.door-detail-card .card {
    border-radius: 20px;
    overflow: hidden;
}

.door-detail-card .card-header {
    background: linear-gradient(135deg, #c31432 0%, #d32f2f 100%);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    background-color: #7a0404;

    /*background: linear-gradient(135deg, var(--lightbox-bg, #7a0404) 0%, rgba(145, 15, 15, 0.7) 100%); */
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    animation: slideIn 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-day-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: var(--lightbox-accent, #c31432);
    font-size: 1.5rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-header {
    color: white;
    padding: 30px;
    text-align: center;
}

.lightbox-icon {
    font-size: 2rem;
    vertical-align: middle;
}

.lightbox-body {
    padding: 30px;
    color: white;
}

.lightbox-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 30px;
    align-items: start;
}

.lightbox-content-col {
    min-width: 0;
}

.lightbox-voucher-col {
    position: sticky;
    top: 20px;
}

@media (max-width: 992px) {
    .lightbox-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-voucher-col {
        position: relative;
        top: 0;
    }
}

.lightbox-body .alert {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.lightbox-body .btn-outline-danger {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.lightbox-body .btn-outline-danger:hover {
    background: white;
    color: var(--lightbox-accent, #c31432);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: perspective(1000px) rotateY(-90deg) scale(0.8);
        opacity: 0;
    }
    to {
        transform: perspective(1000px) rotateY(0) scale(1);
        opacity: 1;
    }
}

.door-image img {
    border-radius: 15px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}

.door-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-danger {
    background: linear-gradient(135deg, var(--lightbox-accent, #c31432) 0%, var(--door-locked-end, #d32f2f) 100%);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(195, 20, 50, 0.6);
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

@media (max-width: 576px) {
    .door-icon {
        font-size: 2rem;
    }
    
    .door-number-badge {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .door-title {
        font-size: 0.7rem;
    }
}

.tx-adventskalender h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}



.music-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--lightbox-accent, #c31432) 0%, var(--door-locked-end, #d32f2f) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(195, 20, 50, 0.4);
    transition: all 0.3s ease;
}

.music-toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(195, 20, 50, 0.6);
}

.deco-horse {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 200px;
    height: auto;
    z-index: 100;
    opacity: 0.8;
    animation: slideInFromRight 1s ease-out 2s forwards;
    transform: translateX(100%) translateY(-50%);
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(-50%);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .deco-horse {
        max-width: 100px;
    }
}

.deco-reindeer {
    position: fixed;
    left: 0;
    bottom: 0;
    max-width: 200px;
    height: auto;
    z-index: 100;
    opacity: 0.8;
    animation: slideInFromBottom 1s ease-out 1s forwards;
    transform: translateY(100%);
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .deco-reindeer {
        max-width: 100px;
    }
}

.voucher-container {
    margin: 0;
}

.voucher-download-container {
    margin-top: 15px;
    text-align: center;
}

.voucher-download-btn {
    background: white;
    color: var(--lightbox-accent, #c31432);
    border: 2px solid white;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.voucher-download-btn:hover {
    background: var(--lightbox-accent, #c31432);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.voucher-download-btn i {
    font-size: 1.2rem;
}

.voucher {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    border-radius: 10px;
    padding: 4px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.voucher-border {
    border: 3px dashed var(--lightbox-accent, #c31432);
    border-radius: 8px;
    padding: 15px;
    background: white;
    position: relative;
}

.voucher-snowflakes {
    text-align: center;
    font-size: 1.2rem;
    margin: 5px 0;
    opacity: 0.7;
}

.voucher-header {
    text-align: center;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--lightbox-accent, #c31432);
    padding-bottom: 10px;
}

.voucher-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.voucher-title {
    color: var(--lightbox-accent, #c31432);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.voucher-body {
    padding: 10px 5px;
}

.voucher-for,
.voucher-from {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 1rem;
}

.voucher-label {
    font-weight: bold;
    color: var(--lightbox-accent, #c31432);
    min-width: 50px;
}

.voucher-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.voucher-description {
    background: rgba(195, 20, 50, 0.05);
    border-left: 4px solid var(--lightbox-accent, #c31432);
    padding: 12px;
    margin: 12px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    border-radius: 4px;
}

.voucher-footer {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 2px solid var(--lightbox-accent, #c31432);
}

.voucher-date {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.75rem;
    opacity: 0.6;
    font-weight: 500;
    color: #666;
}

@media (max-width: 576px) {
    .voucher-title {
        font-size: 1.5rem;
    }
    
    .voucher-name {
        font-size: 1.1rem;
    }
    
    .voucher-description {
        font-size: 1rem;
        padding: 15px;
    }
}

/* Weihnachtsmann Design */
.voucher-santa {
    background: linear-gradient(135deg, var(--lightbox-accent, #c31432) 0%, var(--door-locked-end, #8b0000) 100%);
    border-radius: 15px;
    padding: 0;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.voucher-santa-header {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    padding: 20px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid #ffd700;
}

.voucher-santa-icon {
    font-size: 4rem;
    margin-bottom: 10px;
    animation: wave 2s ease-in-out infinite;
}

.voucher-santa-header .voucher-title {
    color: #c31432;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.voucher-santa-body {
    padding: 25px;
    background: linear-gradient(135deg, var(--lightbox-accent, #c31432) 0%, var(--door-locked-end, #8b0000) 100%);
    color: white;
}

.voucher-santa-snow {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.voucher-santa .voucher-label {
    color: #ffd700;
    font-weight: bold;
}

.voucher-santa .voucher-name {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-santa .voucher-description {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--lightbox-accent, #ffd700);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.voucher-santa-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.voucher-santa .voucher-date {
    color: rgba(255, 255, 255, 0.7);
}

@keyframes wave {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.door-ribbon {
    position: absolute;
    top: 12px;
    right: -32px;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #fff;
    font-size: 1.2rem;
    padding: 6px 38px;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.door-ribbon:before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 6px 6px;
    border-color: transparent transparent transparent #cc6600;
}

.door-ribbon:after {
     content: '';
     position: absolute;
     bottom: -6px;
     right: 0;
     width: 0;
     height: 0;
     border-style: solid;
     border-width: 0 6px 6px 0;
     border-color: transparent #cc6600 transparent transparent;
}

/* Voucher Code & QR Code Styles */
.voucher-code-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.voucher-qrcode {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: white;
    border-radius: 6px;
}

.voucher-qrcode canvas,
.voucher-qrcode img {
    max-width: 120px;
    max-height: 120px;
}

.voucher-code-text {
    text-align: center;
    font-size: 0.85rem;
}

.voucher-code-label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 0.75rem;
}

.voucher-code {
    display: block;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 0.95rem;
    word-break: break-all;
}

/* Santa Design - QR Code */
.voucher-santa .voucher-code-section {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.voucher-santa .voucher-code-label {
    color: #ffd700;
}

.voucher-santa .voucher-code {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Classic Design - QR Code */
.voucher-border .voucher-code-section {
    background: rgba(195, 20, 50, 0.05);
    border: 1px solid var(--lightbox-accent, #c31432);
}

.voucher-border .voucher-code-label {
    color: var(--lightbox-accent, #c31432);
}

.voucher-border .voucher-code {
    color: #333;
}

@media (max-width: 576px) {
    .voucher-code-section {
        margin: 10px 0;
        padding: 10px;
    }
    
    .voucher-qrcode {
        padding: 6px;
    }
    
    .voucher-qrcode canvas,
    .voucher-qrcode img {
        max-width: 100px;
        max-height: 100px;
    }
    
    .voucher-code {
        font-size: 0.85rem;
    }
}
