section.qr-code {
    position: relative;
    padding: 3rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background-color: var(--white, #fdfaf6);
}

.qr-code .bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.qr-code .bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.qr-code .bg-image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
}

.qr-code .arch-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 280px;
    border-radius: 50px !important;
    padding: 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;

    background: rgb(255 255 255 / 57%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.6);
}

.qr-code .qr-title {
    font-size: 42px;
    font-weight: normal;
    font-family: var(--satisfy, "Great Vibes", cursive);
    color: #713135;
    margin: 0;
}

.qr-code .qr-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 25px;
    display: inline-block;
    transition: transform 0.3s ease;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.qr-code .qr-card:hover {
    transform: scale(1.03);
}

.qr-code .qr-card img {
    width: 100%;
    max-width: 230px;
    height: auto;
    display: block;
}

.qr-code .qr-desc {
    font-family: var(--montserrat, sans-serif);
    font-size: 15px;
    font-weight: 300;
    color: #713135;
    margin: 0;
    padding: 0 0.1rem;
}

.qr-code .save-link {
    text-decoration: none;
}

.qr-code .save-btn {
    background-color: #713135;
    color: white;
    font-family: var(--montserrat, sans-serif);
    font-size: 14px;
    font-weight: 300;
    padding: 10px 45px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition:
        background-color 0.3s ease-in-out,
        transform 0.2s ease-in-out;
    box-shadow: 0 4px 10px rgba(184, 134, 85, 0.2);
}

.qr-code .save-btn:hover {
    background-color: #5a272a;
    transform: translateY(-2px);
}

/* ORNAMEN */
.qr-code .ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.qr-code .ornaments img {
    position: absolute;
    width: 60%;
    max-width: 280px;
    object-fit: cover;
    opacity: 0.85;
}

.qr-code .ornaments img:nth-child(1) {
    top: -7%;
    width: 100% !important;
    max-width: none !important;
}

.qr-code .ornaments img:nth-child(2) {
    top: -1%;
    right: 0;
    z-index: 1;
    animation: rotateRight 3s ease-in-out infinite alternate;
}

.qr-code .ornaments img:nth-child(3) {
    top: -1%;
    left: 0;
    z-index: 1;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.qr-code .ornaments img:nth-child(4) {
    width: 100% !important;
    max-width: none !important;
    bottom: 20%;
    left: -45%;
}

.qr-code .ornaments img:nth-child(5) {
    bottom: -7%;
    width: 100% !important;
    max-width: none !important;
}

.qr-code .ornaments img:nth-child(6) {
    bottom: -1%;
    right: 0;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.qr-code .ornaments img:nth-child(7) {
    bottom: -1%;
    left: 0;
    animation: rotateRight 3s ease-in-out infinite alternate;
}

.qr-code .ornaments img:nth-child(8) {
    width: 100%;
    bottom: -1%;
    left: 40%;
}

/* Responsive */
@media (max-width: 360px) {
    .qr-code .arch-container {
        padding: 1rem 1.5rem;
        border-radius: 150px;
    }

    .qr-code .qr-title {
        font-size: 36px;
    }

    .qr-code .qr-desc {
        font-size: 13px;
    }

    .qr-code .qr-card {
        padding: 1.2rem;
    }

    .qr-code .qr-card img {
        max-width: 200px;
    }
}
