/* common styles shared across all pages */
html {
  scroll-behavior: smooth;
  height: 80%;
}

body {
  background-color: #F7E3C3;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  padding-bottom: 3rem;
  flex: 1 0 auto;
  min-height: auto;
}

h1,
h2 {
  color: #2c281b;
}

/* button smoothing to*/
.btn,
.btn-back-home,
.login-container button,
.navbar-dark .nav-link {
  transition: background-color 0.2s ease, color 0.2s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}

.btn:hover,
.btn-back-home:hover,
.login-container button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* profile avatar in navbar */
.profile-avatar {
  width: 50px;
  /* larger size for visibility */
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  /* space between avatar and brand text when placed left */
  margin-right: 8px;
  /* make avatar stand out against light backgrounds */
  border: 2px solid #B26B08;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* larger avatar for profile page */
.profile-avatar-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* navbar styling - header with opacity */
.navbar-light {
  background-color: rgba(248, 205, 148, 0.85) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0 !important;
  min-height: auto;
}

.navbar-light .container {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.navbar-light .navbar-brand {
  color: #2C281B !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  padding: 0.25rem 0 !important;
}

/* brand logo in navbar */
.navbar-brand-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0.5rem;
  border: 2px solid #B26B08;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.navbar-light .nav-link {
  color: #2c281b;
  font-weight: 500;
  margin: 0 4px;
  padding: 0.25rem 0.5rem !important;
  font-size: 0.95rem;
}

.navbar-light .nav-link:hover {
  color: #B26B08;
  /* button color */
}

.navbar-light .nav-link.active {
  color: #B26B08;
  /* button color */
  font-weight: 600;
}

/* order Now button - #B26B08 */
a.btn.btn-order-now,
.btn.btn-order-now,
button.btn-order-now {
  background-color: #B26B08 !important;
  color: #ffffff !important;
  border: none !important;
  border-color: #B26B08 !important;
  padding: 12px 28px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

a.btn.btn-order-now:hover,
.btn.btn-order-now:hover,
button.btn-order-now:hover {
  background-color: #8d5506 !important;
  /* darker shade */
  color: #ffffff !important;
  border-color: #8d5506 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(178, 107, 8, 0.4) !important;
}

/* dark buttons - use #B26B08 */
.btn-dark {
  background-color: #B26B08 !important;
  border-color: #B26B08 !important;
  color: #ffffff !important;
}

.btn-dark:hover {
  background-color: #8d5506 !important;
  /* darker shade */
  border-color: #8d5506 !important;
  transform: translateY(-1px);
}

/* back to Home button - #B26B08 */
.btn-back-home {
  display: inline-block;
  margin: 16px;
  padding: 8px 16px;
  background-color: #B26B08;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: auto;
}

/* compact arrow button for login/register pages (when used without .btn class) */
a.btn-back-home:not(.btn) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 6px;
}

.btn-back-home:hover {
  background-color: #8d5506 !important;
  /* darker shade */
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: #B26B08 !important;
  border-color: #B26B08 !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background-color: #8d5506 !important;
  border-color: #8d5506 !important;
  color: #ffffff !important;
}

/* footer */
.footer-custom {
  background-color: #FFF1DD;
  border-top: none;
  margin-top: auto;
  padding: 2rem 0;
  position: relative;
  clear: both;
  width: 100%;
  flex-shrink: 0;
}

.footer-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #2c281b;
}

.footer-copyright {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
  margin-top: 0.5rem;
}

/* Add to Cart button styling */
button.btn.btn-order-now {
  background-color: #B26B08 !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600 !important;
}

button.btn.btn-order-now:hover {
  background-color: #8d5506 !important;
  color: #ffffff !important;
}

/* homepage specific styles */
.hero-main {
  padding: 3rem 0 2rem;
}

