/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background: #f8fbff;
  color: #222;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= PAGE ================= */
.product-page {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}
.product-page h1 {
  text-align: center;
  font-size: 48px; 
  color: #1e88e5;  
  font-family: 'Playfair Display', serif; 
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position:relative;
}

.product-page h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #279cff;
  margin: 12px auto 0;
  border-radius: 2px;
}
.page-intro {
  max-width: 850px;
  font-size: 18px;
  color: #333;
  margin: 20px auto 60px;
  text-align: center;
  line-height: 1.9;
  background: #d8ecffd3;
  padding: 24px 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(30,136,229,0.1);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}


@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PRODUCT CARD ================= */
.product-card {
  display: grid;
  grid-template-columns: 400px 1fr; 
  gap: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  margin-bottom: 40px;
  align-items: start;
  position: relative;
}
.content-top {
  min-height: 100%;
}

/* ================= CONTENT ================= */
.product-content {
  background: #d8ecff;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
}

.product-content h2 {
  font-size: 24px;
    font-weight: 700;
  color: #0b1220;
  margin-bottom: 8px;
}

.product-content p {
  color: #444;
  font-size: 16px;
  margin-bottom: 16px;
  
}

/* ================= FEATURES ================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #f1f6ff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0b1220;
}

.feature i {
  font-size: 16px;
  min-width: 20px;
  color: #1e88e5
}

/* ================= TABLE ================= */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 3px solid #1e88e5;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 28px;
}

.info-table th,
.info-table td {
  padding: 5px 15px;
  border-bottom: 2px solid #c6def7;
}

.info-table th {
  width: 36%;
  background: #eaf4ff;
  font-weight: 700;
  text-transform: uppercase;
  border-right: 3px solid #c6def7;
}

.info-table td {
  font-weight: 700;
  font-size: 15px;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

/* ================= BUTTON ================= */
.btn {
  align-self: flex-end;
  margin-top: 22px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #279cff, #1e88e5);
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(30, 136, 229, 0.45);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .product-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .product-page h1 {
    font-size: 32px;
  }

  .product-content h2 {
    font-size: 22px;
  }
}

/* ===============================
   PRODUCT VISUAL PANEL (LEFT SIDE)
================================ */
.product-visual-panel {
  background: #d8ecff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height:100%;
}

/* IMAGE */
.visual-image {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.visual-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

/* ===============================
   GET QUOTE BUTTON (LEFT PANEL)
================================ */
.quote-btn-wrap {
  margin-top: 2px; 
  text-align: center;
}


.get-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  background: linear-gradient(135deg, #0b5ed7, #1e88e5);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.get-quote-btn i {
  font-size: 15px;
}

.get-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 136, 229, 0.35);
}

/* TWO BUTTON LAYOUT */
.purchase-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-end;
}

/* ADD TO CART BUTTON */
.add-cart-btn {
  background: #ffffff;
  color: #1e88e5;
  border: 2px solid #1e88e5;
  padding: 12px 30px;
}

.add-cart-btn:hover {
  background: #eaf4ff;
}

/* BUY NOW BUTTON (PRIMARY) */
.buy-now-btn {
  background: linear-gradient(135deg, #279cff, #1e88e5);
  padding: 12px 34px;
}

/* ===============================
   QUANTITY SELECTOR
================================ */
.quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 20px;
}

.qty-label {
  font-weight: 700;
  color: #0b1220;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 2px solid #1e88e5;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  width: 42px;
  height: 40px;
  border: none;
  background: #eaf4ff;
  font-size: 20px;
  font-weight: 700;
  color: #1e88e5;
  cursor: pointer;
}

.qty-btn:hover {
  background: #d8ecff;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
/* ================= TOAST ================= */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1e88e5;
  color: #fff;
  padding: 14px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-view-cart {
  margin-left: auto;
  background: #ffffff;
  color: #1e88e5;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  text-decoration: underline;
}

.toast-view-cart:hover {
  background: #eaf4ff;
}
