@font-face {
    font-family: 'IRANYekanX';
    src: url('../fonts/IRANYekanXVF.woff2') format('woff2'),
        url('../fonts/IRANYekanXVF.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'IRANYekanX', 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #070707;
    line-height: 1.8;
    overflow-x: hidden;
}

header {
    z-index: 1050;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

header .logo {
    height: 50px;
}

@media screen and (max-width: 992px) {
    header .logo {
        height: 45px;
    }
}

.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.nav-link {
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 1rem;
}

.navbar-nav .nav-link:hover {
    color: #acacac !important;
}

.shop-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #ffffff !important;
    text-decoration: none;
}

.search-trigger-desktop {
    font-size: 1.2rem;
    cursor: pointer;
}


footer {
    background-color: #000;
    padding: 60px 0 20px;
}

.footer-links h5 {
    color: #B69A5E;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    color: #B69A5E;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #070707;
}

.footer-bottom {
    border-top: 1px solid #B69A5E;
    padding: 40px 0;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #B69A5E;
}

.dropdown-menu {
    text-align: right;
    left: unset;
}

.dropdown-toggle::after {
    margin-right: 10px;
    vertical-align: .2em;
}

.dropdown-item:active,
.dropdown-item.active {
    background-color: transparent !important;
    color: inherit !important;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.search-container {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    width: 90%;
    max-width: 750px;
    transition: transform 0.4s ease;
}

.search-overlay.active .search-container {
    transform: translateX(-50%) translateY(0);
}

.search-form {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.search-input::placeholder {
    color: #888;
}

.search-submit {
    background-color: #f5f5f5;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background-color: #e0e0e0;
}

.search-submit i {
    color: #666;
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        border-radius: 8px;
        margin-top: 10px;
        padding: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

.link-gold {
    color: #B69A5E;
}