/* Retailpedia Custom Styles */
/* Tailwind is loaded via CDN in the HTML */

:root {
    --primary-color: #4b0082;
    /* Indigo/Violet */
    --secondary-color: #ff4500;
    /* Orange Vif */
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span,
a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}