@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.header.scrolled {
    padding: 5px 15px;
}

.header.scrolled .logo {
    height: 30px;
}

.fa-house { 
    font-size: 18px;
}
.fa-house, .fa-shopping-cart {
    text-decoration: none;
    color: #858383;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
}
.logo {
    height: 40px;
    transition: all 0.3s ease;
}
.favorites-title {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.favorites-title h1 {
    font-size: 24px;
    color: #dd0a17;
}

.checkout-form {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.checkout-form h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #dd0a17;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.document-type {
    display: flex;
    margin-bottom: 10px;
}

.doc-type-btn {
    flex: 1;
    padding: 10px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.doc-type-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.doc-type-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.doc-type-btn.active {
    background-color: #dd0a17;
    color: #fff;
}

.payment-options {
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.payment-details {
    font-size: 12px;
    color: #858383;
    margin-left: 10px;
}

.total-amount {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 20px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #dd0a17;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

