/* ===== Front Store Layout ===== */

.cs-front-store {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 12px 40px;
  box-sizing: border-box;
  font-family: inherit;
}

/* Top bar / breadcrumb */
.cs-topbar {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 14px;
}

.cs-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
}

.cs-breadcrumb {
  font-size: 13px;
  color: #666666;
}

.cs-top-cta {
  text-align: right;
}

/* Heading */
.cs-heading {
  margin-bottom: 16px;
}

.cs-heading h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.cs-heading p {
  font-size: 14px;
  color: #444444;
}

/* Layout - sidebar + main */
.cs-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}

/* Sidebar */
.cs-sidebar {
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  background: #fafafa;
  padding: 12px 12px 14px;
  font-size: 14px;
}

.cs-sidebar-block + .cs-sidebar-block {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
}

.cs-sidebar h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.cs-sidebar h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.cs-cat-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.cs-cat-list li {
  margin-bottom: 4px;
}

.cs-cat-list a {
  color: #222222;
  text-decoration: none;
}

.cs-cat-list a:hover {
  text-decoration: underline;
}

.cs-sidebar-info p {
  margin-bottom: 6px;
}

.cs-link-arrow {
  font-size: 13px;
  text-decoration: underline;
}

/* Main column */
.cs-main {
  min-width: 0;
}

/* Search bar */
.cs-search-bar {
  margin-bottom: 10px;
}

.cs-product-search {
  display: flex;
  gap: 8px;
  align-items: center;
}
/* Bigger product images */
.woocommerce ul.products li.product img {
    width: 100% !important;
    max-width: 400px !important;
}

/* Bigger product titles */
.woocommerce ul.products li.product h2 {
    font-size: 22px !important;
}

/* Bigger prices */
.woocommerce ul.products li.product .price {
    font-size: 20px !important;
    font-weight: bold;
}

/* Bigger buttons */
button, .button, .add_to_cart_button {
    font-size: 18px !important;
    padding: 12px 18px !important;
}

/* Better for glasses */
body {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


.cs-search-input {
  flex: 1;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #cccccc;
}

.cs-search-button {
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
}

.cs-search-button:hover {
  background: #333333;
  border-color: #333333;
}

/* Sort/info bar */
.cs-sort-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #eeeeee;
  background: #f9f9f9;
  margin-bottom: 10px;
}

.cs-sort-text {
  font-weight: 600;
}

.cs-sort-note {
  color: #666666;
}

/* Products placeholder text */
.cs-products-wrapper {
  padding: 8px 0;
}

.cs-product-hint {
  font-size: 13px;
  color: #888888;
}

/* Reusable buttons (matches header CTA) */
.cs-btn {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}

.cs-btn-outline {
  border: 1px solid #222222;
  color: #222222;
  background: #ffffff;
}

.cs-btn-outline:hover {
  background: #f0f0f0;
}

/* Responsive */
@media (max-width: 900px) {
  .cs-layout {
    grid-template-columns: 1fr;
  }

  .cs-topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-top-cta {
    text-align: left;
  }

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

  .cs-search-button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cs-front-store {
    padding: 12px 10px 30px;
  }

  .cs-heading h1 {
    font-size: 22px;
  }
}

/* ===== CLEAN PRODUCT GRID (HOMEPAGE + SHOP) ===== */

/* Make product cards uniform */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Control product image size */
.woocommerce ul.products li.product a img {
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* Limit product title height (2 lines max) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  line-height: 1.3em;
  max-height: 2.6em; /* 2 lines */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
}

/* Hide short descriptions/excerpts if showing */
.woocommerce ul.products li.product .woocommerce-product-details__short-description {
  display: none;
}

/* Price styling */
.woocommerce ul.products li.product .price {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* Add to cart button clean look */
.woocommerce ul.products li.product .button {
  margin-top: auto;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 4px;
  text-align: center;
}

/* Ensure consistent spacing */
.woocommerce ul.products li.product {
  padding-bottom: 10px;
}

/* Fix uneven rows */
.woocommerce ul.products {
  align-items: stretch;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .woocommerce ul.products li.product a img {
    max-height: 150px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
  }
}
.home-simple {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.home-hero {
  text-align: center;
  background: #f6f6f6;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.home-hero h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.home-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.btn-main {
  background: #111;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-alt {
  border: 1px solid #111;
  color: #111;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-main:hover {
  background: #333;
}

.btn-alt:hover {
  background: #eee;
}

.home-products {
  text-align: center;
}

@media (max-width: 600px) {
  .home-hero h1 {
    font-size: 22px;
  }
}
/* ===== COOLER BOOK SERVICE BUTTON ===== */

.btn-alt {
  border: 2px solid #111;
  color: #111;
  background: transparent;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

/* Hover effect */
.btn-alt:hover {
  background: #111;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Match menu CTA if needed */
.menu-cta > a {
  transition: all 0.25s ease;
}

.menu-cta > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
/* ===== UPGRADE SERVICE CALL BUTTON ===== */

.btn-alt {
  border: 2px solid #111;
  background: #fff;
  color: #111;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-alt:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}.btn-main {
  background: #111;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
}

.btn-alt {
  border: 2px solid #111;
  background: #fff;
  color: #111;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-alt:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}
.woocommerce ul.products {
  display: block !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  float: none !important;
}


