/*
Theme Name: MeinShop - Button Centered v52
*/

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
  background: #ffffff; 
  color: #1d1d1f; 
}

a { color: #0066cc; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.site-header {
  position: sticky; top: 0; 
  height: 44px; 
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e5e5e7;
  display: flex; align-items: center; 
  padding: 0 12px 0 12px;
  z-index: 9999;
  width: 100%;
}

.site-header .logo { font-size: 17px; font-weight: 600; color: #1d1d1f; }
.site-header .nav-links { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.site-header .nav-links a { color: #86868b; font-size: 14px; }

/* Products */
ul.products {
  width: 100%;
}

li.product {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  width: 100% !important;
  padding: 12px 12px !important;
  margin: 0 !important;
  border-bottom: 1px solid #e5e5e7 !important;
  background: #fff !important;
}

/* Image + Price Column */
li.product .product-col-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16px;
  width: 80px;
}

/* Image */
li.product .product-image {
  width: 80px !important;
  height: 80px !important;
  background: #fff;
  border: 1px solid #e5e5e7;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 4px;
}

li.product .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Price UNDER image */
li.product .product-price {
  font-size: 12px;
  font-weight: 700;
  color: #1d1d1f;
  text-align: center;
}

/* Name - AT TOP */
li.product .product-title {
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  text-decoration: none;
  flex: 1;
  align-self: flex-start;
  margin-top: 0;
}

/* Button - CENTERED + */
li.product .button {
  background: #ffa41c;
  color: #0f1111;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  font-size: 18px !important;
  font-weight: 700;
  border: none;
  margin-left: auto;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  text-decoration: none;
  align-self: flex-end;
  line-height: 1 !important;
  padding: 0 !important;
}

li.product .button:before {
  content: '+';
  display: block;
  line-height: 1;
}

.site-footer {
  background: #f5f5f7;
  border-top: 1px solid #e5e5e7;
  padding: 30px 12px;
  text-align: center;
  width: 100%;
}
.site-footer p { font-size: 11px; color: #86868b; }
