
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&family=Bebas+Neue&family=Comfortaa:wght@300..700&family=Lobster&family=Pacifico&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&family=Bebas+Neue&family=Comfortaa:wght@300..700&family=Lobster&family=Pacifico&family=Permanent+Marker&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tangerine:wght@400;700&family=Teko:wght@300..700&display=swap');



*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
}

html
{
  scroll-behavior: smooth;
}

body
{
    background-color: #272727;
    font-family: comfortaa, sans-serif;
    color: white;
}

a
{
    text-decoration: none;
    color: white;
}

.top-strip 
{
  position: fixed;
  width: 100%;
  background: linear-gradient(to right, #a1a1a1, #535353);
  color: rgb(255, 255, 255);
  height: 4vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  top: 0;
  z-index: 20;
  font-family: Poppins, sans-serif;
}

.text-rotator 
{
  display: flex;
  flex-direction: column;
  animation: slideText 10s infinite;
}

.text-rotator div 
{
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slideText 
{
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-32px); }
  40%  { transform: translateY(-64px); }
  60%  { transform: translateY(-96px); }
  80%  { transform: translateY(-128px); }
  100% { transform: translateY(0); }    
}

nav
{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #212121;
    height: 8vh;
    margin-top: 4vh;
    z-index: 10;
    top: 0;
}

.logo
{
    display: flex;
    align-items: center;
    align-self: center;
    gap: 5px;
    font-family: comfortaa,sans-serif;
}

.logo h3
{
    font-family: comfortaa, sans-serif;
    color: rgb(234, 234, 234);
    font-size: 22px;
    font-weight: 700;
}

.nav-logo
{
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 5vw;
    background-color: white;
    border-radius: 15px;
}

.icons
{
    display: flex;
    align-items: center;
    margin-right: 5vw;
}

#cart
{
  height: 25px;
}

#cart:hover
{
    transition: 0.3s;
    scale: 1.1;
}

.options-icon
{
  width: 20px;
  filter: invert(1);
  margin-top: 2px;
  margin-left: 10px;
}

.options-icon:hover
{
    transition: 0.3s;
    scale: 1.1;
}

 .nav-links 
    {
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 9vh;
    left: 0;
    width: 100%;
    background-color: oklab(36.002% 0 -0.00004);
    gap: 20px;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.3),
              0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
    }

    .nav-links a 
    {     
  color: white;
  text-decoration: none;
  padding: 12px;         
  display: block;
    }

    .nav-links a:hover
    {
      color: #ff9800;
    }

    .nav-links.open 
    {
    display: flex !important;
    }

    .hamburger.active 
  {
    transform: rotate(90deg);
  }

  .hamburger 
  {
    display: block;
    transition: 0.3s;
  }

.search-box {
  position: relative;
  max-width: 300px;
  margin-right: 10px;
}

#searchInput {
  width: 100%;
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 20px;
  border: 1px solid #ddd;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

#searchInput:focus {
  border-color: rgb(0, 80, 138);
}

#suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  display: none;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.highlighted {
  background: #f5f5f5;
}

.suggestion-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.suggestion-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.suggestion-name {
  font-size: 14px;
  color: #111;
}

.suggestion-name strong {
  font-weight: 700;
  color: rgb(0, 80, 138);
}

.suggestion-price {
  font-size: 12px;
  color: #888;
}

.no-result {
  padding: 14px 16px;
  font-size: 13px;
  color: #999;
  text-align: center;
}

.background-image
{
    position: fixed;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.bg-container
{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 12vh;
    height: 88vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

#changeWord, .highlight 
{
    display: inline-block;
    height: 1.1em;
    background: linear-gradient(90deg, #4A6CFF, #7B5CFF, #FF67D4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(120, 90, 255, 0.35);
    animation: glow 2s infinite ease-in-out;
}

.wave-container 
{
  width: 30vw;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  height: 150px;
}

.bar 
{
  width: calc((100% - 45px) / 10);
  height: 100px;
  background: #ffffff65;
  animation: wave 3s ease-in-out infinite;
  border-radius: 20px;
}

@keyframes wave 
{
  0%   { height: 100px; }
  50%  { height: 125px; } 
  100% { height: 100px; }
}

.bar:nth-child(1)  { animation-delay: 0s; }
.bar:nth-child(2)  { animation-delay: 0.3s; }
.bar:nth-child(3)  { animation-delay: 0.6s; }
.bar:nth-child(4)  { animation-delay: 0.9s; }
.bar:nth-child(5)  { animation-delay: 1.2s; }
.bar:nth-child(6)  { animation-delay: 1.5s; }
.bar:nth-child(7)  { animation-delay: 1.8s; }
.bar:nth-child(8)  { animation-delay: 2.1s; }
.bar:nth-child(9)  { animation-delay: 2.4s; }
.bar:nth-child(10) { animation-delay: 2.7s; }
.bar:nth-child(11) { animation-delay: 3.0s; }
.bar:nth-child(12) { animation-delay: 3.3s; }
.bar:nth-child(13) { animation-delay: 3.6s; }
.bar:nth-child(14) { animation-delay: 3.9s; }
.bar:nth-child(15) { animation-delay: 4.2s; }




.type
{
    font-size: 60px;
    background-color: transparent;
    width: 90vw;     
    margin-top: 5px;
    text-align: center;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.button
    {
        font-size: larger;
        padding: 8px;
        border: 2px solid white;
        border-radius: 15px;
        margin-top: 10px;
    }

    a#button
    {
        text-decoration: none;
        color: white;
    }

.button:hover
{
    background-color: white;
    color: black;
    cursor: pointer;
}

/* =========================
   CHATBOT
========================== */
#chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: rgb(0, 80, 138);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0, 80, 138, 0.4);
  transition: scale 0.2s, box-shadow 0.2s;
  scrollbar-color: rgb(51, 51, 51) ;
}

#chat-btn:hover {
  scale: 1.08;
  box-shadow: 0 6px 28px rgba(0, 80, 138, 0.5);
}

#chat-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

#chat-window {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 340px;
  height: 520px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  z-index: 9998;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#chat-window.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

#chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgb(0, 80, 138);
  flex-shrink: 0;
}

#chat-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

#chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}

#chat-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

#chat-subtitle {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1px;
}

