body{
    font-family: 'Poppins', sans-serif;
}
:root{
    --primary-color: #c78d00;
}
.thm-bg-color{
    background: var(--primary-color);
}
.thm-text-color{
    color: var(--primary-color);
}
.text-white{
    color: white;
}
.alert{
    position: fixed !important;
    right: 20px !important;
    top: 20px !important;
    z-index: 5000;
}
.thm-btn{
    font-size: 13px;
    background: white;
    color: black;
    transition: all 0.4s ease;
    box-shadow: 0px 0px 6px #3f3f3f3d;
}
.thm-login-btn{
    font-size: 13px;
    background: white;
    color: black;
    transition: all 0.4s ease;
}
.thm-login-btn:hover{
    background: black;
    color: white;
}
.thm-btn:hover{
    background: black;
    color: white;
}
.login-form{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 48px;
    border-radius: 24px;
    width: max-content;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}
.login-form h2{
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}
.login-form input{
    border: 1px solid white;
}
.login-form label{
    color: white;
}
.image-box {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.image-box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.image-box h2 {
    position: relative;
    color: white;
    font-size: 2rem;
    z-index: 2;
    transition: 0.3s;
}

.image-box:hover h2 {
    transform: scale(1.1);
}
.d-none { display: none; }
.product-card {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: auto;
    transition: transform 2.5s ease-in-out;
}

.product-card:hover img {
    transform: translateY(calc(250px - 100%));
}
.product-number{
    background: red;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.product-content{
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.product-content p{
    margin: 0;
}
.product-content .product-number{
    margin-right: 6px;
}
.website-link{
    background: #c78d00;
    color: white;
    padding: 12px;
    border-radius: 0px 0px 0px 12px;
    text-align: center;
    font-size: 13px;
    transition: all 0.4s ease;
}
.website-link-full{
    background: #c78d00;
    color: white;
    padding: 12px;
    border-radius: 0px 0px 12px 12px;
    text-align: center;
    font-size: 13px;
    transition: all 0.4s ease;
}
.website-link-full:hover{
    background: black;
    text-decoration: none;
    color: white;
}
.website-link:hover{
    background: black;
    text-decoration: none;
    color: white;
}
.corporate-link{
    background: red;
    color: white;
    padding: 10px;
    border-radius: 0px 0px 12px 0px;
    text-align: center;
    font-size: 13px;
    transition: all 0.4s ease;
}
.corporate-link-full{
    background: red;
    color: white;
    padding: 10px;
    border-radius: 0px 0px 12px 12px;
    text-align: center;
    font-size: 13px;
    transition: all 0.4s ease;
}
.corporate-link-full:hover{
    background: black;
    text-decoration: none;
    color: white;
}
.corporate-link:hover{
    background: black;
    text-decoration: none;
    color: white;
}
.product-linkbox{
    display: flex;
}
.category-link{
    color: black;
    font-size: 13px;
    padding: 6px 8px;
    border-radius: .25rem;
    border: 1px solid black;
    transition: all 0.4s ease;
    display: inline-grid;
	margin-bottom: 8px;
}
.category-link:hover{
    color: black;
    text-decoration: none;
}
.category-link.active{
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: white;
}
.thm-btn{
    margin-top: 20px !important;
    color: white;
    background: var(--primary-color);
}
#toggleFilters{
    font-size: 13px;
    margin-top: 20px !important;
    color: white;
    background: var(--primary-color);
}
#toggleFilters:hover{
    background: black;
    color: white;
}
#filterByDate{
    font-size: 13px;
    background: var(--primary-color);
    color: white;
}
#filterByDate:hover{
    background: black;
    color: white;
}
label{
    font-size: 13px;
}
.box-list{
    margin-bottom: 60px !important;
}
input{
    font-size: 13px !important;
}

.category-links{
    border: 1px solid var(--primary-color);
    padding: 24px;
    border-radius: 6px;
    position: relative;
}

.category-links .category-title{
    position: absolute;
    top: -20px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    padding: 4px 8px;
}

.fix-logo{
    position: fixed;
    top: 50%;
    right: 0px;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.fix-logoleft{
    position: fixed;
    top: 50%;
    left: 200px;
    transform: translate(-50%, -50%);
    z-index: -1;
}
@media only screen and (max-width: 600px) {
    .fix-logo{
        top: 40%;
		opacity: 0.2;
    }
    .fix-logoleft{
        top: 60%;
		opacity: 0.2;
    }
  }
.main-a h2{
color: #ffffff;
    padding: 12px 48px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    background: #0000007a;
}
.main-a:hover{
	text-decoration: none;
}