/* Custom Fonts - End */

/* Main Style - Start */
body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Wix Madefor Text", sans-serif;
    scroll-behavior: smooth;
    font-weight: 300;
    font-size: 18px;
}

a, p {
    margin: 0;
    font-family: "Wix Madefor Text", sans-serif;
}


.font-sec {
    font-family: 'Garamond Regular';
}

.font-main {
    font-family: 'Garamond Medium Italic';
    font-style: italic;
}


/* Header - Start */
header {
    width: 100%;
    height: 100px;
    position: static !important;
    background-color: var(--white);
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: auto !important;
}

.header-main {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-lang {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

/* Logo visibility control */
.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

.header-menu {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

/* Menu Toggle Button */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-right: 20px;
}

.menu-toggle:hover {
    background-color: #f0f0f0;
}

.menu-toggle img {
    display: block;
    width: 50px;
    height: 59px;
}

/* Language Switcher Button */
.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 18px;
    font-family: 'Nexa Book', sans-serif;
    cursor: pointer;
    padding: 0;
    outline: none;
    margin-left: 30px;
}

.lang-switcher-text {
    font-weight: 400;
    letter-spacing: 1px;
}

.lang-switcher-arrow {
    font-size: 15px;
    margin-top: 2px;
    color: #b0b0b0;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -600px;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999999;
    overflow-y: auto;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: #f0f0f0;
}

.close-btn img {
    width: 46px;
    height: 46px;
    transition: transform 0.3s ease;
}

.close-btn:hover img {
    transform: rotate(90deg);
}

.sidebar-nav {
    padding: 20px 0 20px -20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sidebar-nav ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-nav li {
    margin: 0;
    width: 100%;
    text-align: center;
}

.sidebar-nav a {
    display: block;
    padding: 15px 30px;
    color: #333333;
    text-decoration: none;
    font-size: 25px;
    font-weight: 300;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-left: 3px solid transparent;
    text-align: center;
    width: 100%;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999998;
    opacity: 0;
    visibility: hidden;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}






@media (max-width: 767.98px) {
    .footer-lang {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        margin-left: 20px;
    }

    .header-lang {
        display: none;
    }

    .header-main {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header-logo {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .header-menu {
        justify-content: flex-end;
        align-items: flex-end;
    }
    .footer-lang {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
    }

        /* Mobile Sidebar Navigation Styling */
    .sidebar-nav {
        padding: 20px 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sidebar-nav ul {
        text-align: center;
        justify-content: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar-nav li {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .sidebar-nav a {
        text-align: center;
        justify-content: center;
        padding: 15px 20px;
        font-size: 20px;
        width: 100%;
    }
}

/* Header - End */

/* Header Nav Only - Start */
.header-nav-only {
    width: 100%;
    height: 100px;
    position: fixed !important;
    background-color: transparent;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    z-index: 999999 !important;
}

.header-main-nav-only {
    width: 100%;
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.header-main-nav-only .header-menu {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .header-nav-only {
        height: 80px;
    }

    .header-main-nav-only {
        padding: 15px 0px;
    }
}
/* Header Nav Only - End */
/* Footer Styles */
.main-footer {
    background-color: var(--dtc1);
    color: var(--white);
    padding: 60px 20px 30px 20px;
    margin-top: 80px;
}

.footer-container {
    width: 100%;
    padding: 0 20px;
}

.footer-logo-section {
    text-align: start;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    max-height: 60px;
    width: auto;
}

/* Footer logo visibility control */
.desktop-footer-logo {
    display: block;
}

.mobile-footer-logo {
    display: none;
}

/* Invert favicon to white for footer */
.mobile-footer-logo {
    filter: invert(1) brightness(1);
}

/* Footer language switcher styling */
.footer-lang .lang-switcher-btn {
    color: var(--white);
}

.footer-lang .lang-switcher-text {
    color: var(--white);
}

.footer-lang .lang-switcher-btn i {
    color: var(--white);
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: var(--white);
    opacity: 0.3;
    margin-bottom: 40px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-info p,
.footer-address p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.footer-contact-info a,
.footer-menu a,
.footer-socials a,
.footer-legal a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-info a:hover,
.footer-menu a:hover,
.footer-socials a:hover,
.footer-legal a:hover {
    opacity: 0.7;
}

.footer-menu,
.footer-socials,
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.footer-socials li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-menu a,
.footer-socials a,
.footer-legal a {
    font-size: 18px;
    line-height: 1.5;
}

.footer-copyright {
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid var(--black);
}

.footer-copyright p {
    font-size: 12px;
    color: var(--white);
    margin: 0;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .main-footer {
        padding: 40px 0 20px 0;
    }

    .footer-logo-section {
        margin-bottom: 30px;
    }

    .footer-separator {
        margin-bottom: 30px;
    }

    .footer-content-grid {
        margin-bottom: 30px;
    }

    .desktop-footer-logo {
        display: none;
    }

    .mobile-footer-logo {
        display: block;
    }
}


/* General CSS - Start */
.container {
    max-width: 1620px;
    margin: 0 auto;
}
.container-product {
    max-width: 1227px;
    margin: 0 auto;
}

.container-old {
    max-width: 1300px;
    margin: 0 auto;
}

.page-title {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 0px;
    padding: 20px 50px 40px 50px;
}

.page-title h1 {
    font-size: 55px;
    font-weight: 400;
    color: var(--black);
}

.page-title h3 {
    font-size: 60px;
    font-weight: 500;
    color: var(--black);
    margin: 0px;
}

.page-title p {
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
}

.text-half-ctn {
    max-width: 700px;
}


@media (max-width: 767.98px) {
    .page-title {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 0px;
        padding: 20px 15px 20px 15px;
    }

    .page-title h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .page-title h3 {
        font-size: 45px;
        line-height: 1.2;
    }

    .page-title p {
        font-size: 18px;
        line-height: 1.4;
    }
}

/* General CSS - END */