#chat-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}

#chat-close:hover {
  color: #ffffff;
}

#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

#chat-messages::-webkit-scrollbar {
  width: 3px;
}

#chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

#chat-messages::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  animation: bubbleIn 0.25s ease;
}

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-bubble.bot {
  background: #1e1e1e;
  color: #e0e0e0;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-bubble.user {
  background: rgb(0, 80, 138);
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

#chat-options {
  padding: 10px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  border-top: 1px solid #1e1e1e;
}

.chat-option-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
}

.chat-option-btn:hover {
  background: rgba(0, 80, 138, 0.25);
  border-color: rgb(0, 80, 138);
  color: #ffffff;
}

.chat-restart {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  cursor: pointer;
  text-align: center;
  padding: 4px;
  transition: color 0.2s;
}

.chat-restart:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  #chat-window {
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 75vh;
    border-radius: 18px 18px 0 0;
    border-bottom: none;
  }

  #chat-btn {
    bottom: 20px;
    right: 20px;
  }
}

.inventory-title
{
    height: object-fit;
    position: relative;
    background-color: #2f2f2f;
    margin-bottom: -10px;
}    

.inventory-title h1
{
    color: white;
    text-align: center;
    padding-top: 0px;
    font-size: 28px;
    font-weight: 300;
    font-family: comfortaa, sans-serif;
    left: 50%; transform: translateX(-50%);
}

.products-inv
{
    width: 70%;
    height: 1000px;
    border-radius: 20px;
    background-color: #474747;
    overflow-x: hidden;
}

.container
{
    width: 100%;
    background-color: #2f2f2f;
}

.product-card 
{
  background-color: #4a4a4a00;
  width: 300px;
  height: 330px;
  padding: 15px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.536);
  transition: 0.03s;
  }

  .product-card:hover
  {
    scale: 1.01;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.747); 
  }

  .product-image 
  {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 5px;
  }

  .info-container
  {
      display: flex;
      flex-direction: column;
  }

  .info-container h2
  {
    font-weight: 600;
  }

  .info-container h5
  {
      margin-left: 5px;
      margin-bottom: 5px;
      font-size: 14px;
      font-weight: 400;
      margin-top: 5px;
      color: rgb(199, 199, 199);
  }
  
  .benefits
  {
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 91vw;
    justify-self: center;
    gap: 20px;
    background-color: #494949;
    padding: 15px;
    border-radius: 15px;
  }

  #t-benefits
  {
    background-color: #2f2f2f;
    color: rgb(79, 214, 255);
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    font-family: comfortaa, sans-serif;
    padding-top: 20px;
    margin-bottom: 10px;
  }

  .benefit
  {
    display: flex;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.696);
    background-color: #272727;
  }

  .benefit h3
  {
    font-weight: 400;
    font-size: 18px;
    margin-left: 30px;
    align-self: center;
  }

  .b-icons
  {
    height: 50px;
  }

  .topics
  {
    color: white;
    font-size: 22px;
    font-weight: 400;
    margin-left: 5vw;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .b-card
  {
    min-width: 260px;
    height: 370px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.536);
    transition: 0.03s;
  flex-shrink: 0;
  border-radius: 16px;
  margin-bottom: 10px;
  }

  .b-card:hover
  {
    scale: 1.01;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.747);
  }

  .best-img
  {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }

  .info-c
  {
      display: flex;
      flex-direction: column;
      margin-left: 10px;
      margin-top: 5px;
      gap: 7px;
  }

  .info-c h3
  {
      font-size: 16px;
      font-weight: 400;
  }

  .info-c p
  {
      font-size: 16px;
      font-weight: 300;
  }

  .info-c p s
  {
    color: grey;
  }

  .best-wrapper 
  {
  position: relative;
  width: 100%;
  background-color: #2f2f2f;
  padding-top: 20px;
}

