
:root {
  --accent:        #4aeadc;
  --accent-dark:   #2ba89a;
  --light-accent:  #e4e4e4;
  --dark:          #4d4d4d;
  --gray:          #6c757d;
  --danger:        #ef3f32;
  --warning:       #fffc07;
  --light:         #ededed;
  --border:        #7b7b7b;
  
  --primary:       #0f2b3d;
  --primary-dark:  #091c2a;
  --gray-bg:       #f0f4f9;
  --card-white:    #ffffff;
  --border-light:  #e2e8f0;
  
  --shadow-sm:     0 4px 15px rgba(10,10,10,0.06);
  --shadow-md:     0 12px 24px rgba(81,145,19,0.25);
  --shadow-lg:     0 25px 45px -12px rgba(0,0,0,0.12);
  --shadow-card:   0 8px 20px rgba(0,0,0,0.03);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica", Palatino, Arial Helvetica, Tahoma, sans-serif;
  background: #fff;
  color: #0b1a2e;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-dark);
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, .logo {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Layout & Containers
   ========================================================================== */
.container {
  max-width: 1400px;
  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: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  font-size: 0.9rem;
  padding: 8px 0;
}

.top-bar a {
  color: #000000;
}

.top-bar a:hover {
  color: var(--accent);
  text-decoration: underline;
}

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

.navbar-main .navbar-brand {
  color: #000000;
  font-weight: bold;
}

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

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

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

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

.navbar-nav {
  flex-wrap: wrap;
  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(0,0,0,0.05);
}

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

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

/* User icons */
.user-icons a {
  color: #333333;
  transition: all 0.2s;
  padding: 8px 12px;
  border-radius: 6px;
}

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

/* Mobile navbar toggler */
.navbar-toggler {
  border-color: #cccccc;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   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;
  transition: all 0.2s;
}

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

/* ==========================================================================
   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;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000;
  transition: all 0.2s;
}

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

.btn-outline-primary {
  color: var(--accent);
  border-color: var(--accent);
  transition: all 0.2s;
}

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

.btn-shop {
  display: inline-block;
  background: #b32428;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 14px 42px;
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Product Card
   ========================================================================== */
.product-card {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  background: white;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-img {
  width: 100%;
  height: 180px;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
  background: var(--light);
  padding: 15px;
}

.price {
  color: #d00;
  font-weight: 700;
  font-size: 1.25rem;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 1rem;
  margin-left: 8px;
}

.stars {
  color: var(--warning);
  font-size: 1rem;
}

.sale-badge {
  background: var(--danger);
  color: white;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

/* ==========================================================================
   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: var(--accent);
  text-decoration: underline;
}

/* ==========================================================================
   Product Gallery
   ========================================================================== */
.product-gallery .main-image {
  height: 450px;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.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);
  box-shadow: 0 0 0 3px rgba(113, 209, 23, 0.3);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.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;
  flex-wrap: wrap;
  gap: var(--pg-gap);
  justify-content: center;
}

.page-item {
  margin: 0;
}

.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;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: var(--light-accent);
  padding: 40px 0;
}

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

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

/* ==========================================================================
   Info Block
   ========================================================================== */
.info-block {
  max-width: 1300px;
  margin: 60px auto;
  background: var(--card-white);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.info-block-inner {
  padding: 48px 56px;
}

.info-block h1, 
.info-block h2, 
.info-block h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a2540;
}

.info-block p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2c3e4f;
  margin-bottom: 1.2rem;
}

.gold-accent {
  color: var(--accent);
}

.badge-gold {
  background: var(--accent);
  color: #0a2540;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0 1.5rem;
}

.benefit-card {
  background: #f8fafc;
  border-radius: 24px;
  padding: 1.6rem;
  transition: all 0.2s ease;
  border: 1px solid #eef2f8;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.1);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

/* Two columns layout */
.two-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.two-columns .col {
  flex: 1;
  background: #f8fafc;
  border-radius: 24px;
  padding: 1.8rem;
}

/* Check list styles */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.check-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

hr {
  margin: 40px 0;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, #e2e8f0, var(--accent), #e2e8f0);
}

.content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: white;
  padding: 2rem;
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.description {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  max-width: 600px;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.arrow:hover {
  background: var(--accent);
  color: #000;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent);
  width: 30px;
  border-radius: 10px;
}

/* ==========================================================================
   Cart & Checkout
   ========================================================================== */
.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);
}

.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 Notifications
   ========================================================================== */
.toast {
  min-width: 280px;
  max-width: 400px;
  z-index: 1055;
  border-radius: 8px;
}

.toast.bg-success {
  background-color: var(--accent);
  color: #000;
}

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

/* ==========================================================================
   Error Page
   ========================================================================== */
.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;
}

