/* ==========================================================================
   Main
   ========================================================================== */

:root {
  --primary:       #0088cc;       /* your new main accent color - rgb(0,136,204) */
  --primary-dark:  #006699;       /* darker hover version - auto-calculated shade */
  --primary-light: #3399dd;       /* lighter version for hover/active states */

  --accent:        #0088cc;       /* same as primary for consistency */
  --accent-dark:   #006699;

  --danger:        #ff4444;       /* keep red for errors/sales, or change to #cc0000 if you want softer */
  --warning:       #ffcc00;       /* yellow/gold for discounts */

  /* Optional: if you want success green to match blue theme better */
  --success:       #28a745;       /* or #00aa66 for greener-blue */

  /* Keep dark/light as before, or adjust if needed */
  --dark:          #111111;
  --dark-bg:       #0a0a0a;       /* if you still use dark elements */
  --gray:          #888888;
  --border:        #cccccc;       /* lighter borders on white bg */
  --light:         #ffffff;
  --text:          #333333;
}


.top-notice-bar {
  background: #666666;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 400;
  text-align: center;
  padding: 2px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

@media (max-width: 576px) {
  .top-notice-bar {
    font-size: 0.75rem;
    padding: 5px 0;
  }
  body {
    padding-top: 24px;
  }
}


/* ==========================================================================
   Base & Typography
   ========================================================================== */
html {
  font-size: 100%;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
  margin: 0;
  padding-top: 32px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
  max-width: 1140px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar a {
  color: #333;
}
.top-bar a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar-main {
  background: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar-main .navbar-brand {
  color: #222222 !important;
  font-weight: bold;
}

.navbar-main .nav-link {
  color: #333333 !important;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--primary) !important;
}

.navbar-main .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.navbar-main .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.user-icons a {
  color: #333333 !important;
}

.user-icons a:hover {
  color: var(--primary) !important;
  background: rgba(0,0,0,0.05);
}

.user-icons a.cart-icon {
  position: relative;
  font-size: 1.3rem;
  background: rgba(255,255,255,0.15);
  color: var(--accent) !important;
}

.user-icons a.cart-icon:hover {
  background: rgba(255,255,255,0.3);
  color: var(--accent-dark) !important;
}

.user-icons a.cart-icon .badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--danger);
  color: white;
  font-size: 0.7rem;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  padding: 0 4px;
}

/* ==========================================================================
   Dropdown (All Categories)
   ========================================================================== */
.custom-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 220px;
  padding: 10px 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,.175);
}

.custom-dropdown.show {
  display: block;
}

.custom-dropdown .dropdown-item {
  padding: 8px 20px;
  color: #212529;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
  color: #fff;
  background-color: var(--accent);
}

/* Mobile */
@media (max-width: 991px) {
  .custom-dropdown {
    position: static;
    width: 100%;
    margin: 10px 0;
    box-shadow: none;
    border: none;
    background: var(--accent);
  }
  .custom-dropdown .dropdown-item {
    padding: 12px 20px;
    color: white;
  }
}

/* ==========================================================================
   Mini-cart
   ========================================================================== */
.mini-cart {
  display: none;
  position: absolute;
  top: 130%;
  right: 0;
  z-index: 1050;
  width: 320px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  padding: 15px;
}

.mini-cart.show {
  display: block;
}

.mini-cart .cart-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.mini-cart .cart-total {
  font-weight: bold;
}

.mini-cart .empty-cart {
  color: #777;
}

@media (max-width: 576px) {
  .mini-cart {
    width: 90vw;
    right: 5vw;
    left: auto;
  }
}



/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}




/* ==========================================================================
   Product Card (index, catalog)
   ========================================================================== */
