/* Link External Font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    font-family: "Manrope", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ── CSS Variables ───────────────────────────────────────────────── */
:root {
    /* Brand */
    --brand: #222222;
    --brand-hover: #000000;
    --brand-soft: #E5F7F4;

    /* Text */
    --text-primary: #171717;
    --text-secondary: #737373;
    --text-white: #FFFFFF;

    /* Background */
    --bg-body: #FFFFFF;
    --bg-section: #FAFAFA;
    --bg-brand: #E5F7F4;

    /* Border */
    --border: #E5E5E5;
    --border-dark: #D4D4D4;

    /* Shadow */
    --shadow: rgba(0, 0, 0, 0.08);

    --font-ui: 'Inter', sans-serif;
    --font-brand: 'Playfair Display', serif;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, .09);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .13);
    --radius: 10px;
    --transition: 0.25s ease;
}

button {
    background: var(--brand);
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.4s;
}

button:hover {
    background: var(--brand-hover);
}

section {
    margin-top: 25px;
}

@media only screen and (min-width: 576px) {
    section {
        margin-top: 35px;
    }
}

.section_title {
    font-size: 25px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

@media only screen and (min-width:768px) {
    .section_title {
        font-size: 30px;
        margin-bottom: 20px;
    }
}
/* -----------------------------------------------------------------------
   Google Sign-In button
   ----------------------------------------------------------------------- */
.pickandpackbd-google-login-wrap {
    margin: 0 0 20px;
    width: 100%;
}

.pickandpackbd-google-login-btn {
    display: flex;
    justify-content: center;
    width: 100%;
}

.pickandpackbd-google-login-btn > div {
    width: 100% !important;
}

.pickandpackbd-google-login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-primary, #6b7280);
    font-size: 13px;
    margin: 16px 0;
}

.pickandpackbd-google-login-divider::before,
.pickandpackbd-google-login-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.pickandpackbd-google-login-divider span {
    padding: 0 12px;
}