/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(145deg, #1a1a2e, #16213e, #0f3460);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

/* Card */
.card {
    background: linear-gradient(135deg, #f5f0e8, #e8dfd0);
    padding: 45px 35px 35px;
    max-width: 420px;
    width: 90%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 2px #c9a87c inset;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

/* Logo & Store Name */
.logo {
    margin-bottom: 10px;
}

.logo-icon {
    font-size: 48px;
    display: block;
}

.store-name {
    font-size: 28px;
    font-weight: 800;
    color: #2d1b0e;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 #d4a373;
}

.store-location {
    font-size: 14px;
    font-weight: 600;
    color: #7a4a2e;
    background: #d9c8b2;
    display: inline-block;
    padding: 3px 18px;
    border-radius: 30px;
    margin-top: 2px;
    letter-spacing: 1px;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #b8864b, #d4a373, #b8864b);
    margin: 12px auto 16px;
    border-radius: 10px;
}

/* Title */
.title {
    font-size: 24px;
    font-weight: 700;
    color: #2d1b0e;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 15px;
    color: #4d3522;
    margin-bottom: 18px;
    line-height: 1.5;
}

.subtitle strong {
    color: #a0522d;
    font-weight: 700;
}

/* Shoe Icons */
.shoe-icons {
    font-size: 32px;
    letter-spacing: 12px;
    margin-bottom: 22px;
    background: rgba(201, 168, 124, 0.2);
    padding: 10px 0;
    border-radius: 50px;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 15px 0;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.5px;
}

.btn-yes {
    background: linear-gradient(135deg, #2d7d46, #1e5e34);
    color: #fff;
    box-shadow: 0 6px 0 #0f3d21, 0 8px 18px rgba(0, 0, 0, 0.2);
    margin-bottom: 14px;
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 0 #0f3d21, 0 12px 28px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #359453, #256d3e);
}

.btn-yes:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #0f3d21;
}

.btn-no {
    background: #b0a090;
    color: #2d1b0e;
    box-shadow: 0 4px 0 #7a6a5a;
}

.btn-no:hover {
    background: #c0b0a0;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #7a6a5a;
}

.btn-no:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #7a6a5a;
}

/* Footer */
.footer-text {
    margin-top: 20px;
    font-size: 12px;
    color: #6a5540;
    line-height: 1.6;
    border-top: 1px dashed #c9a87c;
    padding-top: 14px;
    font-weight: 500;
}