.best-container 
{
  justify-self: center;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x:hidden;
  padding-bottom: 15px;
  padding-top: 20px;
}

.best-container::-webkit-scrollbar {
  display: none;
}


/* Mobile swipe only */
@media (max-width: 768px) {
  .nav-btn {
    display: none;
  }
}

.bottom
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add
{
  height: 35px;
  margin-right: 15px;
  background-color: white;
  border-radius: 10px;
  padding: 5px;
}

.add:hover
{
  cursor: pointer;
  scale: 1.01;
  transition: 0.3s;
}

.info-c span
{
    color: #7aff7a;
    font-weight: 500;
}

#product-name
{
  font-size: 20px;
}

.perks
{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 5px;
}

.perk-i
{
    height: 10px;
    margin-right: 10px;
    margin-top: 3px;
}

.perk
{
    display: flex;
    align-items: center;
}

.perk-s
{
    font-size: 12px;
    color: rgb(169, 169, 169);
    margin-right: 5px;
}
 
#i1
{
  width: 100%;
  margin-top: 30px;
}

.toggle-btn {
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid white;
    font-weight: 500;
    color: white;
  display: block;
  margin: auto;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}

.toggle-btn:hover
{
    background-color: white;
    color: black;
}

.faq
{
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 50px;
  font-family: poppins, sans-serif;
}

.qa
{
    align-self: center;
    color: white;
    width: 90vw;
    font-size: 14px;
    margin-top: 20px;
}

.qa p
{
  margin-top: 10px;
  color: rgb(161, 161, 161);
}

.vh-wrapper {
  max-height: 80vh;
  overflow: hidden;
  transition: max-height 0.6s ease;
  background-color:#2f2f2f
}

.vh-wrapper.expanded {
  max-height: none;
}

.head
{
    font-size:25px;
    font-weight: 600;
    margin-top: 5vh;
    margin-left: 5vw;
    background: linear-gradient(to bottom right, #0072ff, #32d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animate-up 
{
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease-out;
}

.animate-up.show 
{
  opacity: 1;
  transform: translateY(0);
}

.slider 
{
  width: 100%;
  overflow: hidden;
  margin-top: 3vh;
}

.slides 
{
  display: flex;
  filter: brightness(1.2);
}

.slides img 
{
  width: 100%;
  flex-shrink: 0;
}

.about
{
  font-family: poppins, sans-serif;
  width: 90vw;
  justify-self: center;
  align-self: center;
  padding-top: 20px;
  padding-bottom: 20px;
  color: whitesmoke;
}

.about h3
{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  margin-top: 20px;
}

.about p
{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.footer
{
  width: 100%;
  background-color: #222222;
}

.contact
{
  background: linear-gradient(
  90deg,
  oklab(30.919% 0 -0.00004)0%,
  oklab(25.375999999999998% 0.00387 -0.06418) 100%
);
  height: fit-content;
}

.contact h3
{
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
  margin-left: 5vw;
}

.icon
{
  display: flex;
  justify-content: space-around;
  align-items: center;
  justify-self: center;
  margin-top: 30px;
  width: 80vw;
}

.iconn
{
  height: 50px;
  padding: 10px;
  border-radius: 15px;
  transition: box-shadow 0.3s ease, transform 0.03s ease;
    box-shadow: 
    0 0 10px rgba(0, 149, 255, 0.068),
    0 0 20px rgba(0, 149, 255, 0.204),
    0 0 40px rgba(0, 149, 255, 0.296);
}

.iconn:hover
{
    box-shadow: 
    0 0 10px rgba(0, 149, 255, 0.834),
    0 0 20px rgba(0, 149, 255, 0.647),
    0 0 40px rgba(0, 149, 255, 0.448);
    transform: scale(1.05);
    transition: 0.3s;
}

.b-preposition
{
  font-family: poppins, sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-top: 20px;
  margin-left: 5vw;
  margin-right: 5vw;
  padding-bottom: 20px;
}

#copyright
{
  font-family: poppins, sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 5px;
  background: linear-gradient(to right, #5b5b5b,#c6c6c6);
}


.product-page 
{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 40px;
  align-items: start;
  margin-top: 10vh;
  font-family: poppins, sans-serif;
}

.thumbs 
{
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #494949;
  justify-self: center;
  padding: 10px;
  border-radius: 15px;
}

.thumbs img 
{
  width: 107px;
  height: 107px;
  object-fit: cover;
  padding: 5px;
  border: 2px solid #757575;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 10px;
}

.thumbs img:hover 
{
  border-color: #ffffff;
}

.main-image img 
{
  width: 600px;
  border-radius: 15px;
  margin-left: 10px;
}

.product-details
{
  width: 95vw;
}

.product-details h1 
{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-details select 
{
  width: 200px;
  padding: 8px;
  margin: 15px 0;
}

.price 
{
  font-size: 20px;
  margin: 20px 0;
}

.price span
{
  color: #5cff61;
}

.price s
{
  color: grey;
  font-size: 18px;
}

.cart-btn 
{
  padding: 12px 75px;
  background: rgb(0, 80, 138);
  color: white;
  cursor: pointer;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: 0.1s;
  margin-bottom: 20px;
}

.cart-btn:hover 
{
  scale: 1.02;
  background-color: white;
  color: rgb(0, 80, 138);
}

#cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  transition: opacity 0.3s ease;
  opacity: 0;
  scrollbar-color: rgb(51, 51, 51) ;
}

#cart-overlay.active {
  display: block;
  opacity: 1;
}

#cart-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 95vh;
  margin-top: 5vh;
  background: #111;
  color: #f0f0f0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.6);
}

#cart-sidebar.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2a2a;
}

.cart-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

#cart-close-btn {
  background: none;
  border: 1px solid #444;
  color: #f0f0f0;
  font-size: 16px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

#cart-close-btn:hover {
  background: #222;
  border-color: #666;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-items::-webkit-scrollbar {
  width: 4px;
}

