/* ===== INFO PAGES (about, warranty, conditions, delivery, booking, report) ===== */

/* Hero banner */
.info-hero {
    background: linear-gradient(135deg, #28d8d8 0%, #625AFA 100%);
    padding: 28px 20px;
    margin-bottom: 0;
}
.info-hero h1 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* Page wrapper */
.info-page-wrap {
    background: #fff;
    border-radius: 0 0 16px 16px;
    margin-bottom: 16px;
}

/* Sidebar nav */
.info-sidebar {
    padding: 20px 16px 8px;
    border-bottom: 1px solid #f0f0f5;
}
.info-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.info-sidebar ul li a {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    background: #f0f0f5;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.info-sidebar ul li a:hover,
.info-sidebar ul li a.active {
    background: #625AFA;
    color: #fff;
}

/* Content area */
.info-content {
    padding: 20px 16px 28px;
    font-size: 14px;
    line-height: 1.75;
    color: #444;
}
.info-content p {
    margin-bottom: 10px;
}

/* Delivery price section */
.delivery-selects {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 18px 0;
}
.delivery-selects label span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #625AFA;
    margin-bottom: 6px;
}
.delivery-selects select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid #e0e0ef;
    font-size: 14px;
    color: #444;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23625AFA' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}
.delivery-selects select:focus {
    outline: none;
    border-color: #625AFA;
}
.delivery-price-result {
    font-size: 16px;
    font-weight: 700;
    color: #e74c3c;
    margin-top: 4px;
}

/* Report form */
.report-form-wrap label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #625AFA;
    margin-bottom: 6px;
    margin-top: 16px;
}
.report-form-wrap input[type="text"],
.report-form-wrap textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid #e0e0ef;
    font-size: 14px;
    color: #444;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.report-form-wrap input[type="text"]:focus,
.report-form-wrap textarea:focus {
    outline: none;
    border-color: #625AFA;
}
.report-form-wrap textarea {
    height: 150px;
    resize: vertical;
}
.report-submit-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #625AFA, #28d8d8);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.report-submit-btn:active {
    opacity: 0.85;
}