/* Theme Default Colors */
:root {
    --primary-color: #f1b601;
    --secondary-color: #333;
    --accent-color: #2acb35;
    --text-color: #555;
    --light-bg: #f8f9fa;
    --dark-bg: #333;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #ff6699;
    border-color: #ff6699;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Header theme */
.header_area {
    background-color: #fff;
}

/* Footer theme */
.footer_area {
    background-color: var(--dark-bg);
    color: #fff;
}

/* Section title theme */
.section_title h2 span {
    color: #ff6699;
}

/* Product theme */
.product_card:hover {
    border-color: #ff6699;
}