/* ==========================================================================
   About Page
   ========================================================================== */
.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 Page
   ========================================================================== */
.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;
}

/* ==========================================================================
   Profile 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);
}

.profile-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.75rem;
}

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

.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;
}

/* ==========================================================================
   Orders History
   ========================================================================== */
.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;
}

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

/* ==========================================================================
   Notifications
   ========================================================================== */
.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
   ========================================================================== */
.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));
}

.order-summary-header {
  background: linear-gradient(135deg, #71d117 0%, #5eb010 100%);
  color: #000;
  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;
}

/* ==========================================================================
   Newsletter & Footer
   ========================================================================== */
.newsletter {
  background: var(--light-accent);
  padding: 60px 0;
  text-align: center;
}

.footer {
  background: #111;
  color: #ccc;
  padding: 60px 0 30px;
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  color: white;
}

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


@media (max-width: 576px) {
  .hero {
    padding: 20px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .search-form {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .user-icons {
    justify-content: center;
    width: 100%;
  }
  
  .product-img {
    max-height: 180px;
  }
  
  .mini-cart {
    width: 90vw;
    right: 5vw;
    left: auto;
  }
  
  .qty-input {
    width: 120px;
  }
  
  .qty-input input[type="number"] {
    font-size: 1rem;
    padding: 0.5rem 0.25rem;
  }
  
  .qty-input .btn {
    width: 35px;
  }
  
  .error-code {
    font-size: 6rem;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .faq-header {
    padding: 40px 0 30px;
  }
  
  .faq-header h1 {
    font-size: 2.2rem;
  }
  
  .pagination {
    --pg-gap: 4px;
    margin: 1.5rem 0 1rem;
  }
  
  .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;
  }
}

@media (max-width: 768px) {
  .slider {
    height: 60vh;
  }
  
  .arrow {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .order-confirmation .display-4 {
    font-size: 2.4rem;
  }
  
  .order-confirmation .card-header {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 900px) {
  .info-block-inner {
    padding: 32px 24px;
  }
  
  .two-columns {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .sidebar {
    margin-bottom: 2rem;
  }
  
  .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;
  }
  
  .navbar-main .navbar-collapse {
    background: #ffffff;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
  }
  
  .profile-sidebar {
    border-right: none;
    border-bottom: 1px solid #eee;
    min-height: auto;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }
  
  .navbar-nav .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px 20px;
  }
}



.product-detail .stars,
.d-flex .stars {
  font-size: 2.8rem;
  letter-spacing: 5px;
  line-height: 1;
}




/* Remove all border radius */
:root {
  --pg-radius: 0;
}

* {
  border-radius: 0 !important;
}

.pagination {
  --pg-radius: 0;
}

.dot,
.dot.active {
  border-radius: 0 !important;
  width: 12px;
}

.dot.active {
  width: 30px;
}










/* ==========================================================================
   Buttons with dark color
   ========================================================================== */

/* Primary buttons */
.btn-primary {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

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

/* Outline primary buttons */
.btn-outline-primary {
  color: var(--dark);
  border-color: var(--dark);
}

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

/* Navbar buttons */
.navbar-main .btn-primary {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

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

/* Promo input group button */
.promo-input-group .btn {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.promo-input-group .btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #000;
}

/* Add to cart buttons */
.product-card .btn-outline-primary {
  color: var(--dark);
  border-color: var(--dark);
}

.product-card .btn-outline-primary:hover {
  background-color: var(--dark);
  color: #fff;
  border-color: var(--dark);
}










/* Product rating and stock block */
.product-rating-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-rating-block .stars {
  font-size: 1.8rem;
  letter-spacing: 4px;
  color: #ffc107;
  line-height: 1;
}

.product-rating-block .stock-badge {
  background: #28a745;
  color: #fff;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-rating-block .stock-badge.out-of-stock {
  background: #dc3545;
}









/* ==========================================================================
   Fix Bootstrap Pagination Active Color
   ========================================================================== */

:root {
  --bs-pagination-active-bg: var(--accent-dark);
  --bs-pagination-active-border-color: var(--accent-dark);
  --bs-pagination-hover-color: var(--accent);
  --bs-pagination-active-color: #000000;
}

.active > .page-link,
.page-link.active {
  background-color: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  color: #000000 !important;
}

.disabled > .page-link,
.page-link.disabled {
  opacity: 0.5;
}