/* product banner  */
.our-products-banner1 {
  background: url('https://cdn.shopify.com/s/files/1/1205/2000/files/BLOG_BANNER_9_1024x1024.png?v=1633382461') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-products-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  margin: 20px;
  text-align: center;
  border-radius: 15px;
}

.our-products-title {
  font-size: 3rem;
  color: #f1c40f;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  font-weight: 700;
}

.our-products-subtitle {
  font-size: 1.2rem;
  color: #ecf0f1;
  margin-bottom: 30px;
}

.our-products-btn {
  padding: 12px 30px;
  background-color: #f1c40f;
  color: #2c3e50;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.our-products-btn:hover {
  background-color: #d4ac0d;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .our-products-title {
    font-size: 1.5rem;
  }
  .our-products-subtitle {
    font-size: 1rem;
  }
  .our-products-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* ========================================================================= */
/* wooden-trophy  */
/* SECTION WRAPPER */
.wooden-trophy-section {
  padding: 20px 20px;
  background-color: #f5f1ea; /* Soft beige background like polished wood room */
  font-family: 'Segoe UI', sans-serif;
}

.wooden-trophy-section .container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.wooden-trophy-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.wooden-trophy-section .section-subtitle {
  font-size: 1rem;
  color: #8B4513; /* SaddleBrown - wooden tone */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.wooden-trophy-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4B2E1D; /* Dark wood grain */
  margin-bottom: 15px;
}

.wooden-trophy-section .section-description {
  font-size: 1.1rem;
  color: #5c4738;
  max-width: 720px;
  margin: 0 auto;
}

/* GRID LAYOUT */
.wooden-trophy-section .trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* TROPHY CARD */
.wooden-trophy-section .trophy-card {
  background: #e4dfdf;
  border: 1px solid #e5ddd5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.wooden-trophy-section .trophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(101, 56, 30, 0.15);
}
.wooden-trophy-section .trophy-content {
  padding: 20px;
  text-align: center; /* ✅ Center all inner content */
}

/* IMAGE */
.wooden-trophy-section .trophy-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* ✅ Keeps the image square on all screens */
  overflow: hidden;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wooden-trophy-section .trophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}




.wooden-trophy-section .image-overlay {
  display: none;
}

/* CONTENT */
.wooden-trophy-section .trophy-content {
  padding: 20px;
}

.wooden-trophy-section .trophy-title {
  font-size: 1.25rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
}

.wooden-trophy-section .trophy-description {
  font-size: 0.95rem;
  color: #5a4331;
  margin-bottom: 12px;
}

/* TAGS */
.wooden-trophy-section .trophy-features {
  margin-bottom: 15px;
}

.wooden-trophy-section .feature-badge {
  display: inline-block;
  background: #e3cbb4;
  color: #4b2e1d;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 30px;
  margin-right: 8px;
  margin-bottom: 6px;
  text-transform: capitalize;
  font-weight: 500;
}

/* BUTTON */
.wooden-trophy-section .trophy-button {
background: linear-gradient(to right, #a56f48, #e0a96f);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wooden-trophy-section .trophy-button:hover {
background: linear-gradient(to right, #e0a96f, #a56f48);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 991px) {
  .wooden-trophy-section .section-title {
    font-size: 2rem;
  }
  .wooden-trophy-section .section-description {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .wooden-trophy-section .section-title {
    font-size: 1.7rem;
  }
  .wooden-trophy-section .section-description {
    font-size: 0.95rem;
  }
  .wooden-trophy-section .trophy-content {
    padding: 16px;
  }
  .wooden-trophy-section .trophy-button {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .wooden-trophy-section .feature-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}
