:root{
    --primary_color: #b4004e;
    --second: #1b0b16;
    --third: gold;
}

.random_btn{
    background-color: var(--primary_color);
    padding: 20px 20px;
    border: 3px solid var(--second);
    border-radius: 20px;
    transition: 0.5s;
}

.random_btn:hover{
    border: 3px solid var(--third);
}

@media (max-width: 768px) {
    .random_btn{
        padding: 10px 20px;

    }

}

.no-agents {
    text-align: center;
    font-size: 18px;
    color: gray;
    padding: 20px;
}


/* =========================profile */


    .profile-section {
        max-width: 600px;
        margin: 20px auto;
        padding: 20px;
        background: var(--second);
        border-radius: 8px;
    }
    .profile-header {
        margin-bottom: 15px;
    }
    .profile-title {
        font-size: 20px;
        font-weight: bold;
        color: #fff;
    }
    .profile-description {
        font-size: 14px;
        color: #fff;
    }
    .profile-form-group {
        margin-bottom: 15px;
    }
    .profile-label {
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        display: block;
        margin-bottom: 5px;
    }
    .profile-input {
        width: 100%;
        padding: 8px;
        background-color: var(--second);
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .profile-error {
        font-size: 2rem;
        color: white;
        text-shadow: 0px 0px 5px red;
        margin-top: 5px;
    }
    .profile-success {
        color: white;
        font-size: 1.2rem;
        text-shadow: 0px 0px 5px green;
        margin-top: 5px;
    }
    .profile-preview {
        margin-top: 10px;
        border-radius: 5px;
    }
    .profile-form-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .profile-save-button {
        background: var(--primary_color);
        color: #fff;
        padding: 8px 16px;
        border: 2px solid #000;
        border-radius: 5px;
        cursor: pointer;
    }
    .profile-save-button:hover {
        border: 2px solid var(--third);

    }
    .profile-resend-button {
        background: none;
        border: none;
        color: #007bff;
        cursor: pointer;
        text-decoration: underline;
    }
    .profile-resend-button:hover {
        color: #0056b3;
    }


/* body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    text-align: center;
} */

.hero_user {
    background: var(--primary_color);
    color: white;
    padding: 50px 20px;
    border-radius: 10px;
}

.random_btn:hover {
    border-color: var(--third);
}
.how-it-works, .meet-agents, .pricing, .testimonials {
    margin: 50px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.agents-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.agent-card {
    background: var(--second);
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.card {
    background: var(--third);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
}


/* ============================= */

.section_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.shop-container {
    max-width: 1200px;
    margin: auto;
}

.shop-title {
    
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    color: black;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-name {
    font-size: 1.2rem;
    margin: 10px 0;
}

.product-price {
    font-size: 1.1rem;
    color: #e44d26;
    font-weight: bold;
}

.buy-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #e44d26;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #c0392b;
}

.buy{
    color: white;
    text-shadow: 0px 0px 5px black;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* ======================= */