/* ItaliaFeet — clone-style advertorial landing */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.55;
    font-size: 15px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

/* ---------- Top promo strip ---------- */
.promo-strip {
    background: #c0392b;
    color: #fff;
    font-size: 12.5px;
    text-align: center;
    padding: 7px 12px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ---------- Header ---------- */
.site-header {
    border-bottom: 1px solid #ececec;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    max-width: 1180px;
    margin: 0 auto;
}
.logo {
    /* inherits body font-family — keeps the brand consistent with page voice */
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
    color: #1d3557;
    line-height: 1;
}
.logo > span:last-child { /* the brand text */
    font-weight: 500;
    letter-spacing: 0.2px;
}
.logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #1d3557;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
    position: relative;
}
.cart-link svg { width: 22px; height: 22px; }
.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #c0392b;
    color: #fff;
    font-size: 11px;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* ---------- Product layout ---------- */
.product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 40px;
    padding: 28px 16px 40px;
    max-width: 1180px;
    margin: 0 auto;
}
@media (max-width: 880px) {
    .product { grid-template-columns: 1fr; gap: 16px; padding: 14px 12px 24px; }
}

/* Gallery */
.gallery { position: relative; }
.gallery-main {
    background: #f6f7f8;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}
.gallery-main img.active { display: block; }
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 18px;
    color: #222;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.gallery-nav.prev { left: 8px; }
.gallery-nav.next { right: 8px; }
.gallery-counter {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 12px;
}
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 6px;
    margin-top: 8px;
}
.gallery-thumbs img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}
.gallery-thumbs img.active { border-color: #1d3557; }
@media (max-width: 600px) {
    .gallery-thumbs { grid-template-columns: repeat(6, 1fr); }
}

/* Buy box */
.buy-box h1 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}
.breadcrumbs {
    color: #888;
    font-size: 12px;
    margin-bottom: 8px;
}
.breadcrumbs a { color: #888; }
.social-proof {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff7e6;
    border: 1px solid #ffe1a3;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin: 10px 0;
}
.social-proof .row { display: flex; gap: 8px; align-items: center; }
.social-proof .row strong { color: #c0392b; }
.bullets {
    margin: 12px 0;
    padding: 0;
    list-style: none;
    font-size: 13.5px;
    color: #2b2b2b;
}
.bullets li {
    padding: 2px 0 2px 22px;
    position: relative;
}
.bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: 800;
}

.price-row {
    margin: 14px 0 6px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.price-now { font-size: 28px; font-weight: 800; color: #c0392b; }
.price-old { font-size: 16px; color: #999; text-decoration: line-through; }
.price-save {
    background: #c0392b;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}
.tax-note { font-size: 12px; color: #555; margin-bottom: 8px; }

.countdown {
    background: #fef2f2;
    border: 1px dashed #c0392b;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 8px 0 14px;
}
.countdown .label { font-size: 13px; color: #c0392b; font-weight: 600; }
.countdown .timer {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    font-size: 18px;
    color: #c0392b;
}

.option-group { margin: 14px 0; }
.option-group .option-label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
}
.option-group .option-label .selected { color: #555; font-weight: 400; margin-left: 4px; }

.colors { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    position: relative;
}
.color-swatch.active { border-color: #1d3557; }
.color-swatch[data-color="marrone"] { background: #6e3a1f; }
.color-swatch[data-color="nero"] { background: #1a1a1a; }
.color-swatch[data-color="grigio"] { background: #8a8d91; }

.sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.size-pill {
    min-width: 44px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    background: #fff;
    user-select: none;
}
.size-pill.active {
    border-color: #1d3557;
    background: #1d3557;
    color: #fff;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
}
.qty-row label { font-weight: 600; font-size: 13px; }
.qty-control { display: inline-flex; border: 1px solid #ccc; border-radius: 6px; overflow: hidden; }
.qty-control button {
    width: 36px; height: 36px;
    border: 0; background: #f3f3f3; cursor: pointer; font-size: 16px;
}
.qty-control input {
    width: 44px; height: 36px; text-align: center; border: 0; border-left: 1px solid #ccc; border-right: 1px solid #ccc; font-size: 14px;
    -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.stock-line { font-size: 13px; color: #c0392b; font-weight: 600; margin: 4px 0 12px; }

.btn-buy {
    width: 100%;
    background: #c0392b;
    color: #fff;
    border: 0;
    padding: 16px 18px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.25);
    transition: transform 0.06s, background 0.15s;
}
.btn-buy:hover { background: #a02b1f; }
.btn-buy:active { transform: scale(0.99); }

.gift-box {
    margin-top: 14px;
    background: #fff8e1;
    border: 1px solid #ffd54f;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13.5px;
}
.gift-box strong { color: #b8860b; }

/* ---------- Long-form sections ---------- */
.longform { max-width: 980px; margin: 0 auto; padding: 16px 16px 40px; font-size: 15px; }
.longform h2 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; color: #1d3557; }
.longform h3 { font-size: 18px; font-weight: 700; margin: 22px 0 10px; color: #1d3557; }
.longform p { margin: 10px 0; }
.longform ul.check { list-style: none; padding: 0; }
.longform ul.check li {
    padding: 4px 0 4px 28px;
    position: relative;
}
.longform ul.check li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 2px;
}
.longform img { border-radius: 10px; margin: 12px 0; }
.longform .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 720px) { .longform .two-col { grid-template-columns: 1fr; } }

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 26px 0;
}
@media (max-width: 720px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }
.trust-card {
    background: #f6f8fa;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-size: 13px;
}
.trust-card .icon { font-size: 26px; }
.trust-card .title { font-weight: 700; margin: 6px 0 4px; }

/* Reviews */
.reviews { max-width: 980px; margin: 0 auto; padding: 24px 16px; }
.reviews h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #1d3557; }
.rating-summary { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.stars { color: #f5b50a; letter-spacing: 1px; }
.rating-num { font-weight: 700; }
.review-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .review-list { grid-template-columns: 1fr; } }
.review {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 12px;
}
.review img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}
.review .who { font-weight: 700; font-size: 13.5px; }
.review .date { color: #888; font-size: 12px; margin-left: 4px; }
.review p { font-size: 13.5px; margin: 6px 0 0; }

/* ---------- Footer ---------- */
.site-footer {
    background: #f7f8fa;
    border-top: 1px solid #ececec;
    padding: 28px 16px 16px;
    margin-top: 30px;
    font-size: 13.5px;
    color: #444;
}
.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-grid h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1d3557;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { padding: 3px 0; }
.footer-grid a:hover { color: #1d3557; text-decoration: underline; }
.footer-bottom {
    max-width: 1180px;
    margin: 18px auto 0;
    border-top: 1px solid #e3e6ea;
    padding-top: 12px;
    font-size: 12px;
    color: #777;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

/* Sticky mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 8px 12px;
    z-index: 60;
    display: none;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
}
.sticky-cta button {
    width: 100%;
    background: #c0392b;
    color: #fff;
    border: 0;
    padding: 14px;
    font-weight: 700;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}
@media (max-width: 880px) { .sticky-cta { display: block; } body { padding-bottom: 72px; } }

/* Feature blocks (replace text-overlay infographics) */
.feature-block {
    display: flex;
    gap: 16px;
    background: #f6f8fa;
    border-left: 4px solid #2a9d8f;
    padding: 18px 18px 18px 16px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
}
.feature-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}
.feature-body { flex: 1; }
.feature-body h3 { margin: 0 0 6px; }
.feature-body p { margin: 6px 0; }

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 20px 0;
}
@media (max-width: 600px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 10px;
    padding: 16px;
    position: relative;
}
.tech-num {
    font-size: 24px;
    font-weight: 800;
    color: #2a9d8f;
    line-height: 1;
}
.tech-title {
    font-weight: 700;
    margin: 6px 0 4px;
    color: #1d3557;
    font-size: 15px;
}
.tech-card p { font-size: 13.5px; margin: 4px 0 0; color: #444; }

/* Checkout page */
.checkout-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}
.checkout-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: start;
}
@media (max-width: 880px) { .checkout-grid { grid-template-columns: 1fr; gap: 18px; } }

.checkout-section {
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
}
.checkout-section h2 {
    font-size: 16px;
    color: #1d3557;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkout-section h2 .step-num {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #1d3557;
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.field {
    margin-bottom: 12px;
    position: relative;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}
.field label .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: #1d3557;
}
.field.has-error input,
.field.has-error select {
    border-color: #c0392b;
    background: #fff5f5;
}
.field-error {
    color: #c0392b;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}
.field.has-error .field-error { display: block; }

/* Payment method tabs */
.pm-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
@media (max-width: 540px) { .pm-tabs { grid-template-columns: 1fr; } }

.pm-tab {
    background: #fff;
    border: 2px solid #e6e8eb;
    border-radius: 8px;
    padding: 12px 10px;
    cursor: pointer;
    font: inherit;
    color: #444;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
    transition: border-color 0.15s, background 0.15s;
}
.pm-tab:hover { border-color: #b8c0c8; }
.pm-tab.active {
    border-color: #1d3557;
    background: #f4f7fb;
    box-shadow: 0 1px 0 #1d3557 inset;
}
.pm-tab-icon { color: #1d3557; }
.pm-tab-label { font-weight: 600; font-size: 13.5px; }
.pm-tab-brands { display: flex; gap: 4px; margin-top: 2px; }

.brand-badge {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.brand-badge.visa { background: #1a1f71; }
.brand-badge.mc { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); }
.brand-badge.amex { background: #2e77bb; }
.brand-badge.maestro { background: #00529c; }
.brand-badge.pci { background: #2a9d8f; }
.brand-badge.discover { background: #ff6000; }

.pm-panel { display: none; }
.pm-panel.active { display: block; }

.pm-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #2a9d8f;
    background: #f0faf8;
    border: 1px solid #cce8e4;
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 12px;
}

.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 60px; }
.card-brand {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 4px;
    color: #fff;
    background: #ccc;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    display: none;
}
.card-brand[data-brand="visa"] { background: #1a1f71; display: inline-block; }
.card-brand[data-brand="mastercard"] { background: linear-gradient(90deg, #eb001b 50%, #f79e1b 50%); display: inline-block; }
.card-brand[data-brand="amex"] { background: #2e77bb; display: inline-block; }
.card-brand[data-brand="maestro"] { background: #00529c; display: inline-block; }
.card-brand[data-brand="discover"] { background: #ff6000; display: inline-block; }

.pm-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.stripe-mount {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    background: #fff;
    margin-bottom: 12px;
    min-height: 40px;
}

.paypal-placeholder {
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    background: #fafbfc;
}
.paypal-fake-btn {
    background: #ffc439;
    color: #003087;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}
.psp-note {
    margin: 10px 0 0;
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.payment-method {
    border: 2px solid #2a9d8f;
    background: #f0faf8;
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.payment-method .pm-icon {
    width: 40px;
    height: 28px;
    background: #2a9d8f;
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}
.payment-method strong { display: block; }
.payment-method small { color: #555; font-size: 12.5px; }

.order-summary {
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 10px;
    padding: 18px;
    position: sticky;
    top: 80px;
}
.order-summary h2 {
    font-size: 16px;
    color: #1d3557;
    margin: 0 0 12px;
}
.order-line {
    display: flex;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}
.order-line img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}
.order-line .item-info { flex: 1; font-size: 13px; }
.order-line .item-name { font-weight: 600; }
.order-line .item-meta { color: #666; font-size: 12px; }
.order-line .item-price { font-weight: 700; }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
}
.summary-row.total {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 8px;
    font-size: 17px;
    font-weight: 800;
    color: #c0392b;
}
.btn-place-order {
    width: 100%;
    background: #c0392b;
    color: #fff;
    border: 0;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 14px;
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.25);
}
.btn-place-order:hover { background: #a02b1f; }
.btn-place-order:disabled { background: #999; cursor: not-allowed; box-shadow: none; }

.trust-mini {
    display: flex;
    justify-content: space-around;
    margin-top: 14px;
    font-size: 11.5px;
    color: #555;
    flex-wrap: wrap;
    gap: 6px;
}
.trust-mini span { display: inline-flex; align-items: center; gap: 4px; }

/* Thank-you page */
.thanks-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 16px 60px;
    text-align: center;
}
.thanks-check {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: #2a9d8f;
    color: #fff;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}
.thanks-wrap h1 {
    font-size: 28px;
    color: #1d3557;
    margin: 0 0 8px;
}
.thanks-wrap .lead {
    color: #555;
    font-size: 16px;
    margin: 0 0 24px;
}
.order-card {
    background: #fff;
    border: 1px solid #e6e8eb;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin: 0 auto 20px;
    max-width: 540px;
}
.order-card h3 {
    font-size: 15px;
    color: #1d3557;
    margin: 0 0 10px;
}
.order-card .kv {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 14px;
}
.order-card .kv .k { color: #666; }
.order-card .kv .v { font-weight: 600; }

.thanks-steps {
    text-align: left;
    background: #f6f8fa;
    border-radius: 10px;
    padding: 18px;
    max-width: 540px;
    margin: 0 auto 20px;
}
.thanks-steps h3 { font-size: 15px; color: #1d3557; margin: 0 0 10px; }
.thanks-steps ol { padding-left: 22px; margin: 0; font-size: 14px; line-height: 1.7; }

/* Policy pages */
.policy-page { max-width: 820px; margin: 0 auto; padding: 28px 16px 40px; }
.policy-page h1 { font-size: 26px; color: #1d3557; margin: 0 0 16px; }
.policy-page h2 { font-size: 18px; color: #1d3557; margin: 22px 0 8px; }
.policy-page p, .policy-page li { font-size: 14.5px; line-height: 1.7; color: #333; }
.policy-page ul { padding-left: 22px; }
.policy-page a { color: #1d3557; text-decoration: underline; }

/* Helpers */
.text-center { text-align: center; }
.hidden { display: none !important; }