.cart-items::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.cart-items::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  opacity: 0.4;
}

.cart-empty img {
  width: 48px;
  opacity: 0.6;
  filter: invert(1);
}

.cart-empty p {
  font-size: 14px;
  color: #aaa;
}

.cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #2a2a2a;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  background: #222;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.cart-item-variant {
  font-size: 12px;
  color: #888;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 4px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #555;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: 0.2s;
}

.cart-item-remove:hover {
  color: #e05555;
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.cart-tax-note {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: rgb(0, 80, 138);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.checkout-btn:hover {
  background: #0066b8;
  scale: 1.01;
}



.price :nth-child(3)
{
  color: #797979;
  font-size: 16px;
}

.product-details h5
{
  font-size: 16px;
  font-weight: 400;
  color: #bebebe;
}

#benefits
{
  margin-top: 20px;
  margin-bottom: 30px;
}

#popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.popup-content {
  color: rgb(255, 255, 255);
  background: rgb(43, 43, 43);
  width: 90vw;
  padding: 20px;
  margin: 15% auto;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.536);
  max-width: 600px;
  z-index: 6;
}

#closeBtn {
  position: absolute;
  top: 10px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
}

#openBtn
{
  cursor: pointer;
  background-color: aquamarine;
  text-align: center;
  color: #494949;
  font-weight: 600;
  padding: 5px 25px;
  border-radius: 10px;
  transition: 0.3s;
}

#openBtn:hover
{
  color: aquamarine;
  background-color: #494949;
}

#mattress-size
{
  color: #bababa;
}

.sizes
{
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}

.size
{
  background-color: #525252;
  border-radius: 10px;
  padding: 10px;
  font-size: 10px;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}

.size:hover
{
  background-color: white;
  color: black;
}

.confirm
{
  background-color: aquamarine;
  color: #494949;
  margin-bottom: -5px;
}

.margin-top-70
{
  margin-top: 70px;
  margin-bottom: 30px;
}

.bcwrapper
{
  background-color: #2f2f2f;
}

.margintop
{
  margin-top: 25vh;
}

#products
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  justify-self: center;
  padding: 15px;
  gap: 15px;
  width: 95vw;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
  padding-top: 20px;
  overflow-x: hidden;
}

.size.active {
  border: 2px solid rgb(255, 255, 255);
  background: rgb(57, 138, 150);
}






/* =========================
   ORDERS PAGE
========================== */
.orders-page {
  width: 100%;
  min-height: 90vh;
  margin-top: 10vh;
  background: #0d0d0d;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.orders-lookup {
  width: 100%;
  max-width: 480px;
}

.orders-lookup-box {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.orders-lookup-box h2 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.orders-lookup-box p {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.orders-lookup-box input {
  width: 100%;
  padding: 13px 16px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.orders-lookup-box input:focus {
  border-color: rgb(0, 80, 138);
}

.orders-lookup-box input::placeholder {
  color: #555;
}

.orders-lookup-box button {
  padding: 13px;
  background: rgb(0, 80, 138);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}

.orders-lookup-box button:hover {
  background: #0066b8;
  scale: 1.01;
}

.order-error {
  font-size: 13px;
  color: #e05555;
  min-height: 18px;
}

/* =========================
   ORDER RESULTS
========================== */
.orders-results {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.orders-results-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.orders-results-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 4px;
}

.orders-results-header p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

#track-back-btn {
  background: none;
  border: 1px solid #333;
  color: #aaa;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
}

#track-back-btn:hover {
  border-color: #555;
  color: #fff;
}

/* =========================
   ORDER CARD
========================== */
.order-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #1e1e1e;
  flex-wrap: wrap;
  gap: 8px;
}