.hero-panel {
  background: radial-gradient(circle at top left, #6a3f23, #4e2a1a, #8b532d);
  padding: 2.5rem 3rem;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.hero-main-heading {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-main-subtitle {
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto;
  opacity: 0.95;
}

.hero-side-circle,
.hero-main-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #f4c17a;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.55);
}

.hero-side-img,
.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cta-primary,
.hero-cta-secondary {
  min-width: 140px;
}

.hero-cta-secondary {
  border-width: 2px;
}

.best-sellers-section {
  margin-top: 3rem;
}

.best-sellers-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}

.best-sellers-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2C281B;
}

.best-seller-link {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.best-seller-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  /* space between image and text */
  background-color: #5a3720;
  color: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* smooth transition */
}

/* Hover effect */
.best-seller-card:hover {
  transform: scale(1.05);
  /* umaangat 10px */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  /* mas malakas na shadow */


}

.menu-item-card {
  background-color: #4b2e1b;
  color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  border: none;
}

.best-seller-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-seller-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text container */
.best-seller-text {
  display: flex;
  flex-direction: column;
}

/* Price & name side by side */
.best-seller-top {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

/* Description below */
.best-seller-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Price & Name styling */
.best-seller-price {
  font-size: 0.9rem;
  opacity: 0.9;
}

.best-seller-name {
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero-panel {
    text-align: center;
  }
}

/* cart page specific styles */
#specialInstructions {
  pointer-events: auto !important;
  z-index: 1;
  position: relative;
  background-color: #ffffff !important;
  border: 1px solid #ced4da !important;
  color: #2C281B !important;
  width: 100%;
}

#specialInstructions:focus {
  border-color: #B26B08 !important;
  box-shadow: 0 0 0 0.2rem rgba(178, 107, 8, 0.25) !important;
  outline: none !important;
}


.card.shadow-sm {
  margin-bottom: 0;
}

.card.shadow-sm.mb-4 {
  margin-bottom: 1.5rem !important;
}

/*  spacing in cart layout */
.row.g-4 {
  margin-bottom: 2rem;
}

/* contact page specific styles */
/* cards hover effect */
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
  border-color: #B26B08 !important;
}

/* login / register page specific styles */

/* New login page with background image */
.login-page-body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
  background: url('images/LOGIN.jpg') center center / cover no-repeat;
  background-attachment: fixed;
}

.login-page-body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 241, 221, 0.7);
  /* Semi-transparent beige overlay */
  z-index: 0;
  backdrop-filter: blur(2px);
}

.login-page-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

/* Brand name in top-left */
.login-brand {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;

}

.login-brand a {
  color: #2C281B;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-brand a:hover {
  color: #2C281B;
  text-decoration: none;
}

/* New login container */
.login-container-new {
  max-width: 420px;
  width: 30%;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.login-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #2C281B;
  margin-bottom: 1.5rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-container-new form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.login-container-new .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login-container-new .form-group label {
  color: #2C281B;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-container-new .form-group input {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  color: #2C281B;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-container-new .form-group input:focus {
  outline: none;
  border-color: #B26B08;
  box-shadow: 0 0 0 3px rgba(178, 107, 8, 0.1);
}

.login-container-new .form-group input::placeholder {
  color: #999;
}

@media (max-width: 768px) {
  .login-brand {
    position: relative;
    top: 0;
    left: 0;
    align-self: flex-start;
    margin-bottom: 1rem;
  }

  .login-brand a {
    font-size: 1.5rem;
  }

  .login-container-new {
    width: 90%;
    max-width: 420px;
  }
}

/* Password input wrapper with eye icon */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 45px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s ease;
  z-index: 1;
}

.password-toggle:hover {
  color: #2C281B;
}

.password-toggle:focus {
  outline: none;
  color: #B26B08;
}

.password-toggle .eye-icon {
  font-size: 1.1rem;
  user-select: none;
  pointer-events: none;
}

/* Password toggle for original login-container (register page) */
.login-container .password-input-wrapper input {
  padding-right: 45px;
}

