/* Shared styles for all gift theme pages */
:root {
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gift-card {
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 95vw;
    height: 95vh;
    color: var(--text-dark);
    position: relative;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

#amount-container {
    position: absolute;
    top: 14vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#riyal-svg {
    fill: var(--text-dark);
    width: 50px;
    height: 90px;
}

.details-container {
    position: absolute;
    top: 42vh;
    left: 20px;
    right: 20px;
    bottom: 10vh;
    overflow-y: auto;
    padding-right: 15px;
}

.info-container {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-container .name {
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 0.5em;
}

#message-container {
    font-size: 1.1rem;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}

#message-container p {
    margin: 0;
}

.logo-container {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.rekaz-logo {
    width: 70px;
    height: auto;
}

.logo-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}