.order-id {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.order-date {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.order-status {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-processing {
  background: rgba(0, 80, 138, 0.2);
  color: #4da6ff;
}

.status-completed {
  background: rgba(30, 160, 90, 0.2);
  color: #4caf7d;
}

.status-cancelled {
  background: rgba(224, 85, 85, 0.2);
  color: #e05555;
}

.status-on-hold {
  background: rgba(200, 150, 0, 0.2);
  color: #f0b429;
}

.status-pending {
  background: rgba(150, 150, 150, 0.15);
  color: #999;
}

.status-refunded {
  background: rgba(150, 100, 200, 0.2);
  color: #b87fff;
}

.status-out-for-delivery {
  background: rgba(240, 180, 40, 0.2);
  color: #f0b429;
}

/* =========================
   ORDER ITEMS
========================== */
.order-items {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.order-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: #1a1a1a;
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.order-item-name {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.order-item-variant {
  font-size: 12px;
  color: #666;
}

.order-item-qty {
  font-size: 12px;
  color: #888;
}

.order-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* =========================
   ORDER FOOTER
========================== */
.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid #1e1e1e;
  flex-wrap: wrap;
  gap: 8px;
}

.order-total-label {
  font-size: 13px;
  color: #888;
}

.order-total-price {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* =========================
   TIMELINE
========================== */
.order-timeline {
  padding: 20px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 26px;
  width: 2px;
  height: calc(100% + 4px);
  background: #2a2a2a;
}

.timeline-step.done:not(:last-child)::after {
  background: rgb(0, 80, 138);
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #2a2a2a;
  background: #111;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  z-index: 1;
}

.timeline-step.done .timeline-dot {
  background: rgb(0, 80, 138);
  border-color: rgb(0, 80, 138);
  color: white;
}

.timeline-step.active .timeline-dot {
  border-color: rgb(0, 80, 138);
  background: #111;
  box-shadow: 0 0 0 3px rgba(0, 80, 138, 0.25);
}

.timeline-info {
  padding-bottom: 24px;
}

.timeline-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2px;
}

.timeline-step:not(.done):not(.active) .timeline-title {
  color: #555;
}

.timeline-sub {
  font-size: 12px;
  color: #666;
}

/* =========================
   EMPTY / LOADING STATES
========================== */
.orders-empty {
  text-align: center;
  padding: 60px 20px;
  color: #555;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.orders-empty img {
  width: 48px;
  opacity: 0.3;
  filter: invert(1);
}

/* =========================
   MOBILE
========================== */
@media (max-width: 768px) {
  .orders-page {
    padding: 40px 16px;
  }

  .orders-lookup-box {
    padding: 28px 20px;
  }

  .order-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .orders-results-header {
    flex-direction: column;
  }

  .links ul
  {
    display: flex;
    flex-direction: column;
  }
}




.search-box {
  position: relative;
  max-width: 300px;
  margin-right: 10px;
}

#searchInput {
  width: 100%;
  padding: 8px 16px;
  font-size: 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s;
}

#searchInput:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

#searchInput::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

#suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: none;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.highlighted {
  background: rgba(255, 255, 255, 0.08);
}

.suggestion-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  opacity: 0.9;
}

.suggestion-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.suggestion-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.suggestion-name strong {
  font-weight: 700;
  color: #4da6ff;
}

.suggestion-price {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.no-result {
  padding: 14px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}







  


@keyframes glow {
    0% {
        text-shadow: 0 0 10px rgba(120, 90, 255, 0.233);
    }
    50% {
        text-shadow: 0 0 20px rgba(120, 90, 255, 0.525);
    }
    100% {
        text-shadow: 0 0 10px rgba(120, 90, 255, 0.258);
    }
}


@media (max-width: 900px) 
{
  *
  {
    scrollbar-width: none;
  }

    .nav-logo
    {
        height: 40px;
    }

    .logo h3
    {
        font-size: 18px;
    }

    nav
    {
        height: 8vh;
    }

    .search-box
    {
      width: 150px;
    }


    #cart
    {
      height: 25px;
    }

    #cart-sidebar {
    width: 100vw;
  }

    .wave-container 
    {
        width: 65vw;
    }

    @keyframes wave {
  0%   { height: 75px; }
  50%  { height: 90px; } /* 100 + 50 */
  100% { height: 75px; }
}

    .type
    {
        font-size: 30px;
        background-color: transparent;
        width: 90vw;  
        height: 90px;   
    }

    .button
    {
        font-size: larger;
        padding: 8px;
        border: 2px solid white;
        border-radius: 15px;
    }

    .product-image
    {
      height: 84px;
    }

    .inventory-title h1
    {
        font-size: 20px;
        margin-top: 10px;
    }

    .info-container h5
    {
      font-size: 10px;
      margin-top: 10px;
      color: rgb(223, 250, 136);
    }

    #all-products
  {
    height: 150px;
  }

    #t-benefits
    {
      font-size: 16px;
      margin-bottom: 0px;
    }

    .benefits
    {
      grid-template-columns: repeat(auto-fit, minmax(140px, 2fr));
      gap: 10px;
      max-width: 95vw;
      margin-top: -10px;
    }

    .benefit
    {
      width: 140px;
      box-shadow: 0 0 3px rgba(255, 255, 255, 0.668);
    }

    .benefit h3
    {
      font-size: 12px;
      margin-left: 15px;
    }

    .b-icons
    {
      height: 40px;
    }

    .topics
    {
      font-size: 18px;
    }

    .qa
    {
        width: 90vw;
        font-size: 14px;
    }

    .faq
    {
        margin-top: -20px;
        background-color: #2f2f2f;
    }

    .icon
    {
      width: 90vw;
      align-self: center;
      justify-self: center;
    }

    .iconn
    {
      height: 40px;
      padding: 8px;
      box-shadow: 
    0 0 10px rgba(0, 150, 255, 0.8),
    0 0 20px rgba(0, 150, 255, 0.6),
    0 0 40px rgba(0, 150, 255, 0.4);
    }

    .b-preposition
    {
      font-size: 12px;
    }

    #copyright
    {
      font-size: 12px;
    }

    .product-page
    {
      display: flex;
      flex-direction: column;
      margin-left: 0px;
      margin-right: 0px;
    }

    .thumbs
    {
      display: flex;
      flex-direction: row;
      display: none;
    }

    .main-image img
    {
      margin-top: -20px;
      margin-left: -37px;
      width: 100vw;
      border-radius: 0px;
    }

    .product-details h5
    {
      font-size: 14px;
    }

    .price 
    {
      font-size: 16px;
      margin: 20px 0;
    }

    .product-details h1 
    {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .product-details
    {
      margin: -30px;
    }

    #popup
    {
      margin-top: 50px;
    }

    .catmat
    {
        width: 350px;
    }

    .margintop
    {
      margin-top: 0vh;
    }

    .slider
    { 
      margin-top: 3vh;
    }
}

:root{
  --glow-thickness:3px;          /* underline thickness */
  --glow-gap: 6px;                /* space between text baseline and underline */
  --glow-duration: 2s;          /* animation speed */
  --glow-blur: 6px;              /* glow blur radius */
  --glow-opacity: 0.85;           /* glow intensity */
  --glow-angle: 90deg;            /* gradient angle */
  /* default gradient colors (you can replace with any colors) */
  --g1: #ff4d4d;
  --g2: #ff7b4d;
  --g3: #ffd14d;
  --g4: #6effa1;
  --g5: #4dd9ff;
}

.glow-underline {
  position: relative;
  display: inline-block; /* works on inline elements; use inline-block on headings/links */
  padding-bottom: calc(var(--glow-gap) + var(--glow-thickness)); /* reserve space */
  color: inherit;
  text-decoration: none;
}

/* the actual colored bar */
.glow-underline::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--glow-thickness);
  bottom: var(--glow-gap);
  border-radius: calc(var(--glow-thickness) / 2);
  background: linear-gradient(var(--glow-angle),
    var(--g1) 0%,
    var(--g2) 25%,
    var(--g3) 50%,
    var(--g4) 75%,
    var(--g5) 100%);
  background-size: 200% 100%; /* allows sliding effect */
  z-index: 1;
  /* soft inner glow */
  box-shadow: 0 0 calc(var(--glow-blur) / 2) rgba(0,0,0,0.12) inset;
  /* animate the gradient */
  animation: gradientShift var(--glow-duration) linear infinite;
}

