.product-section {
  padding: 140px 20px 60px;
  display: flex;
  justify-content: center;
}

.product-container {

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  position: relative;
}


.product-top-actions {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;

}



/* BUTTON STYLE */

.top-btn {

  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: rgba(33,33,33, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s;
}

.top-btn:hover {
  background: rgba(255,255,255,0.1);
}

.report-btn:hover {
  background: #ff1f32;
}

/* IMAGE */

.product-image img {

  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
  object-fit: cover;
}

.product-image img:hover {
  transform: scale(1.015);
}
/* INFO */

.product-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}



/* ACTIONS */

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.btn-primary {

  background: linear-gradient(90deg,#ff1f32,#dd244f);

  border: none;

  padding: 10px 18px;

  border-radius: 8px;

  color: white;

  font-weight: 600;

  cursor: pointer;
}

.btn-secondary {

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.1);

  padding: 10px 18px;

  border-radius: 8px;

  color: white;

  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 6px;
}



/* DESCRIPTION */

.product-description h3 {
  margin-bottom: 10px;
}

.product-description p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}



/* RESPONSIVE */

@media(max-width:850px){

  .product-container{
    grid-template-columns: 1fr;
  }

}
/* DETAILS */

.product-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.detail {
  display: flex;
  justify-content: space-between;

  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 8px;

  font-size: 13px;
}

.detail span {
  color: #888;
}

.detail strong,
.detail a {
  color: #fff;
  text-decoration: none;
}



/* AGENTS */

.agent-section h3 {
  margin-bottom: 10px;
}

.agent-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.agent-buttons img{
  width: 100%;
  max-width: 32px;
  height: 100%;
  object-fit: contain;
}

.agent-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.agent-btn:hover {
  background: linear-gradient(90deg,#ff1f32,#dd244f);
  transform: translateY(-2px);
}



/* ACTIONS */

.product-actions {
  display: flex;
  gap: 10px;
}

.btn-buy {
  flex: 1;
  background: linear-gradient(90deg,#ff1f32,#dd244f);
  border: none;
  padding: 10px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.btn-buy:hover {  
  transform: translateY(-2px);
}

.btn-fav {

  width: 45px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 18px;
  transition: all .3s;
}

.btn-fav:hover{
  transform: translateY(-2px);
}

.btn-fav .bi.bi-heart-fill {  
  background: linear-gradient(90deg, #ff1f32, #dd244f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent
}
.btn-fav:focus, .btn-buy:focus,  .btn-qc:focus, .top-btn:focus{
  outline: none;
}

.btn-buy:active, .btn-qc:active, .agent-btn:active, .top-btn:active {
  transform: scale(0.98);
}

.btn-qc {
  display: flex;
  justify-content: space-between;
  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  color:#fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease-in-out;
}

.btn-qc:hover {
  background: #323232;
  color: white;
}



/* OVERLAY */

.report-overlay {

  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);

  backdrop-filter: blur(4px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;

  transition: 0.25s;

  z-index: 2000;
}

.report-overlay.active {
  opacity: 1;
  pointer-events: all;
}



/* MODAL */

.report-modal {

  width: 90%;
  max-width: 400px;

  background: rgba(20,20,20,0.95);

  border-radius: 16px;

  padding: 20px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.7);

  transform: translateY(20px) scale(0.95);
  transition: 0.25s;
}

.report-overlay.active .report-modal {
  transform: translateY(0) scale(1);
}



/* HEADER */

.report-header {

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 10px;
}

.report-header h2 {
  font-size: 18px;
}

.report-close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}



/* TEXT */

.report-subtitle {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 15px;
}



/* OPTIONS */

.report-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.report-option {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.03);
  color: white;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
}

.report-option:hover {
  background: #ff1f32;
}