/* =========================================================
   SWEET GEORGIA CORE CSS
   Version: 2.0
   Global base + unified header system
   ========================================================= */


/* =========================
   1. RESET
   ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   2. DESIGN TOKENS
   ========================= */

:root {

    --font-base: 'Inter', sans-serif;
    --font-ka: 'Noto Sans Georgian', sans-serif;
		
    --container-width: 1280px;		
    --header-height: 90px;
		
    --sg-text-color: #1c1c1c;
    --sg-muted-color: #6b6b6b;
		--sg-border-color: rgba(0,0,0,0.08);
    --sg-bg-color: #ffffff;		
		--sg-primary-color: #3C8DC5;
		--sg-primary-soft: #E6F1F8;
		--sg-primary-dark: #2F6D98;
}


/* =========================
   3. TYPOGRAPHY
   ========================= */

html {
    font-family: var(--font-base);
    color: var(--sg-text-color);
    background: var(--sg-bg-color);
}

html[lang="ka"] {
    font-family: var(--font-ka);
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 700;
}

p {
    margin: 0;
    color: var(--sg-muted-color);
}


/* =========================
   4. CONTAINER
   ========================= */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}


/* =========================================================
   5. UNIFIED HEADER (HERO SYSTEM)
   ========================================================= */

.hero {
    position: relative;
    width: 100%;
		padding: 0 20px;
}

/* Compact version for inner pages */

.hero--compact {
    height: var(--header-height);
		width: 100% !important;
}

/* NAV PANEL */

.hero__nav {
	width|: 100%;
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
		flex-wrap: nowrap;
		gap: 18px;
}


/* =========================
   NAVIGATION
   ========================= */

.nav {
    display: flex;
		align-items: center; 
    gap: 28px;
		white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;   /* ВАЖНО */
/*		overflow: hidden; */
}

html[lang="ka"] .nav {
    gap: 14px;
}

.nav a,
.nav-dd__btn  {
    font-size: 14px;
    letter-spacing: .06em;
		text-decoration: none;
    color: var(--sg-bg-color);
    background: var(--sg-primary-dark);
    border: none;
    cursor: pointer;
    /*padding: 0;		*/
    transition: opacity .2s ease;
}

.nav a:hover,
.nav-dd__btn:hover {
    opacity: .7;
}

/* DROPDOWN */

.nav-dd { 
    position: relative;
}

.nav-dd__menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
		padding: 10px;
		background: var(--sg-primary-color);
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);

    padding: 10px 0;
    display: none;
    z-index: 2000;
}

.nav-dd.is-open .nav-dd__menu {
    display: block;
}

.nav-dd__item {
    display: block;
    padding: 8px 16px;
/*    color: #333;*/
    font-size: 14px;
    text-decoration: none;
}

.nav-dd__item:hover {
    background: var(--sg-bg-color);
		color:var(--sg-primary-dark);
}
 
/* =========================
   BURGER
   ========================= */

.burger {
    display: none;
		flex: 0 0 auto;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.burger span {
    height: 2px;
    width: 100%;
    background: currentColor;
}


/* =========================
   BRAND + LOCALE
   ========================= */

.brand-locale {
    display: flex;
		flex: 0 0 auto;
		white-space: nowrap;
    align-items: center;
    gap: 14px;
}

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

.brand__title {
    font-size: 18px;
    font-weight: 600;
}

.brand__subtitle {
    font-size: 13px;
    opacity: .7;
}
.brand__title,
.brand__subtitle {
    white-space: nowrap;
}

/* =========================================================
   6. LANGUAGE DROPDOWN (главный стиль)
   ========================================================= */

.lang-dd {
    position: relative;
}

.lang-dd__btn {
    height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 0 10px;
		margin-left: 10px;
    border-radius: 10px;

    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.15);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.lang-dd__menu {
    position: absolute;
    top: 36px;
    left: 0;

    min-width: 170px;
    padding: 6px;

    border-radius: 10px;

    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 10px 28px rgba(0,0,0,0.12);

    display: none;
    z-index: 200;
}

.lang-dd.is-open .lang-dd__menu {
    display: block;
}

.lang-dd__item {
    width: 100%;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 10px;

    border-radius: 8px;

    background: transparent;
    border: none;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
}

.lang-dd__item:hover {
    background: rgba(0,0,0,0.05);
}

.lang-dd__item.is-active {
    background: rgba(0,0,0,0.08);
}

.lang-dd__item:hover {
    background: rgba(0,0,0,0.06);
}

.lang-dd__item.is-active {
    background: rgba(0,0,0,0.10);
}

.lang-dd__itemcode {
    font-weight: 600;
		color:var(--sg-primary-dark);
}

.lang-dd__itemname {
    opacity: .8;
}


/* =========================================================
   7. MOBILE MENU
   ========================================================= */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 999;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    left: -320px;

    width: 280px;
    height: 100%;

    padding-top: 0;
		padding-bottom: 0;

    display: flex;
    flex-direction: column;
    gap: 15px;

    transition: left .3s ease;
		
		overflow-y: auto;
}

.mobile-menu__top {
    position: sticky;
    top: 0;
    padding: 18px 20px;
    background: var(--sg-bg-color);
    backdrop-filter: blur(6px);
    z-index: 5;

}

.mobile-menu__title {
    font-size: 18px;
    font-weight: 700;
		color: var(--sg-primary-color);
}

.mobile-menu__section {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
		
}

.mobile-menu__link,
.mobile-menu__panel a {
    font-size: 16px;
    padding: 15px 25px;
		color: var(--sg-primary-dark);
    background: var(--sg-bg-color);		
}

/* BOTTOM BAR */
.mobile-menu__bottom {
    position: sticky;
    bottom: 0;
    padding: 14px 20px;
    background: var(--sg-bg-color);
		color: var(--sg-primary-dark);
    backdrop-filter: blur(6px);
    z-index: 5;

    font-size: 12px;
    opacity: .8;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu.is-open .mobile-menu__panel {
    left: 0;
}


/* =========================================================
   8. UTILITIES
   ========================================================= */

.u-hidden {
    display: none !important;
}

.u-text-center {
    text-align: center;
}

/* FOOTER */

.footer {
    padding: 25px 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
		background: var(--sg-primary-dark);
}

.footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 13px;
}
html[lang="ka"] .footer .nav {gap: 10px;}

.footer .nav a {
    opacity: .8;
}

.footer .nav a:hover {
    opacity: 1;
}

/*ADAPTIVE*/
@media (max-width: 890px) {
    html[lang="ka"] .nav {
        display: none;
    }

    html[lang="ka"] .burger {
        display: flex;
    }
		html[lang="ka"] .footer .nav {display: none;}
}

@media (max-width:860px) {

    .nav {display:none;}
		.footer .nav {display: none;}
    .burger { display:flex;}
		

}