.forgot-password-link {
  text-align: right;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.forgot-password-link a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.forgot-password-link a:hover {
  color: #2C281B;
  text-decoration: underline;
  transform: none;
}

.login-button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #FF6B35;
  /* Vibrant orange color */
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 0.5rem;
}

.login-button:hover {
  background-color: #E55A2B;
  /* Slightly darker orange */
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.signup-link {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.signup-link a {
  color: #2C281B;
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  color: #B26B08;
  text-decoration: underline;
  transform: none;
}

/* Original login container (for register page compatibility) */
.login-container {
  max-width: 380px;
  margin: 60px auto;
  padding: 24px 28px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.login-container h2 {
  margin-bottom: 1rem;
  text-align: center;
}

.login-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.login-container input {
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.login-container button {
  padding: 8px 10px;
  border: none;
  border-radius: 4px;
  background-color: #B26B08;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-container button:hover {
  background-color: #8d5506;
  /* darker shade */
  transform: translateY(-1px);
}

.login-container p {
  text-align: center;
  font-size: 0.9rem;
}

.menu-card,
.card.h-100.shadow-sm.border-0 {
  display: flex;
  gap: 1rem;
  background-color: rgb(250, 231, 187);
  color: #fff;
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;

}

.menu-card:hover,
.card.h-100.shadow-sm.border-0:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);

}

.col-md-7.p-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Card title (drink name) */
.card-title.fw-bold {
  font-weight: 700;
  font-size: 1rem;
  color: #0e0d0d !important;
}

/* Price */
p.fw-bold.mb-2 {
  font-size: 0.9rem;
  color: #B26B08;
  margin-bottom: 0.5rem;
}

/* Button group */
.btn-group-sm button {
  font-size: 0.8rem;
  padding: 6px 10px;
  white-space: nowrap;
  max-width: 120px;
  width: auto;
}

/* Right side: image container */
.menu-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
  background-color: #EAD7C0;
  /* cream color */
}

.menu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 1rem 1rem 0;
}

/* Wings Flavor Buttons & Local Cart */
.flavor-btn {
  color: #2C281B;
  border-color: #2C281B;
  font-weight: 500;
  transition: all 0.2s ease;
}

.flavor-btn:hover,
.flavor-btn:active {
  background-color: #2C281B !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(114, 77, 25, 0.2);
}

.local-cart-panel {
  border-color: #eaddcd !important;
}

.wings-cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #eaddcd;
}

.wings-cart-item:last-child {
  border-bottom: none;
}

