 @font-face {
     font-family: 'SackersGothic';
     src: url("../fonts/Sackers\ Gothic\ Medium\ AT\ Regular.otf") format("opentype");
     font-weight: normal;
     font-style: normal;
 }

 body {
     font-family: 'SackersGothic', Arial, sans-serif;
     background: #fff;
     margin: 0;
     padding: 0;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
 }

 .logo-container {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 36px;
     margin-bottom: 38px;
     padding-bottom: 50px;
 }

 .wadha_logo {
     width: 120px;
     max-width: 100%;
     height: auto;
 }

 @media (min-width: 600px) {
     .wadha_logo {
         width: 150px;
     }
 }

 @media (max-width: 400px) {
     .wadha_logo {
         width: 90px;
     }
 }

 .product-list-container {
     width: 100%;
     max-width: 355px;
     margin: 0 auto;
     text-align: center;
     padding-bottom: 44px;
 }

 .list-box {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .list-items {
     display: block;
     width: 100%;
     background: #F4F4F4;
     color: #323232;
     text-transform: uppercase;
     font-family: 'SackersGothic', Arial, sans-serif;
     font-weight: bold;
     font-size: 1.1rem;
     padding: 18px 0;
     border-radius: 15px;
     border: none;
     outline: none;
     text-align: center;
     text-decoration: none;
     letter-spacing: 1px;
     transition: background 0.18s, color 0.18s, border-radius 0.18s;
     box-shadow: none;
     user-select: none;
     cursor: pointer;
 }

 .list-items:hover,
 .list-items:focus {
     background: #232323;
     color: #fff;
     text-decoration: none;
 }

 @media (max-width: 900px) {
     .product-list-container {
         max-width: 98vw;
     }

     .list-items {
         font-size: 1rem;
         padding: 15px 0;
         border-radius: 13px;
     }

     .list-box {
         gap: 12px;
     }
 }

 @media (max-width: 600px) {
     .product-list-container {
         max-width: 98vw;
     }

     .list-items {
         font-size: 0.98rem;
         padding: 13px 0;
         border-radius: 11px;
     }

     .list-box {
         gap: 9px;
     }
 }

 @media (max-width: 400px) {
     .list-items {
         font-size: 0.95rem;
         padding: 10px 0;
         border-radius: 10px;
     }

     .list-box {
         gap: 6px;
     }
 }

 footer {
     width: 100%;
     text-align: center;
     font-size: 10px;
     color: #888;
     background: #fff;
     user-select: none;
     letter-spacing: 1.1px;
     padding: 24px 0 15px 0;
     margin-top: auto;
     font-family: 'SackersGothic', Arial, sans-serif;

 }

 @media (max-width: 600px) {
     footer {
         font-size: 8px;
         padding: 18px 0 10px 0;
     }
 }

 @media (min-width: 1024px) {
     footer {
         font-size: 12px;
     }
 }

 @media (max-width: 400px) {
     footer {
         font-size: 7.5px;
         padding: 14px 0 6px 0;
     }
 }

 #toggleAdminNavBtn {
     position: fixed;
     top: 50%;
     right: 0;
     transform: translateY(-50%);
     background: #232323;
     color: #fff;
     border: none;
     border-radius: 4px 0 0 4px;
     padding: 0;
     cursor: pointer;
     z-index: 10000;
     font-size: 20px;
     width: 44px;
     height: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     user-select: none;
     box-shadow: 0 0 8px rgba(0, 0, 0, 0.13);
 }

 #toggleAdminNavBtn:focus {
     outline: 2px solid #f8f8f8;
 }

 @media (max-width: 600px) {
     #toggleAdminNavBtn {
         font-size: 20px;
         width: 39px;
         height: 39px;
     }
 }

 .vertical-admin-nav {
     position: fixed;
     top: 50%;
     right: 44px;
     transform: translateY(-50%);
     backdrop-filter: blur(6px);
     background: rgba(20, 20, 20, 0.94);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
     border-radius: 14px 0 0 14px;
     border: 2.5px solid #F7F6F2;
     padding: 32px 24px 32px 14px;
     z-index: 9999;
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: transform .22s, opacity .18s;
     opacity: 1;
     min-width: 220px;
     font-family: 'SackersGothic', Arial, sans-serif;
 }

 .vertical-admin-nav.hide {
     transform: translate(120%, -50%);
     opacity: 0;
     pointer-events: none;
 }

 .vertical-admin-nav .nav-title {
     margin: auto;
     padding: 10px;
     font-size: 10px;
     color: #dddcdb;
     text-transform: uppercase;
     font-weight: bold;
     letter-spacing: 2px;
     margin: 0;
     text-align: center;
     font-family: 'SackersGothic', Arial, sans-serif;
 }

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

 .vertical-admin-nav .vertical-nav-list li {
     margin-bottom: 16px;
     width: 100%;
     display: flex;
     justify-content: center;
 }

 .vertical-admin-nav .vertical-nav-list a.list-items {
     font-family: 'SackersGothic', Arial, sans-serif;
     background: #F4F4F4;
     border-radius: 38px;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 68px;
     height: 68px;
     min-width: 68px;
     min-height: 68px;
     max-width: 90px;
     max-height: 90px;
     box-shadow: 0 1px 10px rgba(34, 34, 34, 0.09);
     border: none;
     padding: 0;
     margin: auto;
     transition: background 0.19s, box-shadow 0.15s;
     cursor: pointer;
     overflow: hidden;
 }

 .vertical-admin-nav .vertical-nav-list a.list-items:hover,
 .vertical-admin-nav .vertical-nav-list a.list-items:focus {
     background: #F7F6F2;
     box-shadow: 0 2px 15px rgba(34, 34, 34, 0.09);
     outline: none;
 }

 @media (max-width:600px) {
     .vertical-admin-nav {
         padding: 18px 7px 18px 7px;
         border-radius: 7px 0 0 7px;
         min-width: 90px;
     }

     .vertical-admin-nav .nav-title {
         font-size: 0.8rem;
     }

     .vertical-admin-nav .vertical-nav-list a.list-items {
         border-radius: 28px;
         width: 48px;
         height: 48px;
         min-width: 48px;
         min-height: 48px;
         max-width: 60px;
         max-height: 60px;
     }

     .vertical-admin-nav .vertical-nav-list li {
         margin-bottom: 10px;
     }
 }

 @media (min-width: 900px) and (max-width: 1200px) {
     .vertical-admin-nav {
         padding: 28px 13px 28px 7px;
     }

     .vertical-admin-nav .nav-title {
         font-size: 0.93rem;
     }

     .vertical-admin-nav .vertical-nav-list a.list-items {
         border-radius: 32px;
         width: 54px;
         height: 54px;
         min-width: 54px;
         min-height: 54px;
         max-width: 70px;
         max-height: 70px;
     }
 }

 @media (min-width: 1200px) {
     .vertical-admin-nav {
         padding: 32px 24px 32px 14px;
     }

     .vertical-admin-nav .nav-title {
         font-size: 1rem;
     }

     .vertical-admin-nav .vertical-nav-list a.list-items {
         border-radius: 38px;
         width: 68px;
         height: 68px;
         min-width: 68px;
         min-height: 68px;
         max-width: 90px;
         max-height: 90px;
     }
 }
 
/* ...back button arrow color... */
 .back-button i {
     color: rgba(0, 0, 0, 0.85);
     /* matte black with fixed opacity */
     font-size: 1.4rem;
     pointer-events: none;
     /* prevents hover highlight on icon itself */
 }

 /* Remove hover color changes */
 .back-button:hover i,
 .back-button i:hover {
     color: rgba(0, 0, 0, 0.85);
     /* stays fixed */
 }
 