/* slightly bigger blurred glow layer behind the bar */
.glow-underline::before{
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  height: calc(var(--glow-thickness) * 1.6);
  bottom: calc(var(--glow-gap) - (var(--glow-thickness) * 0.3));
  border-radius: calc(var(--glow-thickness) * 0.9);
  background: linear-gradient(var(--glow-angle),
    var(--g1) 0%,
    var(--g2) 25%,
    var(--g3) 50%,
    var(--g4) 75%,
    var(--g5) 100%);
  background-size: 200% 100%;
  filter: blur(var(--glow-blur));
  opacity: var(--glow-opacity);
  z-index: 0;
  animation: gradientShift var(--glow-duration) linear infinite;
  pointer-events: none;
}

/* Animation: slide gradient left→right and back (smooth loop) */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .glow-underline::after,
  .glow-underline::before {
    animation: none;
  }
}













/* =========================
   LOADER
========================== */
#loader {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.338);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}



/* =========================
   CHECKOUT SIDEBAR
========================== */
#checkout-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9997;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#checkout-overlay.active {
  display: block;
  opacity: 1;
}

#checkout-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: #111;
  border-left: 1px solid #2a2a2a;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

#checkout-sidebar.open {
  transform: translateX(0);
}

.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #2a2a2a;
  flex-shrink: 0;
}

.checkout-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

#checkout-close {
  background: none;
  border: 1px solid #444;
  color: #f0f0f0;
  font-size: 16px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

#checkout-close:hover {
  background: #222;
  border-color: #666;
}

