:root {
    --cream: #fff8f0;
    --gold: #c99a4a;
    --rose: #e7b6aa;
    --dark: #39271f;
    --soft: #fffdf9;
    --shadow: 0 25px 70px rgba(90, 55, 35, .18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at top, #fff6ee, #fbebe6 45%, #fffaf4);
    color: var(--dark);
    overflow-x: hidden;
}

.hidden {
    display: none;
}

.section {
    padding: 90px 7%;
}

.small-title {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
}

h1,
h2 {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    margin: 15px 0;
    color: #5d342b;
}

h1 {
    font-size: 95px;
}

h2 {
    font-size: 92px;
}

h3 {
    font-size: 34px;
    margin: 10px 0 25px;
}

/* INTRO MAIN */
.intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 30px;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .55), transparent 36%),
        linear-gradient(135deg, #fff7ef, #efd0b8);
    overflow: hidden;
}

.intro-card {
    max-width: 760px;
    padding: 70px 45px;
    border: 1px solid rgba(201, 154, 74, .35);
    border-radius: 34px;
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.intro-card:before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 154, 74, .25);
    border-radius: 26px;
    pointer-events: none;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 30px;
}

.main-btn,
.outline-btn {
    border: 0;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}

.main-btn {
    background: linear-gradient(135deg, #b98532, #e8c27b);
    color: white;
    box-shadow: 0 14px 30px rgba(185, 133, 50, .28);
}

.main-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(185, 133, 50, .34);
}

.outline-btn {
    border: 1px solid var(--gold);
    color: #8a642d;
    background: rgba(255, 255, 255, .65);
}

.outline-btn:hover {
    background: #fff3df;
}

.full {
    width: 100%;
    margin-top: 15px;
}

/* HERO */
.hero {
    min-height: 96vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(50, 25, 19, .35), rgba(80, 40, 31, .45)), url('../img/kapak.jpg') center/cover fixed;
    color: white;
    position: relative;
}

.hero:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, var(--cream));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 55px;
    border-radius: 35px;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
}

