/* Common styles for SGCE theme */

/* Import Montserrat font */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap'); */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, textarea, button, input, select, option {
    font-family: var(--sgce-font-family);
}

html, body {
    background: var(--sgce-light-bg);
    font-size: var(--sgce-font-size);
}


/* Global styles */
body {
    font-family: var(--sgce-font-family);
    font-size: var(--sgce-font-size);
    line-height: 1.6;
    color: #333;
}

/* Button styles */
button, .button {
    border-radius: var(--sgce-border-radius);
}

.sgce-btn {
    border: 1px solid var(--sgce-primary-color);
    /* border-radius: var(--sgce-border-radius); */
    font-size: var(--sgce-font-size);
    font-weight: 500;
    transition: all var(--sgce-transition) ease;
    cursor: pointer;
    /* padding: 0px 10px; */
}
.sgce-btn.active,
.sgce-btn-primary {
    background-color: var(--sgce-primary-color);
    color: white;
}

.sgce-btn.large {
    padding: 10px 20px;
}
.sgce-btn:hover {
    background-color: var(--sgce-primary-color);
    color: #fff;
}
.sgce-btn.hover-move-up:hover {
    transform: translateY(-2px);
}

.sgce-btn.accent:hover {
    background-color: var(--sgce-accent-color);
    transform: translateY(-2px);
}

/* Card styles */
.sgce-card {
    background: white;
    border-radius: var(--sgce-border-radius);
    border: 1px solid var(--sgce-border-light-color);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all var(--sgce-transition);
}

.sgce-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Avatar styles */
.sgce-avatar {
    width: var(--sgce-avatar);
    height: var(--sgce-avatar);
    border-radius: 50%;
    object-fit: cover;
}

.sgce-avatar-sm {
    width: var(--sgce-avatar-sm);
    height: var(--sgce-avatar-sm);
    border-radius: 50%;
    object-fit: cover;
}

/* Product thumbnail styles */
.sgce-product-thumb {
    width: var(--sgce-product-thumb);
    height: var(--sgce-product-thumb);
    border-radius: var(--sgce-border-radius);
    object-fit: cover;
}

.sgce-product-thumb-sm {
    width: var(--sgce-product-thumb-sm);
    height: var(--sgce-product-thumb-sm);
    border-radius: var(--sgce-border-radius);
    object-fit: cover;
}

/* Page Section title */
.section .section-title-container.sgce-page-section-title {}
.section .section-title-container.sgce-page-section-title .section-title {
    border-bottom: 0;
}
.section .section-title-container.sgce-page-section-title .section-title-main {
    background: var(--sgce-primary-color);
    color: #fff;
    padding: 5px 10px;
    /* border-radius: var(--sgce-border-radius); */
}
.section .sgce-button-filter-product-section {
    margin-top: 6px;
    gap: 6px;
}
.section .sgce-button-filter-product-section a {
    border: 0;
    min-height: auto;
    height: 30px;
    line-height: 26px;
}