.checkout-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkout-body::-webkit-scrollbar {
  width: 3px;
}

.checkout-body::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.checkout-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Summary */
.checkout-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #2a2a2a;
}

.checkout-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.checkout-item-info {
  flex: 1;
}

.checkout-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 3px;
}

.checkout-item-variant {
  font-size: 12px;
  color: #666;
}

.checkout-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 0;
  border-top: 1px solid #2a2a2a;
}

.checkout-total-label {
  font-size: 14px;
  color: #888;
}

.checkout-total-price {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* Fields */
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-fields input {
  width: 100%;
  padding: 11px 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.checkout-fields input:focus {
  border-color: rgb(0, 80, 138);
}

.checkout-fields input::placeholder {
  color: #555;
}

/* Payment */
.checkout-payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.checkout-payment-option.active {
  border-color: rgb(0, 80, 138);
  background: rgba(0, 80, 138, 0.1);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #444;
  flex-shrink: 0;
  transition: 0.2s;
}

.checkout-payment-option.active .payment-radio {
  border-color: rgb(0, 80, 138);
  background: rgb(0, 80, 138);
  box-shadow: inset 0 0 0 3px #111;
}

.payment-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.payment-sub {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

/* Place Order */
#place-order-btn {
  width: 100%;
  padding: 14px;
  background: rgb(0, 80, 138);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

#place-order-btn:hover {
  background: #0066b8;
  scale: 1.01;
}

#place-order-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  scale: 1;
}

.checkout-error {
  font-size: 13px;
  color: #e05555;
  min-height: 16px;
}

.checkout-note {
  font-size: 11px;
  color: #444;
  text-align: center;
  margin: 0;
}

/* Success screen */
.checkout-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
  height: 100%;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 160, 90, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #4caf7d;
}

.checkout-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.checkout-success p {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.success-order-id {
  font-size: 13px;
  color: #4da6ff;
  background: rgba(0, 80, 138, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
}

.checkout-success button {
  padding: 12px 28px;
  background: rgb(0, 80, 138);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  #checkout-sidebar {
    width: 100vw;
    border-left: none;
  }
}

.refund-heading
{
  font-size: 12px;
  color: #0091ff;
  margin-top: 100px;
  margin-bottom: 10px;
  margin-left: 20px;
  font-size: 18px;
}

.refund-subheading
{
  font-size: 14px;
  color: #e1e1e1;
  margin-left: 20px;
}

.refund-text
{
  font-size: 14px;
  color: #e1e1e1;
  margin: 20px;
  margin-top: 10px;
}

.link
{
  font-size: 12px;
  color: #b1b1b1;
}

.links
{
  margin-bottom: 20px;
  width: 80vw;
  justify-self: center;
}

.links ul
{
  display: flex;
  justify-content: space-between;
}

#deliveryNoticeOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  #deliveryNoticeOverlay.show {
    opacity: 1;
    visibility: visible;
  }

  #deliveryNoticeCard {
    background: #ffffff1a;
    backdrop-filter: blur(8px);
    border: 1px solid #ffffff;
    max-width: 380px;
    width: 90%;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
  }

  #deliveryNoticeOverlay.show #deliveryNoticeCard {
    transform: translateY(0) scale(1);
  }

  #deliveryNoticeCard .icon {
    font-size: 38px;
    margin-bottom: 10px;
  }

  #deliveryNoticeCard h3 {
    margin: 0 0 12px;
    font-size: 19px;
    color: #ffffff;
    font-weight: 600;
  }

  #deliveryNoticeCard p {
    margin: 0 0 20px;
    font-size: 14.5px;
    line-height: 1.5;
    color: #dbdbdb;
  }

  #deliveryNoticeCard button {
    background: rgb(0, 80, 138);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  #deliveryNoticeCard button:hover {
    background: #fcfcfc;
    color: rgb(0, 80, 138);
  }



  #imageDots {
  display: none;
  position: absolute;
  bottom: 14px;
  left: 45%;
  transform: translateX(-50%);
  gap: 8px;
  z-index: 5;
}

.img-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.img-dot.active-dot {
  background: #ffffff;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  #imageDots {
    display: flex;
  }
}



#myOrders
{
  cursor: pointer;
  height: 20px;
  width: 20px;
  filter: invert(1);
  margin-left: 10px;
  transition: transform 0.2s ease;
}

#myOrders:hover
{
  transform: scale(1.1);
}



/* ===========================
   LOGIN MODAL
=========================== */

.login-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn .25s ease;
}

.login-modal.show{
    display:flex;
}

.login-card{
    position:relative;
    width:420px;
    max-width:92%;
    background:#171717;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:35px 30px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
    animation:popup .25s ease;
}

.login-card h2{
    color:#fff;
    text-align:center;
    margin-bottom:10px;
    font-size:30px;
    font-weight:700;
}

.login-card p{
    color:#a5a5a5;
    text-align:center;
    margin-bottom:28px;
    line-height:1.5;
}

