/* Genel */
:root {
    --primary: #FFA500;
    --secondary: #DC143C;
    --dark: #232323;
    --gray: #4F4F4F;
    --light: #f8f9fa;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}
/* Preloader */
#preloader {
    background: #F5F5DC url('../img/windmill.gif') no-repeat center center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}
/* Header */
.site-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}
.logo img {
    max-height: 80px;
    width: auto;
}
.main-nav .navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 500;
    padding: 15px 20px;
}
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active {
    background: var(--gray);
    color: #FBD426;
}
.dropdown-menu {
    background: var(--gray);
    border: none;
    border-radius: 0;
}
.dropdown-item {
    color: var(--primary);
}
.dropdown-item:hover,
.dropdown-item.active {
    background: #000;
    color: #FBD426;
}
/* Sidebar */
.sidebar-menu {
    background: var(--gray);
    padding: 20px 0;
    border-radius: 5px;
}
.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: all 0.3s;
}
.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: linear-gradient(#E6E6FA 0 100%) left/100% no-repeat;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.sidebar-menu li a i {
    margin-right: 8px;
    width: 20px;
}
/* Social Floating */
.social-floating {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}
.social-floating .social-item {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
    right: -35px;
    transition: all 0.3s ease;
}
.social-floating .social-item:hover {
    right: 0;
    width: 85px;
    text-align: left;
    padding-left: 15px;
}
.social-floating .social-item i {
    margin-right: 10px;
}
.social-floating .social-item span {
    opacity: 0;
    transition: opacity 0.3s;
}
.social-floating .social-item:hover span {
    opacity: 1;
}
/* Footer */
.footer {
    background: var(--dark);
    color: #fff;
    padding-top: 50px;
    padding-bottom: 20px;
}
.footer a {
    color: #ddd;
}
.footer a:hover {
    color: var(--primary);
}
/* Product Card */
.product-card {
    background: rgba(119,119,136,0.75);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.product-card .card-title {
    color: #D3D3D3;
    font-weight: bold;
}
.product-card .btn {
    background: var(--secondary);
    color: #D3D3D3;
    border-radius: 20px;
}
/* Quality Card */
.quality-card {
    background: var(--primary);
    border: 15px solid #EDEFEB;
    text-align: center;
    transition: transform 0.3s;
}
.quality-card:hover {
    transform: scale(1.02);
}
.quality-card .card-header {
    background: transparent;
    border-bottom: 15px solid #EDEFEB;
}
.quality-card h3 {
    color: #212529;
    font-weight: bold;
    font-style: italic;
}
.quality-card .btn {
    background: var(--secondary);
    color: #fff;
    border-radius: 100px;
}
/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}
.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
    .main-nav .navbar-nav .nav-link {
        padding: 10px 20px;
    }
    .dropdown-menu {
        padding-left: 20px;
    }
    .social-floating .social-item {
        right: 0;
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}
/* Animations */
@keyframes slideDownIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}