/* Responsive: stack for mobile */
@media (max-width: 768px) {
  .menu-card,
  .card.h-100.shadow-sm.border-0 {
    flex-direction: column;
    text-align: center;
  }

  .menu-image-container {
    height: 180px !important;
    width: 140px !important;
    min-height: 180px !important;
    margin: 0 auto 1.5rem auto !important; /* Center it horizontally */
    border-radius: 1rem !important; /* Use completely rounded corners on all sides */
    box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important; /* Add some depth */
  }

  .menu-image-container img {
    border-radius: 1rem !important;
  }

  .btn,
  button,
  a.btn {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 20px !important;
  }

  /* navbar brand smaller on mobile */
  .navbar-light .navbar-brand {
  font-size: 1.25rem !important;
}

.navbar-light .nav-link {
  font-size: 1rem !important;
  margin: 0 2px !important;
  padding: 0.2rem 0.4rem !important;
}

.btn.btn-order-now {
  padding: 0.35rem 0.8rem !important;
  font-size: 0.85rem !important;
}

/* spacing for cards on mobile */
.card {
  margin-bottom: 1rem;
}

/* quantity buttons easier to tap */
.btn-group-sm .btn {
  min-height: 40px;
  min-width: 40px;
  padding: 8px 12px;
}

/* stack cart columns on mobile */
.row.g-4>[class*="col-"] {
  margin-bottom: 1.5rem;
}

/* better padding on mobile */
main {
  padding: 2rem 0;
}

/* foooter adjustments */
.footer-custom {
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

/* Login page mobile optimizations */
.login-brand {
  position: relative;
  top: 0;
  left: 0;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.login-brand a {
  font-size: 1.25rem;
}

.login-container-new {
  padding: 2rem 1.5rem;
  max-width: 100%;
  margin: 0 1rem;
}

.login-title {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.login-page-wrapper {
  padding: 1rem;
}

/* optimizations for homepage */

.hero-heading {
  font-size: 2.5rem !important;
}

/* mobileoptimizations for cart */

#specialInstructions {
  font-size: 16px;
  min-height: 120px;
}
}


/* touch device optimizations */
@media (hover: none) and (pointer: coarse) {

  .btn:active,
  .btn-back-home:active,
  button:active {
    transform: scale(0.98);
  }

  /* arger tap targets */
  .nav-link {
    padding: 12px 8px;
  }
}

.aboutus {
  height: 300px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutus img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.aboutus2 {
  height: 300px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.aboutus2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* About page (structure + styling to match reference image) */
body:has(.about-page) {
  background-color: #F7E3C3;
}

.about-page {
  padding: 3.5rem 0 4rem;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.02)),
    linear-gradient(180deg, #F7E3C3 50%, #8a5c3c 100%);
}

.about-wrap {
  position: relative;
  max-width: 980px;
}

.about-topbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.about-topbar .btn.btn-secondary {
  background: #8d5506(218, 128, 10, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: rgba(247, 242, 242, 0.92) !important;
  border-radius: 999px !important;
  padding: 10px 16px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.about-topbar .btn.btn-secondary:hover {
  background: rgba(133, 86, 12, 0.18) !important;
  border-color: rgba(8, 8, 8, 0.38) !important;
  transform: translateY(-2px);
}

.about-hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(7, 7, 7, 0.95);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 2rem;
}

.about-kicker {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(5, 5, 5, 0.78);
  font-size: 0.95rem;
  letter-spacing: 0.25px;
  margin-bottom: 0.5rem;
}

.about-display {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(216, 111, 12, 0.95);
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  max-width: 760px;
  margin: 0;
}

.about-rule {
  height: 1px;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.28);
  margin-top: 1.5rem;
}

.about-block-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: rgba(12, 12, 12, 0.82);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.about-block-text {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(14, 13, 13, 0.88);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.about-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-float {
  position: absolute;
  pointer-events: none;
}

.about-float--right {
  right: -22px;
  top: 190px;
}

.about-float--left {
  left: -22px;
  top: 290px;
}

.about-float-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.about-float-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.about-gallery-title {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(219, 124, 16, 0.95);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 0.75rem;
}

.about-gallery-subtitle {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(5, 5, 5, 0.78);
  margin-bottom: 1.75rem;
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  align-items: stretch;
  position: relative;
  padding: 22px;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

.about-tile {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.about-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.about-tile--a {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
  min-height: 220px;
}

.about-tile--b {
  grid-column: 5 / span 4;
  grid-row: 1 / span 3;
  min-height: 340px;
}

.about-tile--c {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
  min-height: 220px;
}

.about-tile--d {
  grid-column: 1 / span 4;
  grid-row: 3 / span 2;
  min-height: 220px;
}

.about-tile--e {
  grid-column: 9 / span 4;
  grid-row: 3 / span 2;
  min-height: 220px;
}

@media (max-width: 992px) {
  .about-floats {
    display: none;
  }

  .about-collage {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }

  .about-tile--a,
  .about-tile--b,
  .about-tile--c,
  .about-tile--d,
  .about-tile--e {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }
}

@media (max-width: 576px) {
  .about-collage {
    grid-template-columns: 1fr;
  }

  .about-tile--a,
  .about-tile--b,
  .about-tile--c,
  .about-tile--d,
  .about-tile--e {
    min-height: 210px;
  }
}

/* Basic hover for all buttons */
.btn:hover {
  background-color: #8d5506 !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Smooth transitions  */
.card,
img,
h1,
h5,
p,
a,
.btn {
  transition: 0.25s ease;
}

/*  Images hover */
img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

/* Cards hover  */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Text hover (headings + paragraphs) */
h1:hover,
h5:hover,
p:hover {
  transform: translateY(-3px);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

/* Links + Navbar links  */
a:hover {
  transform: translateY(-2px);
  text-decoration: underline;
}

/* Buttons hover */
.btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

p a {
  /*hyperlink ng wednesday to monday in menu*/
  color: inherit;
  text-decoration: none;
}

/* Admin Dashboard Styles */
.admin-body {
  margin: 0;
  padding: 0;
  background-color: #F5F5F5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 200px;
  background-color: #FFE5CC;
  min-height: 100vh;
  padding: 1.5rem 1rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  margin-bottom: 1.5rem;
}

.sidebar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C281B;
  margin: 0;
  margin-bottom: 0.25rem;
}

.sidebar-role {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  color: #2C281B;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 0.9rem;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #2C281B;
}

.nav-item.active {
  background-color: #FFF1DD;
  color: #2C281B;
  font-weight: 600;
}

.nav-icon {
  font-size: 1rem;
}

/* Main Content */
.admin-main {
  margin-left: 200px;
  flex: 1;
  padding: 2rem;
  background-color: #F5F5F5;
  min-height: 100vh;
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C281B;
  margin-bottom: 2rem;
}

/* Metrics Cards */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-card {
  background-color: #E8E8E8;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.metric-label {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C281B;
  margin: 0;
}

/* Section Cards */
.section-card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C281B;
  margin-bottom: 1.5rem;
}

/* Sales Overview */
.sales-trend {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.sales-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C281B;
}

.sales-change {
  font-size: 0.9rem;
  color: #6c757d;
}

.sales-change.positive {
  color: #28a745;
}

.chart-container {
  height: 300px;
  position: relative;
}

/* Tables */
.table-container {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #FFFFFF;
  min-width: 800px;
}

.admin-table thead {
  background-color: #F5F5F5;
}

.admin-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #2C281B;
  border-bottom: 2px solid #E8E8E8;
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #E8E8E8;
  color: #2C281B;
}

.admin-table tbody tr:hover {
  background-color: #F9F9F9;
}

.admin-table tbody tr:last-child td {
  border-bottom: none;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  background-color: #E8E8E8;
  color: #2C281B;
}

.status-badge.completed {
  background-color: #E8E8E8;
  color: #2C281B;
}

.status-badge.shipped {
  background-color: #E8E8E8;
  color: #2C281B;
}

.status-badge.processing {
  background-color: #E8E8E8;
  color: #2C281B;
}

/* Search and Filters */
.search-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.search-box-container {
  margin-bottom: 1.5rem;
}

.search-box {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  max-width: 400px;
}

.search-icon {
  margin-right: 0.5rem;
  color: #6c757d;
}

.search-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.95rem;
  color: #2C281B;
  background: transparent;
}

.search-input::placeholder {
  color: #9e9e9e;
}

.filters {
  display: flex;
  gap: 0.75rem;
}

.filter-select {
  padding: 0.5rem 1rem;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  background-color: #FFFFFF;
  color: #2C281B;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-select:hover {
  border-color: #B26B08;
}

.filter-select:focus {
  border-color: #B26B08;
  box-shadow: 0 0 0 0.2rem rgba(178, 107, 8, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .admin-sidebar {
    width: 180px;
    padding: 1.25rem 0.75rem;
  }

  .admin-main {
    margin-left: 180px;
    padding: 1.5rem;
  }

  .metrics-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .search-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    max-width: 100%;
  }

  .filters {
    flex-direction: column;
  }

  .admin-table {
    font-size: 0.85rem;
  }

  .admin-table th,
  .admin-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 576px) {
  .admin-sidebar {
    width: 100%;
    position: relative;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .admin-main {
    margin-left: 0;
  }
}

.page-title {
  font-size: 1.5rem;
}

.chart-container {
  height: 200px;
}