/* base.css */
*{
  overflow-x: none;
}
html {
  height: auto;
  position: relative;
  overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
  -user-drag: none;
}

body {
  height: auto;
  font-family: 'Inter', 'Roboto', 'Helvetica', 'sans-serif';
  margin: 0;
  position: relative;
  min-height: 100vh;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: background-color 0.5s ease, color 0.5s ease;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase; /* Make all text uppercase */
  overflow-x: hidden;
}


.page-wrapper {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding-bottom: 150px; /* Adjust if footer added */
}

.main-content {

  transition: transform 0.5s ease;
}

.floating-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--button-bg);
  color: var(--button-text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px var(--shadow-color);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-size: 20px;

}

.floating-btn:hover {
  background-color: var(--button-hover);
}

/* Specific Icon Sizes if needed */
.floating-btn i {
  font-size: 24px;
}

.floating-btn.top-btn {
  display: none;
  /* position, background, size, etc. */
}


.floating-btn.top-btn.show {
  opacity: 1;
  visibility: visible;
}


/* Bottom Left Floating Buttons */
.floating-left {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

/* Cart Button */
.floating-btn.cart-btn {
  background-color: var(--button-bg);
  color: var(--button-text);
  position: relative;
}

.floating-btn.cart-btn:hover {
  background-color: var(--button-hover);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  bottom: -3px;
  right: -4px;
  background-color: var(--accent-color);
  color: var(--text-color);
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  box-shadow: 0 0 4px var(--shadow-color);
}



/* Light Theme */
[data-theme="light"] {
  --background-color: #F3EFE9; /* Warm ivory background */
  --text-color: #2C2C2C; /* Deep charcoal for contrast */
  --video-desc-color: #cecece; /* Slightly darker ivory for sections */
  --border-color: #C4BBA9; /* Neutral soft border */
  --footer-bg: #EFEAE2; /* Slightly darker ivory */
  --footer-text: #2C2C2C;

  --link-color: #A48C5B; /* Muted antique gold */
  --link-hover: #353535; /* Richer hover tone */
  --active-bg: #A48C5B;
  --active-text: #ffffff;
  --expired-bg: #c25757;
  --expired-text: #ffffff;

  --secondary-bg: #FFFFFF; /* white used sparingly for cards */
  --secondary-text: #aaaaaa;
  --secondary-text-brand: #696969;

  --accent-color: #A48C5B;
  --accent-hover: #8F7B4E;

  --button-bg: #1C1F2A; /* Deep navy for CTAs */
  --button-text: #ffffff;
  --button-hover: #2A2F3B;

  --success-bg: #17881a;
  --success-text: #ffffff;
  --warning-bg: #E0A800;
  --warning-text: #ffffff;
  --error-bg: #D9534F;
  --error-text: #1d1d1d;
  --running-bg: #2E86C1;
  --running-text: #ffffff;

  --shadow-color: rgba(44, 44, 44, 0.08); /* Soft charcoal shadow */

  --coral-peach: #EFD8C5;
  --rose-blush: #F3E0DC;
  --mint-green: #D5E3DC;
  --lime-punch: #DFE2C3;
  --sky-blue: #C8DDEB;
  --arctic-teal: #B8DAD7;
  --orchid-purple: #D4C4E0;
  --dusty-lavender: #E0DAE9;

  --text-muted: #616161;
}




/* Dark Theme */
[data-theme="dark"] {
  --background-color: #111b2b;
  --text-color: #e8d8b9;
  --video-desc-color: #cccccc;
  --border-color: #5a6473;
  --footer-bg: #2c3441;
  --footer-text: #a0a0b2;

  --link-color: #a9a0c1;
  --link-hover: #c07f3b;
  --active-bg: #b89a57;
  --active-text: #111b2b;
  --expired-bg: #b90101;
  --expired-text: #ffffff;
  
  --secondary-bg: #1d2d47;
  --secondary-text: #a0a0b2;
  --secondary-text-brand: #c9c9c9;

  --accent-color: #c07f3b;
  --accent-hover: #e8d8b9;

  --button-bg: #2e7d5b;
  --button-text: #ffffff;
  --button-hover: #1f4e5f;

  --success-bg: #66bb6a;
  --success-text: #111b2b;
  --warning-bg: #ffa726;
  --warning-text: #111b2b;
  --error-bg: #b10d0b;
  --error-text: #ffffff;
  --running-bg: #42a5f5;
  --running-text: #111b2b;

  --shadow-color: rgba(255, 255, 255, 0.1);
  
  --coral-peach: #2c2c2c;
  --rose-blush: #ffd4d4;
  --mint-green: #a8e6cf;
  --lime-punch: #c0ff61;
  --sky-blue: #7ec8e3;
  --arctic-teal: #00c2cb;
  --orchid-purple: #b388eb;
  --dusty-lavender: #d6c6e1;
  
  --text-muted: #aaa;
}