.product-card {
  text-align: center;
  border: 1px solid #e0e0e0;     /* light gray border */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s ease;
  background: #ffffff;            /* white background for cards - like reference */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* soft shadow instead of heavy */
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.15); /* blue-tinted shadow */
  border-color: var(--primary);
}
.product-card .product-title,
.product-card .product-name,
.product-card h5,
.product-card h6 {
  color: #222222;                 /* dark title text */
}

.product-card .price {
  color: var(--primary);          /* red price - stands out */
  font-weight: 700;
  font-size: 1.4rem;
}

.product-card .old-price {
  color: #888888;
}

.product-card .description,
.product-card small {
  color: #555555;
}




.product-img {
  width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.4rem;
}

.old-price {
  text-decoration: line-through;
  color: var(--light-gray);
  font-size: 1.1rem;
  margin-left: 10px;
}

.stars {
  color: var(--primary);      /* blue stars */
}

.sale-badge {
  background: var(--primary);   /* blue badge instead of red */
  color: white;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 4px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  font-weight: bold;
}

/* ==========================================================================
   PRODUCT CATALOG
   ========================================================================== */
.filter-card {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background: white;
}

.filter-title {
  background: var(--light-accent);
  padding: 12px 18px;
  margin: 0;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
}

.filter-content {
  padding: 15px 18px;
}

.form-check-label {
  font-size: 0.95rem;
  cursor: pointer;
}

.offcanvas-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}



.filter-link-item {
    padding: 6px 0;
    font-size: 0.95rem;
}

.filter-link-item.parent {
    font-weight: 600;
    margin-bottom: 4px;
}

.filter-link-item.child {
    font-weight: normal;
    color: #555;
}

.filter-link-item a {
    color: inherit;
    display: block;
    transition: color 0.2s;
}

.filter-link-item a:hover,
.filter-link-item a.active {
    color: #0d6efd;
    text-decoration: underline;
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */

.product-gallery .main-image {
    height: 450px;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    background: #f8f9fa;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-gallery .thumbs {
  max-width: 700px;
  margin: 1rem auto;
}


.product-gallery .main-image img#mainProductImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-gallery .thumbs .col-3 {
    height: 100px;
    padding: 0;
}

.product-gallery .thumbs img.thumb {
    width: 100px;
    height: 100px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 5px;
    box-sizing: border-box;
}

.product-gallery .thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
}

.product-gallery .thumb.active,
.product-gallery .thumb:hover {
    opacity: 1;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(113, 209, 23, 0.3);
}


/* ──────────────────────────────────────────────
   pagination LinkPager
─────────────────────────────────────────────── */

.pagination {
  --pg-color: #6c757d;
  --pg-bg: #ffffff;
  --pg-hover-bg: #f1f5f9;
  --pg-active-bg: var(--accent);
  --pg-active-color: #000000;
  --pg-border: #dee2e6;
  --pg-radius: 10px;
  --pg-gap: 6px;
  margin: 2.5rem 0 1.5rem !important;
  flex-wrap: wrap;
  gap: var(--pg-gap);
  justify-content: center;
}

.page-item {
  margin: 0 !important;
}

.page-link,
.page-item.disabled .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  color: var(--pg-color);
  background-color: var(--pg-bg);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);
  transition: all 0.18s ease;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.page-link:hover {
  background-color: var(--pg-hover-bg);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(113,209,23,0.18);
}

.page-item.active .page-link {
  background-color: var(--pg-active-bg);
  border-color: var(--pg-active-bg);
  color: var(--pg-active-color);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(113,209,23,0.3);
  transform: translateY(-1px);
}

.page-item.disabled .page-link {
  color: #adb5bd;
  background-color: #f8f9fa;
  border-color: #dee2e6;
  cursor: not-allowed;
  opacity: 0.75;
  box-shadow: none;
  transform: none;
}

.page-item.prev .page-link,
.page-item.next .page-link {
  min-width: 46px;
  font-size: 1.1rem;
  padding: 0 10px;
}

