body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    text-align: right; 
    padding: 0 100px 10px; 
}

nav ul {
    list-style-type: none;
    margin: 0; 
    padding: 0;
}

nav li {
    display: inline; 
    margin-left: 50px; 
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff5733;
}

.logo img {
    height: 30px; 
    padding-bottom: 15px;
}

.cart-items {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cart-item img {
    max-width: 100px;
    margin-right: 20px;
}

.item-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.price {
    font-weight: bold;
}

.item-actions {
    margin-left: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.product-image {
    max-width: 100px;
    margin-right: 20px;
}

.product-details {
    flex-grow: 1;
}

.remove-button {
    background-color: #d9534f;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.remove-button:hover {
    background-color: #c9302c;
}

.payment-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background-color: #f0f0f0;
}

.payment-options {
    flex: 1;
    margin-left: 50px;
}

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

.payment-option label {
    cursor: pointer;
    display: flex;
    align-items: center;
}

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

.payment-option img {
    width: 40px; 
    margin-right: 10px;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-left: 82%;
}

.cart-summary h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.cart-info {
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 10px;
}

.cart-info p {
    font-size: 14px;
    margin: 5px 0;
}

.cart-info span {
    font-weight: bold;
}

.checkout-button {
    padding: 10px 20px;
    background-color: #ff5733;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.checkout-button:hover {
    background-color: #333;
}

#paypal-button-container {
    margin-top: 20px; 
  }

.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.contact-info,
.social-links {
    flex: 1;
    margin: 0 20px; 
}

.contact-info h4,
.social-links h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold; 
    position: relative; 
    display: inline-block; 
}

.contact-info h4::after,
.social-links h4::after {
    content: '';
    position: absolute; 
    width: 100%; 
    height: 2px; 
    background-color: red;
    bottom: -5px; 
    left: 0; 
}

.contact-info p {
    margin: 0;
    line-height: 1.5;
}

.social-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-top: 5px; 
    font-size: 16px;
}

.social-links a i {
    margin-right: 5px; 
}

.social-links a:hover {
    text-decoration: underline;
}