/* Shop Top Page Specific Styles */

.imageBox {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.imageBox img.shopName {
  height: auto;
  object-fit: cover;
  display: block;
}

/* TVCM Banner Responsive Adjustments */
.tvcm-banner {
  background-color: #fff7ed;
  border-bottom: 1px solid #ffedd5;
  padding: 12px 16px;
}
@media (min-width: 640px) {
  .tvcm-banner {
    padding: 16px 24px;
  }
}
.tvcm-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .tvcm-inner {
    flex-direction: row;
    gap: 20px;
  }
}
.tvcm-tag {
  background-color: #e65c5c;
  color: white;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  font-weight: bold;
  white-space: nowrap;
}
.tvcm-text {
  font-weight: bold;
  color: #374151;
  line-height: 1.4;
  text-align: center;
  font-size: 13px;
}
@media (min-width: 768px) {
  .tvcm-text {
    font-size: 15px;
  }
}



.tvcm-highlight {
  color: #e86a10;
  font-size: 1.2em;
}
.tvcm-link {
  color: #e86a10;
  font-weight: bold;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}
.tvcm-link:hover {
  text-decoration: underline;
}