@media (max-width: 576px) {
  .pagination {
    --pg-gap: 4px;
    margin: 1.5rem 0 1rem !important;
  }

  .page-link,
  .page-item.disabled .page-link {
    min-width: 34px;
    height: 34px;
    font-size: 0.9rem;
    padding: 0 8px;
  }

  .page-item.prev .page-link,
  .page-item.next .page-link {
    min-width: 40px;
  }

  .page-item:not(.prev):not(.next):not(.active):not(:nth-child(-n+3)):not(:nth-last-child(-n+3)) {
    display: none;
  }

  .pagination .ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    font-size: 0.9rem;
    color: var(--pg-color);
    pointer-events: none;
  }
}

/* ==========================================================================
   Hero (index page)
   ========================================================================== */
.hero {
  background: #f8f9fa;            /* very light gray - clean look */
  padding: 40px 0;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 576px) {
  .hero {
    padding: 20px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

@media (min-width: 1920px) {
  .hero-img {
    max-height: 500px;
  }
}

/* ==========================================================================
   GENERAL
   ========================================================================== */

.category-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.newsletter {
  background: var(--light-accent);
  padding: 60px 0;
  text-align: center;
}

.footer {
  background: var(--dark);
  color: #aaa;
  padding: 60px 0 30px;
}

.footer a {
  color: #aaa;
}
.footer a:hover {
  color: var(--primary);
}





.cart-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width:  80px;
  height: 80px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 6px;
  flex-shrink: 0;
  padding: 4px;
  box-sizing: border-box;
}
.qty-input {
  max-width: 180px;
}
.cart-summary {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
}
.cart-empty-message {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #777;
  font-size: 1.3rem;
}
.promo-input-group .btn {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.promo-input-group .btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

@media (max-width: 576px) {
  .qty-input {
    width: 120px !important;
  }
  .qty-input input[type="number"] {
    font-size: 1rem;
    padding: 0.5rem 0.25rem;
  }
  .qty-input .btn {
    width: 35px;
  }
}



.checkout-summary {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
}
.form-section {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}
.billing-section {
  display: none;
}
.billing-section.show {
  display: block;
}
.order-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 4px;
}
.order-item {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.order-item:last-child {
  border-bottom: none;
}


.toast {
  min-width: 280px;
  max-width: 90vw;
  z-index: 1090;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  font-size: 1rem;
  padding: 14px 18px;
}

.toast.bg-success {
  background-color: var(--primary) !important;
  color: white !important;
}

.toast.bg-danger {
  background-color: var(--danger) !important;
  color: white !important;
}

@media (max-width: 576px) {
  .toast {
    position: fixed !important;
    bottom: 80px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: 88vw;
    max-width: none;
    font-size: 1.05rem;
    padding: 16px 20px;
  }
}



.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  margin: 0;
}
.error-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0 1.5rem;
}
.error-message {
  font-size: 1.25rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.error-icon {
  font-size: 6rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .error-code {
    font-size: 6rem;
  }
  .error-title {
    font-size: 2rem;
  }
}





.about-hero {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('https://images.pexels.com/photos/4167542/pexels-photo-4167542.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.mission-card,
.value-card {
  transition: all 0.25s ease;
}

.mission-card:hover,
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(113,209,23,0.22);
}

.value-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}




.faq-header {
  background: var(--light-accent);
  padding: 60px 0 40px;
  text-align: center;
}
.faq-item .accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  background: white;
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--light-accent);
  color: var(--accent-dark);
}
.faq-item .accordion-body {
  padding: 1.5rem;
  background: #f9f9f9;
}
.faq-search {
  max-width: 600px;
  margin: 0 auto 40px;
}
@media (max-width: 576px) {
  .faq-header {
    padding: 40px 0 30px;
  }
  .faq-header h1 {
    font-size: 2.2rem;
  }
}




.profile-sidebar {
  background: white;
  border-right: 1px solid #eee;
  min-height: 500px;
}
.profile-sidebar .nav-link {
  color: #555;
  padding: 1rem 1.5rem;
  border-radius: 0;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}
