

/* Product intro images section start */

.wrap-pic-delicious.size2 img {
    width: 100%;
    height: 400px;        
    object-fit: cover;   
    border-radius: 10px;  
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px){
    .wrap-pic-delicious.size2 img {
        height: 300px;   
    }
}

@media (max-width: 576px){
    .wrap-pic-delicious.size2 img {
        height: 200px;   
    }
}




.wrap-pic-romantic.size2 img {
    width: 100%;
    height: 400px;       
    object-fit: cover;   
    border-radius: 10px;  
    display: block;
}

/* Responsive adjustments */
@media (max-width: 992px){
    .wrap-pic-romantic.size2 img {
        height: 300px;   
    }
}

@media (max-width: 576px){
    .wrap-pic-romantic.size2 img {
        height: 200px;  
    }
}

/* Product intro images section End */























/* SECTION */
.pdf-download-section {
  max-width: 700px;
  margin: 60px auto;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.pdf-heading {
  font-size: 30px;
  margin-bottom: 30px;
  color: #001652;
}

/* GRID */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.pdf-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.2s;
}

/* PREVIEW */
.pdf-preview {
  position: relative;
  height: 180px;
  overflow: hidden;
}

/* IMAGE */
.pdf-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);           
  transform: scale(1.05);      
}

/* DARK OVERLAY (soft effect) */
.pdf-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

/* PDF BADGE */
.pdf-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e63946;
  color: #fff;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 4px;
  z-index: 2;
}

/* BOTTOM */
.pdf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}

.pdf-bottom p {
  font-size: 14px;
  margin: 0;
  color: #000;
}

/* BUTTON */
.pdf-bottom a {
  text-decoration: none;
  font-size: 13px;
  color: #003975;
  font-weight: 500;
}

/* HOVER */
.pdf-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .pdf-grid {
    grid-template-columns: 1fr;
  }
}