.login-card input{
    width:100%;
    height:52px;
    background:#252525;
    border:1px solid #333;
    border-radius:12px;
    color:#fff;
    font-size:16px;
    padding:0 16px;
    margin-bottom:18px;
    transition:.25s;
    outline:none;
    box-sizing:border-box;
}

.login-card input:focus{
    border-color:#0A84FF;
    box-shadow:0 0 0 3px rgba(10,132,255,.18);
}

.login-card input::placeholder{
    color:#888;
}

.login-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    background:#0A84FF;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.login-btn:hover{
    background:#2b95ff;
    transform:translateY(-2px);
}

.login-links{
    margin-top:22px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
}

.login-links a{
    color:#0A84FF;
    text-decoration:none;
    font-size:14px;
}

.login-links a:hover{
    text-decoration:underline;
}

.close-login{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#262626;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    transition:.25s;
}

.close-login:hover{
    background:#353535;
    transform:rotate(90deg);
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(20px) scale(.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@media(max-width:480px){

    .login-card{
        width:92%;
        padding:28px 22px;
    }

    .login-card h2{
        font-size:26px;
    }

    .login-links{
        flex-direction:column;
        align-items:center;
    }

}



.orders-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
}

.orders-modal.show { display: flex; }

.orders-box {
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  background: #111;
  color: #fff;
  border-radius: 20px;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Header */
.orders-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  background: #111;
  z-index: 1;
}

.orders-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.orders-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #3ecfcf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.orders-greeting {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.orders-subtitle {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.orders-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

#logoutBtn {
  padding: 7px 14px;
  border: 1px solid #333;
  border-radius: 8px;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: 0.2s;
}

#logoutBtn:hover {
  background: #1e1e1e;
  color: #fff;
  border-color: #555;
}

#closeOrders {
  background: none;
  border: none;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

#closeOrders:hover { color: #fff; }

/* Orders list */
#ordersList {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.order-card:hover { border-color: #444; }

.order-top {
  display: flex;
  gap: 16px;
  padding: 18px;
  align-items: flex-start;
}

.order-image {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  background: #222;
  flex-shrink: 0;
}

.order-info { flex: 1; }

.order-info h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}

.variation {
  color: #6c9fff;
  font-size: 13px;
  margin: 0 0 10px;
}

.order-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  margin-bottom: 10px;
}

.order-meta-item {
  font-size: 13px;
  color: #aaa;
}

.order-meta-item span {
  color: #fff;
  font-weight: 500;
}

.status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status.pending    { background: rgba(245,197,66,0.15); color: #f5c542; border: 1px solid #f5c54240; }
.status.processing { background: rgba(52,152,219,0.15); color: #3498db; border: 1px solid #3498db40; }
.status.completed  { background: rgba(46,204,113,0.15); color: #2ecc71; border: 1px solid #2ecc7140; }
.status.cancelled  { background: rgba(231,76,60,0.15);  color: #e74c3c; border: 1px solid #e74c3c40; }
.status.on-hold    { background: rgba(230,126,34,0.15); color: #e67e22; border: 1px solid #e67e2240; }

/* Timeline */
.order-timeline {
  padding: 14px 18px;
  border-top: 1px solid #222;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #2a2a2a;
  z-index: 0;
}

.timeline-step.done:not(:last-child)::after,
.timeline-step.active:not(:last-child)::after {
  background: #6c63ff;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.timeline-step.done .timeline-dot {
  background: #6c63ff;
  border-color: #6c63ff;
}

.timeline-step.active .timeline-dot {
  background: #fff;
  border-color: #6c63ff;
  box-shadow: 0 0 0 3px rgba(108,99,255,0.3);
}

.timeline-label {
  font-size: 10px;
  color: #666;
  margin-top: 5px;
  line-height: 1.3;
}

.timeline-step.done .timeline-label,
.timeline-step.active .timeline-label {
  color: #aaa;
}

/* Actions */
.order-actions {
  padding: 12px 18px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  gap: 10px;
}

.cancel-order-btn {
  padding: 8px 16px;
  border: 1px solid #e74c3c40;
  border-radius: 8px;
  background: rgba(231,76,60,0.1);
  color: #e74c3c;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}

.cancel-order-btn:hover {
  background: rgba(231,76,60,0.2);
}

.no-orders {
  text-align: center;
  padding: 60px 20px;
  color: #555;
}

.no-orders-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.no-orders p {
  font-size: 15px;
  color: #666;
}

/* Mobile */
@media (max-width: 500px) {
  .order-top { flex-direction: column; }
  .order-image { width: 100%; height: 180px; border-radius: 10px; }
  .order-meta { grid-template-columns: 1fr; }
}

.orders-greeting {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 500px) {
  .orders-greeting {
    max-width: 120px;
    font-size: 13px;
  }
  .orders-subtitle { font-size: 11px; }
  #logoutBtn { padding: 5px 10px; font-size: 12px; }
  #closeOrders { font-size: 18px; }
}