.profile-sidebar .nav-link:hover,
.profile-sidebar .nav-link.active {
  background: var(--light-accent);
  color: var(--accent-dark);
  border-left-color: var(--accent);
}
.profile-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.75rem;
}
.order-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}
.order-item:last-child {
  border-bottom: none;
}
.avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--light-accent);
}
@media (max-width: 991px) {
  .profile-sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    min-height: auto;
  }
}






.checkout-summary,
.form-section {
  border: 1px solid #e0e0e0;
  border-radius: 0;
  padding: 28px 24px;
  margin-bottom: 32px;
  background: white;
}

.form-section h5,
.form-section h4 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.form-control,
.form-select {
  border-radius: 0 !important;
  border: 1px solid #d0d0d0 !important;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  height: calc(2.5rem + 2px);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.15); /* blue glow */
}

.form-group,
.mb-3 {
  margin-bottom: 1.75rem !important;
}

@media (max-width: 576px) {
  .form-section,
  .checkout-summary {
    padding: 20px 16px;
  }
  
  .form-control,
  .form-select {
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
  }
}







.avatar-preview {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--light-accent);
}
.avatar-upload {
  position: relative;
  display: inline-block;
}
.avatar-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.avatar-upload .upload-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .profile-sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    min-height: auto;
  }
}



/* ==========================================================================
   Orders History Page
   ========================================================================== */

.order-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.order-header {
  background: #f8f9fa;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.order-body {
  padding: 1.5rem;
}

.order-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #f8f9fa;
  border-radius: 6px;
}

.status-badge {
  font-size: 0.9rem;
  padding: 0.5em 1em;
}




/* ==========================================================================
   Profile Edit Page
   ========================================================================== */

.profile-sidebar {
  background: white;
  border-right: 1px solid #eee;
  min-height: 500px;
}

.profile-sidebar .nav-link {
  color: #555;
  padding: 1rem 1.5rem;
  border-radius: 0;
  border-left: 4px solid transparent;
  transition: all 0.2s;
}

.profile-sidebar .nav-link:hover,
.profile-sidebar .nav-link.active {
  background: var(--light-accent);
  color: var(--accent-dark);
  border-left-color: var(--accent);
}

.form-section {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 2rem;
}

.avatar-preview {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--light-accent);
}

.avatar-upload {
  position: relative;
  display: inline-block;
}

.avatar-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.avatar-upload .upload-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

@media (max-width: 991px) {
  .profile-sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    min-height: auto;
  }
}



/* ==========================================================================
   Notifications Page (Account section)
   ========================================================================== */

.notification-item {
  border-bottom: 1px solid #eee;
  padding: 1.25rem 0;
  transition: background 0.2s;
}

.notification-item:hover {
  background: #f8f9fa;
}

.notification-item.unread {
  background: var(--light-accent);
  border-left: 4px solid var(--accent);
}

.notification-time {
  font-size: 0.85rem;
  color: #777;
}

.notification-icon {
  width: 42px;
  height: 42px;
  background: var(--light-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-dark);
  flex-shrink: 0;
}



/* ==========================================================================
   ORDER CONFIRMATION PAGE
   ========================================================================== */

.order-confirmation {
  background: #f8f9fa;
}

.order-confirmation .display-4 {
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #222;
}

.order-confirmation .card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.order-confirmation .card-header {
  font-weight: 600;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #eee;
}

.order-confirmation .table thead th {
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  background: #f8f9fa;
}

.order-confirmation .table td {
  padding: 1.1rem 0.75rem;
  vertical-align: middle;
}

.order-confirmation .badge {
  font-size: 0.95rem;
  padding: 0.55em 1.1em;
  font-weight: 500;
}

.order-confirmation .alert {
  border-radius: 10px;
  border: none;
}

