/* General styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

/* Product styles */
.product-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.product {
    margin-bottom: 30px;
}

.product h2 {
    margin-top: 0;
    color: #333;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #0070c9;
}

.description {
    color: #666;
}

/* Payment container */
.payment-container {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Apple Pay button */
.apple-pay-button {
    background-color: black;
    color: white;
    height: 50px;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
    border: none;
    position: relative;
    overflow: hidden;
}

.apple-pay-button::before {
    content: "Apple Pay";
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Safari-specific styles will be applied automatically by the browser */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .apple-pay-button {
        -webkit-appearance: -apple-pay-button;
        -apple-pay-button-type: buy;
        -apple-pay-button-style: black;
    }
    
    .apple-pay-button::before {
        content: "";
    }
}

/* Payment status */
.payment-status {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-height: 20px;
    font-weight: 500;
}

/* Adyen info section */
.adyen-info {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.adyen-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.adyen-info strong {
    color: #0abf53;  /* Adyen brand color */
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .product-container {
        padding: 15px;
    }
    
    .adyen-info {
        margin-top: 20px;
        padding: 10px;
    }
}
