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

.psp-button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.psp-button {
    font-family: Aurel, Verdana, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #b45c22;
    border-style: none;
    border-width: 0;
    background-clip: border-box;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: #b45c22;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.psp-button:hover {
    background-color: #a34f1a;
}

.psp-refresh-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background-color: #b45c22;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.psp-refresh-icon:hover {
    background-color: #a34f1a;
}

.psp-refresh-icon svg {
    width: 20px;
    height: 20px;
}

.psp-link {
    display: block;
    color: #b45c22;
    text-decoration: none;
    margin: 10px 0;
    font-size: 14px;
    font-family: Aurel, Verdana, Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.psp-link:hover {
    text-decoration: underline;
}

.psp-columns {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 20px;
}

.psp-column {
    flex: 1;
    padding: 20px;
    background-color: transparent;
    border: 1px solid #D9D7CF;
    border-radius: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.psp-column h3 {
    margin-top: 0;
    color: #333;
    text-align: left;
}

.psp-product {
    margin-top: 15px;
}

.psp-product img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}

.psp-product h4 {
    margin: 10px 0;
    color: #333;
    text-align: left;
}

.psp-product .price {
    font-size: 18px;
    color: #4CAF50;
    font-weight: bold;
}

.psp-short-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 10px 0;
    text-align: left;
}

.psp-dietary {
    font-size: 12px;
    color: #888;
    margin: 10px 0 0 0;
    text-align: left;
}

.psp-dietary strong {
    color: #333;
} 