.order-confirmation .success-icon {
  font-size: 5.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 4px 10px rgba(113, 209, 23, 0.3));
}

@media (max-width: 768px) {
  .order-confirmation .display-4 {
    font-size: 2.4rem;
  }
  
  .order-confirmation .card-header {
    padding: 1rem 1.25rem;
  }
}

.order-summary-header {
  background: linear-gradient(135deg, #71d117 0%, #5eb010 100%);
  color: #000 !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  padding: 1rem 1.5rem;
  border-radius: 10px 10px 0 0;
}




.navbar-nav {
  flex-wrap: wrap !important;
  gap: 6px 12px;
  row-gap: 8px;
}

.navbar-nav .nav-link {
  padding: 10px 16px;
  white-space: nowrap;
  border-radius: 6px;
  transition: all 0.2s;
}

.navbar-nav .nav-link:hover {
  background: rgba(255,255,255,0.1);
}

@media (min-width: 1200px) {
  .navbar-nav {
    flex-wrap: nowrap !important;
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  
  .navbar-nav .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
  }
}


.search-form input.form-control {
  min-width: 200px !important;
}


/* ==========================================================================
   MOBILE
   ========================================================================== */
@media (max-width: 576px) {
  .search-form {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .user-icons {
    justify-content: center;
    width: 100%;
  }
  .product-img {
    max-height: 180px;
  }
}

@media (max-width: 991px) {
  .sidebar {
    margin-bottom: 2rem;
  }
}



@media (max-width: 767px) {
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60px;
    z-index: 1030;
    box-shadow: 0 -3px 12px rgba(0,0,0,0.25);
  }

  .mobile-bottom-bar a {
    color: white;
    font-size: 1.5rem;
    padding: 10px 20px;
    flex: 1;
    text-align: center;
  }

  .mobile-bottom-bar a.cart-icon {
    color: var(--accent) !important;
    font-size: 1.8rem;
  }

  .navbar-main .user-icons .cart-icon {
    display: none;
  }

  body {
    padding-bottom: 70px;
  }
}



*,
*::before,
*::after {
  border-radius: 0 !important;
}


main,
.content-area,
.product-view,
.product-description-container,
.tab-content,
.page-content,
.article-content,
.description-tab,
.characteristics,
.reviews-list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

@media (min-width: 992px) {
  main,
  .content-area,
  .product-view,
  .tab-content {
    max-width: 960px;
    padding: 0 20px;
  }
}

.product-description,
.tab-pane.description,
.tab-pane.characteristics,
.review-text,
.long-text-content {
  max-width: 75ch;
  margin: 0 auto 2rem auto;
  line-height: 1.75;
  font-size: 1.05rem;
}

.product-description ul,
.product-description ol,
.characteristics dl,
.characteristics table,
.reviews-container,
.review-list,
.specs-table,
.characteristics-table,
dl.row {
  max-width: 75ch;
  margin: 1.5rem auto;
}

.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.15) !important;
}

.separator {
  height: 4px;
  border-radius: 2px;
}

.accordion-button {
  background: #f8f9fa;
  color: #333;
  font-size: 1.15rem;
  padding: 1.25rem 1.5rem;
}
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: white;
}
.accordion-body {
  background: #ffffff;
  padding: 1.5rem;
  border-top: 1px solid #eee;
}
.accordion-item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 0 !important;
}

@media (max-width: 767px) {
  .card-body {
    padding: 1.5rem !important;
  }
  h5 {
    font-size: 1.25rem !important;
  }
  .brand-logo {
    margin-bottom: 1rem;
  }
  h1 {
    font-size: 2.2rem !important;
  }
  .lead {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
  }
}



.hero-banner {
  background: #111111;
  color: white;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 3rem;
}

.hero-banner img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}


@media (max-width: 768px) {
  .hero-banner {
    min-height: 300px;
  }
  .hero-banner img {
    max-height: 80vh;
  }
}