/* ============================================
   SHOP GRID & PRODUCT STYLES
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card:hover .product-actions {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.product-actions {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

/* Sidebar & Shop Layout */
.shop-layout-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
}

@media (max-width: 992px) {
  .shop-layout-grid { grid-template-columns: 1fr; }
}

.shop-sidebar {
  background: #fff;
}

.sidebar-widget {
  margin-bottom: 40px;
}

.widget-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #111;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
}

.sidebar-search-box {
  display: flex;
  background: #f4f4f4;
  border: 1px solid #eee;
}

.sidebar-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 15px;
  font-size: 13px;
  outline: none;
}

.sidebar-search-box button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

.cat-list { list-style: none; padding: 0; }
.cat-list li { margin-bottom: 12px; }
.cat-list a { 
  color: #666; 
  font-size: 13px; 
  font-weight: 500;
  display: flex; 
  justify-content: space-between;
  align-items: center;
}
.cat-list a:hover,
.cat-list a.active { color: var(--gold); }

.cat-count {
  font-size: 11px;
  color: #999;
}

/* Shop Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.results-count { font-size: 12px; color: #777; }

/* Pagination Styling */
.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.shop-pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #f9f9f9;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
}

.shop-pagination .page-numbers:hover {
  background: var(--gold);
  color: #fff;
}

.shop-pagination .page-numbers.current {
  background: var(--navy);
  color: #fff;
}

.shop-pagination .next.page-numbers,
.shop-pagination .prev.page-numbers {
  width: auto;
  padding: 0 15px;
}

.shop-sort select, .front-page-sort select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.shop-sort select:hover, .shop-sort select:focus,
.front-page-sort select:hover, .front-page-sort select:focus {
  border-color: var(--gold);
}

/* No products found section */
.no-products-found {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
  border: 1px solid #eee;
}

.no-products-found i {
  font-size: 50px;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}

.no-products-found h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.no-products-found p {
  color: #777;
  margin-bottom: 30px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  line-height: 1.8;
  font-size: 16px;
  color: #444;
}

.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  text-align: center;
}
