/* =========================================================
   CENTRAL & STORES — PREMIUM PRODUCT BOX GRID
========================================================= */

.product-grid-section{
  padding: 10px 14px 35px;
  background: #f7f7f5;
}

.product-grid-heading{
  padding: 10px 2px 18px;
}

.grid-eyebrow{
  display: block;
  color: #bd8d00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 7px;
}

.product-grid-heading h2{
  margin: 0;
  color: #141414;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 800;
}

.product-count{
  display: block;
  margin-top: 8px;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.premium-product-card{
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e7e2d5;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(20, 17, 8, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-product-card:active{
  transform: scale(0.98);
}

.premium-product-image{
  position: relative;
  padding: 11px 11px 0;
}

.no-product-image{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 142px;
  border: 2px dashed #e6c968;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 194, 0, 0.08), rgba(255,255,255,0)),
    #fcfbf7;
}

.no-product-image span{
  color: #bd8d00;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.premium-wishlist-btn{
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #171717;
  font-size: 29px;
  line-height: 1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.14);
  cursor: pointer;
}

.premium-wishlist-btn.active{
  color: #e63845;
}

.premium-product-info{
  display: flex;
  min-height: 210px;
  padding: 14px 12px 12px;
  flex-direction: column;
}

.premium-product-category{
  color: #bd8d00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.premium-product-name{
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0 0;
  color: #151515;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.premium-product-weight{
  display: block;
  margin-top: 10px;
  color: #7c7c7c;
  font-size: 14px;
  font-weight: 600;
}

.premium-product-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.premium-product-price{
  color: #151515;
  font-size: 23px;
  font-weight: 800;
}

.premium-add-cart-btn{
  min-width: 88px;
  padding: 12px 10px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5a900, #ffc400);
  color: #151515;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 7px 15px rgba(220, 163, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.premium-add-cart-btn span{
  margin-right: 3px;
  font-size: 20px;
  vertical-align: -1px;
}

.premium-add-cart-btn:active{
  transform: scale(0.95);
}

.premium-add-cart-btn.added{
  background: #151515;
  color: #ffc400;
}

@media (min-width: 700px){
  .product-grid-section{
    padding: 26px 30px 50px;
  }

  .products-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .no-product-image{
    height: 205px;
  }

  .premium-product-info{
    min-height: 195px;
  }

  .premium-product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(20, 17, 8, 0.14);
  }
}
/* =========================================================
   ORDER CONFIRMATION
========================================================= */

.order-confirmation-section{
  padding:32px 16px;
  background:#faf9f5;
}

.order-confirmation-card{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:20px 16px;
  border:1px solid #eadcae;
  border-radius:18px;
  background:linear-gradient(135deg,#fff8df,#ffffff);
  box-shadow:0 8px 22px rgba(30,22,8,.06);
}

.confirmation-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 44px;
  width:44px;
  height:44px;
  border-radius:13px;
  background:#151515;
  color:#ffc400;
}

.confirmation-icon svg{
  width:22px;
  height:22px;
}

.confirmation-content h3{
  margin:0 0 7px;
  color:#151515;
  font-size:20px;
  font-weight:900;
  line-height:1.2;
}

.confirmation-content p{
  margin:0;
  color:#666;
  font-size:14px;
  line-height:1.6;
}

/* =========================================================
   CONTACT STORE
========================================================= */

.contact-store-section{
  padding:42px 18px;
  background:#fffdf7;
  text-align:center;
}

.contact-store-section .section-eyebrow{
  display:block;
  margin-bottom:9px;
  color:#bd9200;
  font-size:11px;
  font-weight:900;
  letter-spacing:1.3px;
}

.contact-store-section h2{
  margin:0;
  color:#151515;
  font-size:29px;
  font-weight:900;
  line-height:1.15;
}

.contact-store-section p{
  max-width:500px;
  margin:15px auto 24px;
  color:#6d6d6d;
  font-size:16px;
  line-height:1.6;
}

.contact-store-actions{
  display:flex;
  gap:12px;
  justify-content:center;
}

.contact-store-actions a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex:1;
  min-height:54px;
  border-radius:14px;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
}

.call-store-btn{
  background:#151515;
  color:#ffffff;
}

.whatsapp-store-btn{
  background:#ffc400;
  color:#151515;
}

.contact-store-actions svg{
  width:22px;
  height:22px;
}

/* =========================================================
   FOOTER FIX
========================================================= */

.site-footer{
  padding:30px 18px 92px;
  background:#151515;
  color:#ffffff;
  text-align:center;
}

.footer-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  margin-bottom:14px;
}

.footer-brand-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border:1px solid #e7bb28;
  border-radius:14px;
  background:#202020;
  color:#ffc400;
}

.footer-brand-icon svg{
  width:24px;
  height:24px;
}

.footer-brand h3{
  margin:0;
  color:#ffffff;
  font-size:17px;
  font-weight:900;
}

.site-footer p{
  margin:8px 0;
  color:#d0d0d0;
  font-size:13px;
  line-height:1.5;
}

.footer-actions{
  display:flex;
  justify-content:center;
  gap:18px;
  margin:20px 0;
}

.footer-actions a{
  display:flex;
  align-items:center;
  gap:6px;
  color:#ffffff;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}

.footer-actions svg{
  width:19px;
  height:19px;
  color:#ffc400;
}

.footer-copy{
  color:#8d8d8d !important;
  font-size:12px !important;
}
/* PRODUCT IMAGE BOX FIX */
.product-image,
.product-image-wrap,
.premium-product-image {
  width: 100%;
  height: 210px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual image always stay inside card */
.product-image img,
.product-image-wrap img,
.premium-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain; /* packet full-a visible */
  object-position: center;
  padding: 10px;
}

/* If image link fails, alt text also box-kulla irukkum */
.product-image img:not([src]),
.product-image-wrap img:not([src]),
.premium-product-image img:not([src]) {
  display: none;
}
/* Remove blue tap highlight on mobile */

*{
    -webkit-tap-highlight-color: transparent;
}

a,
button,
input,
textarea,
select,
label{
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{
    outline: none;
    box-shadow: none;
}

a{
    text-decoration: none;
    color: inherit;
}

img{
    -webkit-user-drag: none;
    user-select: none;
}
