      html {
        scroll-behavior: smooth;
      }

      header * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        color: #ebebeb;
      }

      body {
        font-size: 26px;
        width: 100%;
        margin: auto;
        padding-top: 100px;
        /* Increased padding for navbar */
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        -webkit-backdrop-filter: blur(2.5px);
        backdrop-filter: blur(2.5px);
        padding: 5px 20px 10px 30px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        min-height: 70px;
        border-bottom: 1px solid #bdbdbd4d;
      }

      .logo {
        text-align: center;
        margin: 0;
      }

      .logo img {
        margin-top: 20px;
        max-height: 60px;
      }

      .shop-bag {
        cursor: pointer;
        font-size: 39px !important;
        color: #ebebeb;
        text-decoration: none;
        padding-top: 2px;
      }

      .shop-bag:hover {
        color: #5e8099;
        text-shadow: #5e809914 0 0 20px;
      }

      .login-icon-guest {
        cursor: pointer;
        margin: 5px 0 0 10px;
        font-size: 40px;
        color: #ebebeb;
        height: 50px;
      }

      .login-icon-guest:hover {
        color: #5e8099;
        text-shadow: #5e809914 0 0 10px;
      }

      .login-icon,
      .logout-icon {
        cursor: pointer;
        font-size: 35px;
        color: #ebebeb;
        height: 10px;
        margin: 10px 0 0 0;
      }

      .logout-icon {
        margin-left: 10px;
      }

      .login-icon:hover {
        color: #5e8099;
        text-shadow: #5e809914 0 0 10px;
      }

      .logout-icon:hover {
        color: #fa3849;
        text-shadow: #fa3849 0 0 10px;
      }


      .login-icon-link,
      .logout-icon-link {
        color: #ebebeb;
        text-decoration: none;
      }

      /* --- Cart Count Badge --- */
      .shop-bag {
        position: relative;
        display: inline-block;
      }

      .cart-count-badge {
        position: absolute;
        top: 0px;
        right: -5px;
        background-color: #ff4757;
        color: white;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 12px;
        font-weight: bold;
        border: 1px solid #131313;
        min-width: 20px;
        text-align: center;
      }

      /* --- End Cart Count Badge --- */

      /* --- Uiverse Login Modal --- */
      .container-all-login {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1001;
      }

      .bg-modal {
        display: none;
        background-color: rgba(5, 5, 8, 0.85);
        backdrop-filter: blur(8px);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100vw;
        height: 100vh;
      }

      .login-container-wrapper {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1000;
      }

      .login-wrapper,
      .login-wrapper * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }

      .login-wrapper input,
      .login-wrapper button,
      .login-wrapper .title,
      .login-wrapper .subtitle,
      .login-wrapper .toggle-link {
        font-family: "Anjoman";
      }

      .login-wrapper {
        --blob-2-color: #5e8099;
        --blob-1-color: #3498db;
        --btn-hover-glow: rgba(243, 171, 37, 0.25);
        --input-focus-glow: rgba(243, 171, 37, 0.15);
        position: relative;
        animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }

      @keyframes floatUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .login-card {
        position: relative;
        width: 330px;
        background-color: #0d0f14;
        border-radius: 24px;
        padding: 36px 28px;
        overflow: hidden;
        box-shadow:
          0 24px 48px rgba(0, 0, 0, 0.2),
          0 8px 16px rgba(0, 0, 0, 0.1);
        transition:
          transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
          box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .login-wrapper:hover .login-card {
        transform: translateY(-6px);
        box-shadow:
          0 32px 64px rgba(0, 0, 0, 0.3),
          0 12px 24px rgba(0, 0, 0, 0.15);
      }

      .glow-blob {
        position: absolute;
        filter: blur(45px);
        border-radius: 50%;
        z-index: 0;
        opacity: 0.6;
        animation: pulseGlow 4s infinite alternate ease-in-out;
        transition: opacity 0.5s ease, filter 0.5s ease;
      }

      .login-wrapper:hover .glow-blob {
        opacity: 0.75;
        filter: blur(40px);
      }

      .blob-1 {
        top: -30px;
        right: -30px;
        width: 170px;
        height: 170px;
        background: var(--blob-1-color);
      }

      .blob-2 {
        bottom: -50px;
        left: -50px;
        width: 210px;
        height: 210px;
        background: var(--blob-2-color);
        animation-delay: -2s;
      }

      @keyframes pulseGlow {
        0% {
          transform: scale(0.9);
          opacity: 0.5;
        }

        100% {
          transform: scale(1.1);
          opacity: 0.7;
        }
      }

      .dark-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%,
            rgba(5, 5, 8, 0.85) 30%,
            transparent 100%);
        z-index: 1;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
        border-radius: inherit;
      }

      .view-container {
        position: relative;
        z-index: 10;
      }

      .form-view {
        display: flex;
        flex-direction: column;
        animation: fadeInView 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      }

      @keyframes fadeInView {
        from {
          opacity: 0;
          transform: translateY(15px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .header {
        margin-bottom: 28px;
        text-align: center;
      }

      .decorative-dot {
        margin: 0 auto 1em auto;
        display: flex;
        justify-content: center;
      }

      .decorative-dot::after {
        content: "";
        width: 1.5em;
        height: 1.2em;
        background-image: url('/media/hobb.webp');
        background-size: 100%;
      }

      .title {
        color: #ffffff;
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 6px;
      }

      .subtitle {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
        font-weight: 400;
      }

      .input-group {
        margin-bottom: 16px;
        position: relative;
      }

      .input-field {
        width: 100%;
        padding: 1.05em 1.2em;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        color: #ffffff;
        font-size: 14px;
        outline: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      }

      .input-field::placeholder {
        color: rgba(255, 255, 255, 0.4);
      }

      .input-field:focus {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.25);
        box-shadow: 0 0 20px var(--input-focus-glow);
        transform: translateY(-2px);
      }

      .btn-submit {
        width: 100%;
        padding: 1em;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        font-size: 14.5px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
      }

      .btn-submit:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px var(--btn-hover-glow);
      }

      .btn-submit:active {
        transform: translateY(0);
      }

      .btn-submit:disabled {
        opacity: 0.5;
        pointer-events: none;
      }

      .hamburger {
        cursor: pointer;
      }

      .hamburger input {
        display: none;
      }

      .hamburger svg {
        height: 2.3em;
        transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
      }

      .line {
        fill: none;
        stroke: white;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 3;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
      }

      .line-top-bottom {
        stroke-dasharray: 12 63;
      }

      .hamburger input:checked+svg {
        transform: rotate(-45deg);
      }

      .hamburger input:checked+svg .line-top-bottom {
        stroke-dasharray: 20 300;
        stroke-dashoffset: -32.42;
      }

      .icons {
        display: flex;
        align-items: normal;
        gap: 20px;
        position: relative;
      }

      .menu-link {
        color: white;
        text-decoration: none;
        padding: 14px 20px;
      }

      .menu-link {
        position: relative;
        transition: all 0.5s;
      }

      .menu-link:hover::before {
        width: 100%;
        transition: width 0.5s;
      }

      .menu-link::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #5e8099;

        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s;
      }

      .menu-link:hover::after {
        transform: scaleX(1);
        transform-origin: right;
        transition: transform 0.5s;
      }

      .menu.active {
        justify-items: start;
        display: grid;
        position: absolute;
        right: 0;
        min-width: 100%;
        width: 100%;
        animation: slideIn 0.34s;
      }

      @keyframes slideIn {
        from {
          right: -100%;
        }

        to {
          right: 0;
        }
      }

      .menu {
        display: none;
        flex-direction: column;
        width: max-content;
        background-color: rgba(0, 0, 0, 0.801);
        top: 69px;
        right: 0;
        z-index: 5;
        animation: slideOut 0.5s;
      }

      @keyframes slideOut {
        from {
          right: 0;
        }

        to {
          right: -100%;
        }
      }

      .search_container_all {
        position: relative;
        height: 50px;
      }

      .search_container {
        position: relative;
        box-sizing: border-box;
        width: fit-content;
        top: 5px;
        left: -45px;
      }

      .mainbox {
        box-sizing: border-box;
        position: relative;
        height: 50px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        transition: all 0.3s ease;
      }

      .checkbox:focus {
        outline: none;
      }

      .checkbox:checked {
        right: 30px;
      }

      .checkbox:checked~.search_icon {
        
      }

      .checkbox:checked~.mainbox {
        width: 100px;
      }

      .checkbox:checked~.mainbox .search_input {
        width: 0;
        height: 0px;
      }

      .checkbox:checked~.mainbox .iconContainer {
        padding-top: 8px; 
      }

      .checkbox {
        border: none;
        box-sizing: border-box;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 17px;
        top: 10px;
        z-index: 5;
        cursor: pointer;
        appearance: none;
      }

      .search_input {
        box-sizing: border-box;
        height: 100%;
        background-color: transparent;
        outline: none;
        border: none;
        padding-bottom: 4px;
        padding-left: 10px;
        padding-right: 5px;
        font-size: 1em;
        color: white;
        transition: all 0.3s ease;
      }

      .search_input::placeholder {
        color: rgba(255, 255, 255, 0.776);
      }

      .iconContainer {
        box-sizing: border-box;
        width: fit-content;
        transition: all 0.3s ease;
      }

      .search_icon {
        box-sizing: border-box;
        fill: #5e8099;
        font-size: 35px !important;
      }

      .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
      }

      .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
      }

      .social-icons a {
        margin: 0 10px;
        color: #ebebeb;
        text-decoration: none;
      }

      .telegram-icon {
        font-size: 21px;
        margin: 0;
      }

      .telegram-icon:hover {
        color: rgb(0, 140, 255);
      }

      .telegram-icon:active {
        color: rgb(31, 79, 199);
      }

      .instagram-icon {
        font-size: 28px;
      }

      .instagram-icon:hover {
        color: rgb(255, 0, 157);
      }

      .instagram-icon:active {
        color: rgb(177, 14, 114);
      }

      .whatsapp-icon {
        font-size: 27px;
      }

      .whatsapp-icon:hover {
        color: rgb(0, 179, 0);
      }

      .whatsapp-icon:active {
        color: rgb(2, 133, 19);
      }

      @media (min-width: 1100px) {
        .icons {
          right: 30px;
        }

        .menu-social-icons {
          display: none !important;
        }

        #mobile_search {
          display: none;
        }

        .search_input {
          width: 170px;
        }

        .mainbox {
          width: 230px;
        }

        .menu {
          display: flex;
          flex-direction: row;
          position: static;
          background: none;
          width: auto;
        }

        .hamburger {
          display: none;
        }

        .menu-link {
          position: fixed;
          width: max-content;
          margin: 0;
          padding: 0;
          top: 20px;
          font-size: 22px;
        }

        .menu-link::after {
          bottom: -10px;
        }

        .mobile_logout {
          display: none !important;
        }

        .khane {
          right: 20px;
        }

        .mahsolat {
          right: 105px;
        }

        .d-ma {
          right: 245px;
        }

        .q-a {
          right: 360px;
        }
      }

      @media (max-width: 1099px) {
        body {
          font-size: 24px;
          padding-top: 63px;
        }

        .navbar {
          padding: 5px 15px 10px;
        }

        .search_container {
          margin: 10px 10px 10px auto;
          left: 0px;
        }

        #pc_search {
          display: none;
        }

        .search_icon {
          margin: 5px 5px;
          cursor: pointer;
        }

        .mainbox input {
          border-bottom: 1px solid #ebebeb;
        }

        .search_input {
          width: 100%;
        }


        .menu-link::after {
          bottom: 0px;
        }

        .menu-link:hover::before {
          width: 100%;
          transition: width 0.5s;
        }


        .menu-link:hover::after {
          transform: scaleX(1);
          transform-origin: right;
          transition: transform 0.5s;
        }

        .login-icon-guest,
        .login-icon {
          margin: 0 !important;
        }

        .pc_logout {
          display: none !important;
        }

        .mobile_logout {
          margin: 10px;
        }

        .icons {
          align-items: center !important;

        }
      }

      @media (max-width: 768px) {
        body {
          font-size: 24px;
        }


        .login-container {
          width: 450px;
          height: 450px;
        }

        .login-container h2 {
          font-size: 32px;
        }

        .login-container span {
          transform-origin: 225px;
          width: 30px;
          height: 5px;
        }

      }

      @media (max-width: 480px) {
        body {
          font-size: 20px;
        }

        .navbar {
          padding: 5px 20px 0;
        }

        .logo img {
          margin-top: 10px;
          max-height: 50px;
        }



        .login-icon,
        .logout-icon {
          font-size: 30px !important;
        }

        .shop-bag {
          font-size: 32px !important;
        }

        .icons {
          gap: 15px;
        }

        .cart-count-badge {
          font-size: 10px;
          min-width: 16px;
          padding: 1px 4px;
          top: 2px;
          right: -4px;
        }

        .mainbox {
          width: 100%;
        }

        .search_input {
          width: inherit;
        }

        .login-container {
          width: 300px;
          height: 300px;
          font-size: 0.8rem;
        }

        .login-container span {
          transform-origin: 150px;
          width: 20px;
          height: 3px;
        }

        .login-container h2 {
          font-size: 24px;
          margin-bottom: 10px;
        }

        .login-box {
          width: 200px;
        }

        .login-input-box input:not(:placeholder-shown)+label,
        .login-input-box input:focus+label {
          top: -8px;
        }

        .login-input-box input {
          height: 35px;
        }
      }

      /* go up */
      .tooltip {
        width: fit-content;
        height: fit-content;
        position: relative;
        display: inline-block;
        all: unset;
        color: #131313;
        cursor: pointer;
      }

      .tooltip i {
        font-size: 30px;
        padding-top: 4px;
      }

      .tooltip-text {
        visibility: hidden;
        background-color: #ebebeb;
        text-align: center;
        position: absolute;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: opacity 0.3s;
        white-space: nowrap;
        border-radius: 30px;
        padding: 5px 10px;
      }

      .tooltip:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
      }

      .scroll-up {
        display: none;
        text-align: center;
        width: 45px;
        height: 40px;
        position: fixed;
        bottom: 15px;
        right: 15px;
        background-color: #ebebeb;
        z-index: 1000;
        border-radius: 100%;
      }