@import url("css/dark.css");
*{
    margin: 0;
    box-sizing: border-box;
}
header a{
    text-decoration: none;
}
header{
    background-color: var(--md-sys-color-on-tertiary-container);
    direction: rtl;
    padding: 15px;


}
header li{
    color: var(--md-sys-color-tertiary-container);
    list-style: none;
    margin: 10px;
    display: inline;
    
}

body{
    background-color: var(--md-sys-color-background);
    color: var(--md-sys-color-on-background);
    direction: rtl;
}

.card{
    margin: 40px;
    max-width: 800px;
    padding: 24px;
    border-radius: 24px;
    background-color: var(--md-sys-color-surface-container);
    color: var(--md-sys-color-on-surface);
}
footer{
    direction: ltr;
    background-color: var(--md-sys-color-on-primary-fixed-variant);
}
footer span{
    color: var(--md-sys-color-secondary-fixed);
    display: inline;
    margin: 5px;
}
small{
    color: var(--md-sys-color-tertiary-container);

}

.donate-box {
    width: 90%;
    max-width: 420px;
    margin: 40px auto;
    padding: 20px;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    background-color: #111;
    color: #eaeaea;
    font-family: sans-serif;
}

.donate-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.donate-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdbdbd;
}

.donate-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.donate-actions button {
    background-color: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 13px;
}

.donate-actions button:hover {
    border-color: #6cf;
    color: #6cf;
}







.products {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    color: #eaeaea;
    font-family: sans-serif;
}

.products h2 {
    margin-bottom: 20px;
    font-size: 22px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.product-card {
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    padding: 20px;
    background-color: #111;
    margin-bottom: 20px;
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.product-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdbdbd;
    }

.product-meta {
    margin-top: 12px;
    font-size: 13px;
    color: #8f8f8f;
    }

.product-meta span {
    margin-right: 10px;
    }