.whites{color: rgba(255,255,255,1.00);}

.sora-font {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.nunito-font {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
body {
    margin: 0;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    background-color: rgba(0,163,255,1.00);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    font-size: 1em;
    position: relative;
}
.main-content {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transition: opacity 1s ease-in-out;
    background-color: rgba(0, 0, 0, 0.6);
    min-height: 100vh;
}
.main-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.9;
    z-index: -1;
}
section {
    margin: 10px 0;
    font-optical-sizing: auto;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    line-height: 1.2;
    width: 100%;
    position: relative;
    float: left;
}
section part {
    width: 50%;
    position: relative;
    float: left;
}
section h2 {
    margin: 10px 0 30px 0;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.0);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-size: 2.3em;
    letter-spacing: -0.05rem;
}
section h3 {
    margin: 10px 0 20px 10px;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    color: rgba(0,37,45,1.00);
    line-height: 1.4;
    font-size: 2.8em;
    text-indent: 0;
    letter-spacing: -1px;
}
section h4 {
    margin: 8px 0 0px 10px;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    color: rgba(255,255,255,0.90);
    line-height: 1.3;
    font-size: 1.3em;
    letter-spacing: -0.02rem;
}
section p {
    margin: 10px;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    background-color: rgba(0, 0, 0, 0.0);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-size: 1.3em;
    letter-spacing: -0.005rem;
}
.header {
    text-align: center;
    padding: 0;
    color: rgba(0,0,0,1.00);
    background-color: rgba(255,255,255,1.00);
    height: 120px;
    width: 100%;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2000;
}
.header a {
    text-decoration: none;
}
.header img {
    width: 90px;
    height: 90px;
    margin-left: 20px;
    top: -5px;
    position: relative;
}
.header .zenit-title {
    font-size: 4.4em;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-weight: 700;
    color: rgba(0,37,43,1.00);
    margin: 9px 0 0 1px;
    letter-spacing: -0.2rem;
    position: relative;
}
.header .word-container {
    position: absolute;
    left: 310px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 30px;
    z-index: 2;
    margin-right: 21px;
    display: flex; /* Flexbox для выравнивания слов */
    justify-content: center;
    align-items: center;
    visibility: visible; /* По умолчанию виден */
}
.header h5 {
    font-size: 1.8em;
    margin: 0;
    font-weight: 700;
    color: rgba(0, 154, 108, 1.00);
    letter-spacing: -0.1rem;
    text-align: left;
    opacity: 0;
    position: absolute;
    top: 3px;
    left: 7px;
    font-family: "Oxanium", sans-serif;
    font-style: italic;
    transition: opacity 0.5s ease;
}
.header h5.active {
    animation: fadeInOut 2s infinite;
    opacity: 1; /* Активное слово становится видимым */
}
.header .control-container {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}
.header .control-container .marquee-container {
    position: relative;
    left: -10px;
    width: 200px;
    height: 14px;
    overflow: hidden;
    white-space: nowrap;
    transition: left 0.1s ease;
}
.header .control-container .marquee-text {
    display: inline-block;
    font-family: "Oxanium", sans-serif;
    font-weight: 500;
    font-size: 1em;
    color: #000000;
    animation: marqueeLeft 14s linear infinite;
}
.header .control-container .controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
@keyframes marqueeLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-200%); }
}
.sound-toggle {
    font-size: 1.8em;
    cursor: pointer;
    padding: 10px;
    width: 42px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2002;
    background: none;
    border: none;
}
.sound-toggle i {
    font-size: 0.7em;
    color: rgba(0,21,30,0.90);
}
.sound-toggle.muted i::before {
    content: "\f026";
    color: rgba(180,0,33,0.90);
}
.menu-toggle {
    font-size: 2em;
    cursor: pointer;
    z-index: 4001;
    padding: 10px;
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-toggle .bar-container {
    position: relative;
    width: 50px;
    height: 30px;
    z-index: 4001;
}
.menu-toggle .bar {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgba(0, 0, 0, 1.00);
    transition: transform 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
    opacity: 1;
}
.menu-toggle .bar:nth-child(1) {
    top: 8px;
}
.menu-toggle .bar:nth-child(2) {
    bottom: 8px;
}
.menu-toggle.active .bar {
    background-color: rgba(0,0,0,1.00);
}
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
}
.cart-btn {
    position: fixed;
    right: 0;
    top: 120px;
    padding: 15px 33px;
    background: #2A7B9B;
background: linear-gradient(-80deg,rgba(21,105,166,1.00) 0%, rgba(87,199,179,1.00) 90%, rgba(239,255,76,1.00) 110%);
    border: none;
    color: rgba(255, 255, 255, 1);
    font-family: "Oxanium", sans-serif;
    font-style: italic;
    font-size: 1.6em;
    cursor: pointer;
    transition: background-color 0.9s, box-shadow 0.9s;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1900;
    letter-spacing: -0.04rem;font-weight: 600;
	box-shadow: 10px 10px 20px 0 rgba(0,0,0,0.6);
}
.cart-btn:hover {
    background: #2A7B9B;
background: linear-gradient(-80deg,rgba(21,105,166,1.00) 0%, rgba(87,199,179,1.00) 90%, rgba(239,255,76,1.00) 110%);
    box-shadow: 0 -5px 40px rgba(216,243,255,0.90), 0 5px 40px rgba(156,255,222,0.90);
    color: rgba(252,255,179,1.00);
}
.cart-btn i {
    font-size: 1em;
}
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 30px;
    padding: 23px;
    margin-top: 100px;
}
#urunler {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.item {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 19px;
    overflow: hidden;
    width: 33%;
    text-align: left;
    box-shadow: 0 -3px 49px rgba(0, 171, 255, 0.46), 0 3px 49px rgba(0, 255, 116, 0.46);
    padding: 14px;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: box-shadow 1.2s ease, transform 0.8s ease;
	text-align: center!important;
}
.item:hover {
    box-shadow: -3px -3px 66px rgba(94,255,172,0.9), 3px 3px 66px rgba(0, 235, 255, 0.90);
    transform: scale(0.98);
}
.item .swiper {
    width: 100%;
    height: 300px;
    border-radius: 14px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.item .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item .swiper-pagination {
    position: relative;
    bottom: 23px!important;
	z-index: 8000;
}
.item .swiper-pagination-bullet {
    background: rgba(255,255,255,0.60);
    opacity: 1;
}
.item .swiper-pagination-bullet-active {
    background: rgba(255,255,255,0.95);
    opacity: 1;
}
.item h3 {
    font-size: 2em;
    margin: 0px 0 15px 0;
    font-weight: 600;
    letter-spacing: 0.1rem;
    color: rgba(255,255,255,1);
    line-height: 1;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
	border: 0px solid rgba(0,17,22,0.1);
	padding: 17px 0 13px 0;
	border-radius: 14px;
	background: #2A7B9B;
background: linear-gradient(-80deg,rgba(21,105,166,1.00) 0%, rgba(87,199,179,1.00) 90%, rgba(239,255,76,1.00) 110%);
}
.item p {
    color: rgba(0,30,34,0.90);
    margin: 0px 0 0px 5px;
    font-size: 1.1em;
    letter-spacing: -0.06rem;
    font-weight: 700;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
	
}
.item .price {
    font-size: 3em;
    margin: 15px;
    letter-spacing: -0.08rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.item .add-to-cart-btn {
    padding: 15px 15px;
    background: #2A7B9B;
background: linear-gradient(-78deg,rgba(41,155,100,0.90) 0%, rgba(119,199,87,0.90) 92%, rgba(237, 221, 83, 0.9) 100%);
    border: 0px dotted rgba(0,17,15,0.2);
    color: rgba(0,14,11,0.90);
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-size: 1.4em;
	font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 14px;
    letter-spacing: -0.04rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    
    width: 100%;
	margin: 10px 0 0 0;
}
.item .add-to-cart-btn strong {
    color: rgba(255, 214, 0, 0.9);
}
.sizes {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    width: 100%;
}
.size-select {
    padding: 15px 15px;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-size: 1.2em;
	font-weight: 700;
	letter-spacing: -0.05rem;
    background-color: rgba(255,255,255,0.90);
    color: rgba(42,120,0,0.90);
    border: 1px solid rgba(105,195,0,0.30);
    border-radius: 14px;
    width: 100%;
    margin: 15px 0 0 0;
    text-align: center;
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}
.google-map {
    width: 90vwpx;
    height: 50vhpx;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 -3px 89px rgba(0, 171, 255, 0.46), 0 3px 89px rgba(0, 255, 116, 0.46);
    transition: box-shadow 1.2s ease, transform 0.8s ease;
    margin:0px auto;
}
.google-map:hover {
    box-shadow: -3px -3px 66px rgba(137, 255, 0, 0.90), 3px 3px 66px rgba(0, 235, 255, 0.90);
    transform: scale(0.98);
}
.sidebar-map {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 -2px 20px rgba(0, 171, 255, 0.3), 0 2px 20px rgba(0, 255, 116, 0.3);
    margin-top: 20px;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    z-index: 4000;
}
.modal-content {
    background-color: rgba(0,16,29,0.70);
    padding: 10px;
    border-radius: 13px;
    width: 100%;
   
    animation: fadeIn 0.9s;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    
    overflow-y: auto;
    text-align: center;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
 

}
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.0);
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.0);
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.0);
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.6em;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 5px;
}
.close-modal:hover {
    color: rgba(135, 197, 64, 0.9);
}
.map-container {
    height: 84%;
    width: 100%;
    margin: 0;
    padding: 0;
}
.order-details {
    display: none;
    animation: fadeIn 0.9s;
    color: rgba(255, 235, 205, 0.9);
    word-wrap: break-word;
    text-align: center;
}
.order-details h2 {
    font-size: 4em;
    margin-bottom: 50px;
}
.order-details p {
    font-size: 2em;
}
.order-details #order-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.order-details .cart-item {
    margin-bottom: 20px;
    width: 252px;
    padding: 6px;
}
.order-details .cart-item img {
    height: 90px;
}
.order-details .cart-item h4 {
    font-size: 0.9em;
}
.order-details .cart-item p:nth-child(2) {
    margin: 5px 0;
    font-size: 1.2em;
}
.order-details .cart-item p:nth-child(3) {
    margin: 5px 0;
    font-size: 1.2em;
    color: rgba(51, 51, 51, 0.9);
}
.order-details p {
    margin: 10px 0;
}
.submit-btn, .confirm-btn {
    padding: 12px 34px;
    background-color: rgba(0, 114, 196, 0.9);
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-size: 1.6em;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 14px;
    margin: 20px auto;
    text-align: center;
    display: block;
    width: 50%;
    letter-spacing: -0.04rem;
    position: relative;
    top: 0;
    left:0%;
    transform: translateX(-0%);
    z-index: 7001;
}
.submit-btn, .confirm-btn .nahui{
    padding: 12px 34px;
    background-color: rgba(0, 114, 196, 0.9);
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-size: 1.6em;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 9px;
    margin: 40px auto;
    text-align: center;
    display: block;
    width: 50%;
    letter-spacing: -1px;
    position: relative;
    
    left:0%;
    transform: translateX(-0%);
    z-index: 6001;
}
.submit-btn:hover, .confirm-btn:hover {
    background-color: rgba(110, 160, 50, 0.9);
}
.congrats-modal {
    display: none;
    position: fixed;
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
    padding: 100px;
    border-radius: 13px;
    z-index: 5000;
    text-align: center;
    width: 100%;
   
}
#cart-modal {
    opacity: 0;
}
#cart-modal.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s forwards;
}
#cart-modal.closing {
    animation: fadeOut 0.5s forwards;
}
#cart-modal .modal-content {
    height: 100% ;
    margin-top: 10px;
    overflow-y: auto;
    width: calc(100% - 20px);
    margin-left: 10px;
    border-radius: 13px;
}
#location-modal {
    opacity: 0;
}
#location-modal.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s forwards;
}
#location-modal.closing {
    animation: fadeOut 0.5s forwards;
}
#location-modal .modal-content {
    height: calc(100% - 20px);
    margin-top: 10px;
    overflow-y: auto;
    width: calc(100% - 20px);
    margin-left: 10px;
    border-radius: 14px;
}
.height90 {height: 90%;}
#cart-items {
    margin: 50px auto 70px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.cart-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    padding: 10px;
    width: 25%;
    color: rgba(0, 0, 0, 0.9);
    position: relative;
}
.cart-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}
.cart-item h4 {
    font-size: 2em;
    margin: 10px 0;
    color: rgba(0, 0, 0, 0.9);
    letter-spacing: -0.1rem;
}
.cart-item p:nth-child(2) {
    margin: 5px 0;
    font-size: 1.4em;
}
.cart-item p:nth-child(3) {
    margin: 5px 0;
    font-size: 1.2em;
    color: rgba(51, 51, 51, 0.9);
}
.cart-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 1.8em;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    padding: 5px;
}
.cart-item .remove-btn:hover {
    color: rgba(204, 0, 0, 0.9);
}
#cart-total {
    font-size: 2em;
    margin: 40px 0 10px 0;
}
.leaflet-marker-icon {
    background: none !important;
    border: none !important;
}
.custom-alert {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.99);
    color: rgba(0,0,0,0.98);
    padding: 20px;
    border-radius: 13px;
    z-index: 6000;
    text-align: center;
    max-width: 80%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.3s forwards;
}
.custom-alert.active {
    display: block;
}
.custom-alert p {
    margin: 0 0 45px 0;
    font-size: 1.2em;
    color: rgba(0,0,0,0.90);
    line-height: 1.5;
}
.custom-alert .close-alert {
    background-color: rgba(110, 160, 50, 0.9);
    border: none;
    color: rgba(0,0,0,0.90);
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-size: 1.3em;
    padding: 8px 20px;
    border-radius: 9px;
    cursor: pointer;
    transition: background-color 0.3s;
	background: #2A7B9B;
background: linear-gradient(-78deg,rgba(41,155,100,0.90) 0%, rgba(119,199,87,0.90) 92%, rgba(237, 221, 83, 0.9) 100%);
}
.custom-alert .close-alert:hover {
    background-color: rgba(135, 197, 64, 0.9);
}
.sidebar-menu {
    position: fixed;
    top: 80px;
    right: -50%;
    width: 50%;
    height: 100%;
    background-color: rgba(0,15,17,0.66);
    z-index: 1999;
    padding: 80px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.5s cubic-bezier(0.8, 0.0, 0.2, 1);
}
.sidebar-menu.active {
    right: 0;
}
.sidebar-menu.closing {
    right: -50%;
}
.sidebar-menu .logo {
    font-size: 2.3em;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-align: left;
    margin-bottom: 20px;
    margin-top: 10px;
    color: rgba(255,255,255,1.00);
}
.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.sidebar-menu ul li {
    margin-bottom: 10px;
}
.sidebar-menu ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.8em;
    letter-spacing: -0.04rem;
    display: block;
    padding: 10px;
    cursor: pointer;
    scroll-behavior: smooth;
    font-style: italic;
    font-family: "Oxanium", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.0);
    line-height: 1.4;
    transition: color 0.3s ease;
}
.sidebar-menu ul li a:hover {
    color: rgba(160,212,0,0.90);
}
.sidebar-menu .instagram-posts {
    text-align: left;
    margin-top: 20px;
}
.sidebar-menu .instagram-posts h4 {
    color: rgba(255,190,0,0.90);
    font-size: 1.2em;
    margin-bottom: 10px;
}
.sidebar-menu .posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.sidebar-menu .posts-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}
.blur-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    animation: fadeIn 0.6s ease-in forwards;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1999;
    cursor: pointer;
    transition: opacity 0.6s ease-out;
}
.blur-background.active {
    display: block;
    opacity: 1;
}
.blur-background.closing {
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
@keyframes fadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes videoPan {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.footer {
    background-color: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
}
.footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.footer p {
    margin: 5px 0;
    font-size: 1.2em;
}
.footer a {
    color: rgba(0, 0, 0, 0.9)!important;
    text-decoration: underline;
}
.footer a:hover {
    color: rgba(0, 154, 108, 1.00);
}
@media (max-width: 768px) {
	.sound-toggle i {
    font-size: 0.7em;
    color: rgba(0,21,30,0.90);
		display: none;
}
	.cart-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    padding: 10px;
    width: 100%;
    color: rgba(0, 0, 0, 0.9);
    position: relative;
}
    .item .swiper {
        width: 100%;
        height: 200px;
        border-radius: 14px;
        margin-bottom: 5px;
    }
    .header .control-container .marquee-text {
        display: none;
    }
    .sidebar-menu ul li a {
        font-size: 1.6em;
        letter-spacing: -0.02rem;
        line-height: 1.1;
        transition: color 0.9s ease;
    }
    section part {
        width: 100%;
    }
    .header {
        height: 100px;
    }
    .header img {
        width: 60px;
        height: 60px;
        margin-left: 20px;
    }
    .header .zenit-title {
        font-size: 4.4em;
        margin-left: 5px;
        letter-spacing: -0.3rem;
    }
    .header .word-container {
        display: none; /* Скрываем на мобильных устройствах */
    }
    .header .control-container {
        right: 25px;
        gap: 5px;
    }
    .header .control-container .marquee-container {
        left: -100px;
        width: 150px;
    }
    .header .control-container .marquee-text {
        font-size: 1em;
    }
    .sound-toggle {
        width: 38px;
        height: 17px;
        top: 15px;
    }
    .sound-toggle i {
        font-size: 0.64em;
    }
    .menu-toggle {
        width: 40px;
        height: 24px;
        top: 15px;
    }
    .menu-toggle .bar-container {
        width: 40px;
        height: 24px;
    }
    .menu-toggle .bar:nth-child(1) {
        top: 5px;
    }
    .menu-toggle .bar:nth-child(2) {
        bottom: 5px;
    }
    .cart-btn {
        top: 100px;
        padding: 12px 23px;
        font-size: 1.4em;
        letter-spacing: -0.02rem;
    }
    .item {
        width: calc(100% - 20px);
        padding: 10px;
		
    }
    #urunler {
        flex-direction: column;
    }
    .modal-content {
        
        margin-left: 10px;
    }
    .order-details .cart-item {
        width: 90%;
    }
    .submit-btn, .confirm-btn {
        width: 80vw;
    }
    .sidebar-menu {
        right: -90%;
        width: 90%;
        padding: 40px;
    }
    .sidebar-menu .posts-grid {
        grid-template-columns: 1fr;
    }
    .footer .footer-content {
        padding: 0 20px;
    }
}
@media (min-width: 1920px) {
    #urunler {
        justify-content: flex-start;
    }
    .item {
        width: 450px;
    }
}