/* open-sans-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/open-sans-v44-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../webfonts/open-sans-v44-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  /* open-sans-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../webfonts/open-sans-v44-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../webfonts/open-sans-v44-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }

  body{
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
  }


  :root {
    --primary-color: rgb(105, 110, 118);
    --secondary-color:rgba(105, 110, 118, 0.75);
    --bg-color: #ffffff;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}
h1{
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    font-style: normal !important;
    font-weight: 400 !important;
}
h2{
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    font-style: normal !important;
    font-weight: 400 !important;
    margin-bottom: 30px;
    padding-bottom: 15px;
}
p{
    color: var(--primary-color) !important;
}
p strong, strong{
    font-weight: 500 !important;
}
li{
    color: var(--primary-color) !important;
    font-size: 1.25rem;
    font-weight: 300;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-selector a {
    margin-left: 10px;
    text-decoration: none;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.language-selector a:hover {
    color: var(--primary-color);
}

.language-selector a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.header-section {
    position: relative;
    padding: 40px 0;
    background-color: var(--bg-color);
}

.category-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.category-item span{
    color:var(--primary-color) !important;
}

.category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-icon {
    width: 120px;
    height: 120px;
    margin-right: 15px;
    border-radius: 8px;
    object-fit: cover;
}

.marketplace-list {
    list-style: none;
    padding: 0;
}

.marketplace-list li {
    margin-bottom: 15px;
}

.marketplace-list a {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
}

.marketplace-list a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.marketplace-list a i {
    margin-left: 10px;
}

footer {
    border-top-color: var(--secondary-color) !important;
    border-top-style: solid;
    border-top-width: 1px;
    background: #ffffff;
    color: #ecf0f1;
    padding: 30px 0;
    margin-top: 60px;
}

footer nav a {
    color:var(--secondary-color) !important;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
}

footer nav a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}
footer .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}
footer p.copyright{
    font-size: 0.8rem !important;
}

.section-title {
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    font-style: normal !important;
    font-weight: 400 !important;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-color);
}