.hero h2,
.hero .date-text {
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ALERTS & POPUPS */
.alert {
    max-width: 900px;
    margin: 25px auto 0;
    padding: 18px 25px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
}

.success {
    background: #eaf9ee;
    color: #25733b;
}

.error {
    background: #ffecec;
    color: #9d2d2d;
}

.success-popup {
    position: fixed;
    inset: 0;
    background: rgba(40, 25, 20, 0.55);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.success-popup.active {
    display: flex;
}

.success-popup-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 28px;
    padding: 35px 28px;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    animation: popupShow .4s ease;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #8b5e3c);
    color: white;
    font-size: 42px;
    line-height: 72px;
    font-weight: bold;
}

.warning-icon {
    background: linear-gradient(135deg, #f59e0b, #b45309) !important;
}

.success-popup-card h3 {
    font-size: 28px;
    color: #4b2e24;
    margin-bottom: 10px;
}

.success-popup-card p {
    color: #6f5c52;
    margin-bottom: 22px;
}

.success-popup-card button {
    border: none;
    background: linear-gradient(135deg, #c49b6a, #8b5e3c);
    color: white;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

/* COUNTDOWN */
.countdown {
    text-align: center;
}

.timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 850px;
    margin: 35px auto 0;
}

.timer div {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(201, 154, 74, .25);
    padding: 30px 15px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.timer div:nth-child(2) {
    animation-delay: .3s;
}

.timer div:nth-child(3) {
    animation-delay: .6s;
}

.timer div:nth-child(4) {
    animation-delay: .9s;
}

.timer strong {
    font-size: 48px;
    color: #9a6d2d;
    display: block;
}

.timer span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* SECTIONS & GRIDS */
.section-head {
    text-align: center;
    margin-bottom: 35px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    background: rgba(255, 255, 255, .75);
    padding: 34px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201, 154, 74, .18);
    line-height: 1.8;
}

.story-card b {
    font-size: 22px;
    color: #8a5e2a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 18px;
}

.photo {
    border-radius: 30px;
    background: linear-gradient(135deg, #f3cfc7, #fff5e6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9b6e57;
    font-weight: 700;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.photo:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: translateX(-100%);
    animation: shine 5s infinite;
}

.p1 {
    grid-row: span 2;
    background: url('../img/foto1.jpg') center/cover, linear-gradient(135deg, #f3cfc7, #fff5e6);
}

.p2 {
    background: url('../img/foto2.jpg') center/cover, linear-gradient(135deg, #f3cfc7, #fff5e6);
}

.p3 {
    background: url('../img/foto3.jpg') center/cover, linear-gradient(135deg, #f3cfc7, #fff5e6);
}

.p4 {
    grid-column: span 2;
    background: url('../img/foto4.jpg') center/cover, linear-gradient(135deg, #f3cfc7, #fff5e6);
}

.timeline {
    max-width: 850px;
    margin: auto;
    background: rgba(255, 255, 255, .72);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 25px;
}

.timeline div {
    display: flex;
    gap: 25px;
    align-items: center;
    border-bottom: 1px dashed rgba(201, 154, 74, .35);
    padding: 18px;
}

.timeline div:last-child {
    border-bottom: 0;
}

.timeline span {
    min-width: 75px;
    font-weight: 800;
    color: #b98532;
}

.location {
    text-align: center;
    background: rgba(255, 255, 255, .48);
}

/* ENVELOPE & LETTER (ZARF VE DAVETIYE) */
.envelope-wrap {
    width: 100%;
    max-width: 820px;
    text-align: center;
    padding: 30px 20px;
}

.envelope {
    position: relative;
    width: 760px;
    height: 560px;
    margin: 0 auto 38px;
}

.letter {
    position: absolute;
    left: 82px;
    right: 82px;
    bottom: 142px;
    min-height: 430px;
    padding: 48px 42px;
    background: linear-gradient(180deg, #fffefb, #fff8ef);
    border-radius: 28px;
    border: 1px solid rgba(214, 164, 83, .55);
    text-align: center;
    box-shadow: 0 25px 70px rgba(92, 47, 16, .18);
    z-index: 3;
    transform: translateY(115px);
    transform-origin: center center;
    transition: transform 1.8s cubic-bezier(.2, .9, .25, 1), opacity .8s ease;
}

.letter::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(216, 177, 108, .75);
    border-radius: 22px;
    pointer-events: none;
}

.envelope.open .letter {
    transform: translateY(-90px) scale(1.15);
    z-index: 50;
}

.intro.zooming {
    animation: introFade .8s ease forwards;
}

.letter span {
    display: block;
    color: #b97520;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.letter h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 96px;
    line-height: .85;
    color: #8b4d26;
    font-weight: 400;
    margin-bottom: 22px;
}

.letter h1 small {
    display: block;
    font-size: 58px;
    margin: 8px 0;
}

.letter p {
    color: #5c3a2b;
    font-size: 17px;
    line-height: 1.6;
}

/* ZARF PARÇALARI */
.envelope-back {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 330px;
    background: linear-gradient(145deg, #f7bd61 0%, #e99012 50%, #c76a09 100%);
    border-radius: 0 0 38px 38px;
    z-index: 1;
    box-shadow: 0 40px 95px rgba(116, 59, 13, .30),
        inset 0 2px 0 rgba(255, 255, 255, .35),
        inset 0 -22px 45px rgba(116, 50, 0, .16);
}

.envelope-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 330px;
    background: linear-gradient(135deg, #ffd98f 0%, #f39c18 58%, #d87200 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    border-radius: 0 0 0 38px;
    z-index: 5;
    box-shadow: inset 12px 0 25px rgba(255, 255, 255, .18),
        inset -18px -22px 40px rgba(120, 55, 0, .12);
}

.envelope-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 330px;
    background: linear-gradient(225deg, #ffd98f 0%, #f29509 58%, #c96500 100%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    border-radius: 0 0 38px 0;
    z-index: 5;
    box-shadow: inset -12px 0 25px rgba(255, 255, 255, .16),
        inset 18px -22px 40px rgba(120, 55, 0, .13);
}

.envelope-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 330px;
    background: linear-gradient(180deg, #f6a72a 0%, #e88400 54%, #bd5e00 100%);
    clip-path: polygon(0 100%, 50% 42%, 100% 100%);
    border-radius: 0 0 38px 38px;
    z-index: 6;
    box-shadow: inset 0 2px 0 rgba(255, 255, 255, .22),
        inset 0 -25px 42px rgba(115, 50, 0, .18);
}

.envelope-left::after,
.envelope-right::after,
.envelope-bottom::after {
    content: "";
    position: absolute;
    opacity: .35;
}

.envelope-left::after {
    right: -1px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .85), transparent);
    transform: rotate(-56deg);
    transform-origin: top;
}

.envelope-right::after {
    left: -1px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .85), transparent);
    transform: rotate(56deg);
    transform-origin: top;
}

.envelope-bottom::after {
    left: 42px;
    right: 42px;
    bottom: 24px;
    height: 1px;
    background: rgba(255, 255, 255, .42);
}

.envelope::after {
    content: "♡";
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    z-index: 7;
    color: rgba(255, 255, 255, .85);
    font-size: 24px;
}

.envelope-btn {
    position: relative;
    z-index: 20;
}

/* MODAL & FORMS */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(40, 22, 18, .68);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-card {
    width: min(560px, 100%);
    background: white;
    border-radius: 32px;
    padding: 35px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    position: relative;
    animation: pop .35s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    border: 0;
    background: #fff0e9;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
}

label {
    display: block;
    margin: 14px 0 7px;
    font-weight: 700;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid #ead7c7;
    background: #fffaf6;
    font-family: inherit;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 154, 74, .12);
}

/* VISUAL EFFECTS (PETALS, GLOWS) */
.petals:before,
.petals:after {
    content: "✦ ❀ ✧ ❁ ✦ ❀ ✧";
    position: fixed;
    top: -40px;
    left: 0;
    right: 0;
    z-index: 1;
    color: rgba(201, 154, 74, .45);
    font-size: 24px;
    letter-spacing: 55px;
    pointer-events: none;
    animation: fall 12s linear infinite;
}

.petals:after {
    animation-duration: 17s;
    animation-delay: -5s;
    color: rgba(231, 182, 170, .45);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .6;
}

.glow-one {
    width: 180px;
    height: 180px;
    background: #ffd9c8;
    left: 10%;
    top: 15%;
    animation: float 6s infinite;
}

.glow-two {
    width: 220px;
    height: 220px;
    background: #ffe4a6;
    right: 9%;
    bottom: 15%;
    animation: float 7s infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition: 1s;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* BACKEND / ADMIN STYLES */
.admin-body {
    min-height: 100vh;
    padding: 30px;
    background: linear-gradient(135deg, #fff5ec, #f6dacf);
}

.login-box,
.admin-panel {
    max-width: 1250px;
    margin: 40px auto;
    background: rgba(255, 255, 255, .82);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.login-box {
    max-width: 430px;
}

.hint {
    font-size: 13px;
    color: #8a6b5b;
}

.admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1050px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid #efdcd0;
    text-align: left;
}

th {
    background: #fff5ed;
}

.actions {
    white-space: nowrap;
}

.save-btn,
.delete-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.save-btn {
    background: #d4a354;
    color: white;
}

.delete-btn {
    background: #ffe0de;
    color: #9b2c2c;
    margin-left: 6px;
    display: inline-block;
}

/* MISC METRICS */
.date-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 25px 0;
    color: #fff;
}

.date-text strong {
    font-size: 27px;
    font-weight: 600;
}

.date-text span {
    font-size: 22px;
    opacity: .95;
}

.date-text small {
    font-size: 18px;
    opacity: .9;
    font-style: italic;
}

.invite-title {
    color: #f4c15d !important;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(244, 193, 93, .45), 0 2px 10px rgba(0, 0, 0, .35);
}

/* ANIMATIONS */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes fall {
    from {
        transform: translateY(-80px) rotate(0);
    }

    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

@keyframes shine {

    50%,
    100% {
        transform: translateX(100%);
    }
}

@keyframes pop {
    from {
        transform: scale(.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: scale(.88) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes introFade {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* RESPONSIVE (MOBILE) */
@media (max-width: 768px) {
    .section {
        padding: 65px 20px;
    }

    h1 {
        font-size: 58px;
    }

    h2 {
        font-size: 58px;
    }

    h3 {
        font-size: 26px;
    }

    .intro-card,
    .hero-content {
        padding: 40px 24px;
    }

    .timer {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .timer strong {
        font-size: 34px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px;
    }

    .p1,
    .p4 {
        grid-row: auto;
        grid-column: auto;
    }

    .timeline div {
        align-items: flex-start;
    }

    .admin-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        background-attachment: scroll;
    }

    /* ENVELOPE MOBILE */
    .envelope-wrap {
        max-width: 100%;
        padding: 20px 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .envelope {
        width: 100%;
        max-width: 340px;
        height: 380px;
        margin: 0 auto 30px;
    }

    .letter {
        width: calc(100% - 44px);
        left: 22px;
        right: auto;
        bottom: 92px;
        min-height: 315px;
        padding: 34px 22px;
        border-radius: 22px;
        transform: translateY(72px);
    }

    .envelope.open .letter {
        transform: translateY(-40px) scale(1.05);
    }

    .letter span {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .letter h1 {
        font-size: 58px;
        margin-bottom: 16px;
    }

    .letter h1 small {
        font-size: 38px;
        margin: 5px 0;
    }

    .letter p {
        font-size: 14px;
        line-height: 1.5;
    }

    .envelope-back,
    .envelope-left,
    .envelope-right,
    .envelope-bottom {
        height: 210px;
    }

    .envelope-back,
    .envelope-bottom {
        border-radius: 0 0 26px 26px;
    }

    .envelope-left {
        border-radius: 0 0 0 26px;
    }

    .envelope-right {
        border-radius: 0 0 26px 0;
    }

    .envelope-bottom::after {
        left: 26px;
        right: 26px;
        bottom: 18px;
    }

    .envelope::after {
        bottom: 7px;
        font-size: 20px;
    }

    .couple-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .couple-name span {
        display: block;
        margin: 8px 0;
    }
}

.map-card {
    width: 100%;
    max-width: 850px;
    margin: 25px auto 20px;
    overflow: hidden;
    border-radius: 28px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);

    border: 1px solid rgba(255, 255, 255, .6);
}

.map-card iframe {
    width: 100%;
    height: 340px;
    border: 0;
    display: block;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 14px 24px;

    border-radius: 14px;

    background: linear-gradient(135deg,
            #b9855d,
            #7c4a31);

    color: #fff;
    text-decoration: none;
    font-weight: 600;

    transition: .3s;
}

.map-link-btn:hover {
    transform: translateY(-2px);
}

@media(max-width:768px) {

    .map-card {
        border-radius: 20px;
        margin-top: 18px;
    }

    .map-card iframe {
        height: 240px;
    }

    .map-link-btn {
        width: 100%;
        max-width: 320px;
    }

}



/* Tanıtım KUDU */

.promo-popup {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(45, 32, 26, .55);
    backdrop-filter: blur(7px);
    z-index: 99999;
}

.promo-popup.active {
    display: flex;
}

.promo-popup-card {
    width: 100%;
    max-width: 480px;
    position: relative;
    text-align: center;
    background: #fff;
    border-radius: 28px;
    padding: 38px 30px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
    animation: promoShow .35s ease;
}

@keyframes promoShow {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.promo-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f0dfd2;
    color: #7c4a31;
    font-size: 26px;
    cursor: pointer;
}

.promo-icon {
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #c49b6a, #8b5e3c) !important;
}

.promo-popup-card h3 {
    color: #4b3225;
    font-size: 25px;
    margin-bottom: 12px;
}

.promo-popup-card p {
    color: #6f5c52;
    line-height: 1.6;
    margin-bottom: 24px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 24px;
    border-radius: 14px;
    background: linear-gradient(135deg, #c49b6a, #8b5e3c);
    color: white;
    text-decoration: none;
    font-weight: 700;
}

@media(max-width:600px) {
    .promo-popup-card {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .promo-popup-card h3 {
        font-size: 22px;
    }

    .promo-btn {
        width: 100%;
    }
}

/* Tanıtım KUDU */


/* RSVP ve albüm formları için KVKK checkbox tasarımı */
.kvkk-check-area{
    margin:14px 0 18px;
    display:flex;
    flex-direction:column;
    gap:9px;
}
.kvkk-check-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin:0;
    padding:0;
    color:#5f5360;
    font-size:.88rem;
    line-height:1.45;
}
.kvkk-check-item input{
    width:18px;
    height:18px;
    margin-top:2px;
    flex:0 0 18px;
    accent-color:#b76e79;
}
.kvkk-check-item a{
    color:#b76e79;
    font-weight:700;
    text-decoration:none;
}
.kvkk-check-item a:hover{text-decoration:underline;}
@media(max-width:600px){
    .kvkk-check-area{gap:8px;margin:12px 0 16px;}
    .kvkk-check-item{font-size:.82rem;}
}

/* Mobil KVKK / Aydınlatma checkbox düzeltmesi */
@media (max-width: 600px) {

    .kvkk-check-area {
        margin: 12px 0 18px !important;
        gap: 8px !important;
    }

    .kvkk-check-item {
        display: grid !important;
        grid-template-columns: 20px 1fr !important;
        gap: 8px !important;
        align-items: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .kvkk-check-item input {
        width: 17px !important;
        height: 17px !important;
        margin: 2px 0 0 0 !important;
    }

    .kvkk-check-item span {
        font-size: 0.73rem !important;
        line-height: 1.35 !important;
        font-weight: 600 !important;
        word-break: normal !important;
        overflow-wrap: anywhere !important;
    }

    .kvkk-check-item a {
        font-size: 0.73rem !important;
        line-height: 1.35 !important;
        font-weight: 800 !important;
    }

    .modal-card .kvkk-check-area {
        width: 100% !important;
    }

    .modal-card .kvkk-check-item span {
        max-width: 100% !important;
    }

    .modal-card button.main-btn.full {
        margin-top: 18px !important;
    }
}

@media (max-width: 600px) {
    .modal-card {
        max-height: 92vh !important;
        overflow-y: auto !important;
        padding-bottom: 24px !important;
    }
}
/* Demo listesine dönüş */
.demo-back {
    position: fixed;
    top: 17px;
    left: 17px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border: 1px solid rgba(201, 154, 74, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .84);
    color: #5d342b;
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 30px rgba(68, 50, 58, .12);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .03em;
}

@media (max-width: 600px) {
    .demo-back {
        top: 10px;
        left: 10px;
    }
}
