@import url('../assets/css/theme.css');

﻿* {
  box-sizing: border-box;
}

body {
  background: #ffffff;
}

.container {
  width: 92%;
  max-width: 1500px;
}

.feature-stores {
  align-items: stretch;
}

.feature-stores .fs-col {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
}

.feature-stores .fs-col a {
  width: 100%;
  min-height: 116px;
  border-radius: 6px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 4px;
}

.feature-stores .fs-col a img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: #fff;
  padding: 4px;
  display: block;
  margin: 0 auto;
}

.main-home {
  align-items: stretch;
}

.home-coupon {
  background: #fff;
  border-radius: 10px;
}

.home-coupon .store-logo {
  width: 100%;
  height: 196px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.main-home .home-coupon .store-logo img {
  width: 138px;
  height: 138px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: #fff;
  padding: 4px;
  display: block;
  margin: 0 auto;
}

.feature-stores .fs-col a img,
.main-home .home-coupon .store-logo img,
.category-stores a img {
  border-radius: 50% !important;
  border: 2px solid var(--primary-color) !important;
  background: #fff !important;
}

.home-coupon .coupon-title {
  min-height: 48px;
  height: auto;
}

.home-coupon .cta-button-cat a {
  display: block;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.verify-icon {
  width: 18px;
  height: 18px;
  position: relative;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  margin-right: 6px;
  vertical-align: middle;
}

.verify-icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  margin: 0;
}

.category-box-h {
  background: #fff;
}

.category-img {
  border-radius: 8px;
  background: transparent;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.category-img img {
  max-width: 70%;
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.category-stores {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.category-stores a {
  width: 33.333%;
  height: 52px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.category-stores a img {
  max-width: 96%;
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.post {
  width: calc(50% - 20px);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.post-img {
  height: 260px;
}

.post-img img {
  height: 100%;
  object-fit: cover;
}

.post-content {
  margin-top: 0;
  padding: 18px 18px 16px;
}

.post-title {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.post-detail {
  line-height: 1.35;
}

@media screen and (max-width: 1100px) {
  .home-coupon {
    width: calc(33.333% - 20px);
  }
}

@media screen and (max-width: 800px) {
  .home-coupon {
    width: calc(50% - 12px);
  }

  .main-home {
    gap: 12px;
  }

  .post {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .feature-stores {
    gap: 12px;
  }

  .feature-stores .fs-col {
    width: calc(50% - 6px);
    min-height: 132px;
    padding: 10px;
  }

  .feature-stores .fs-col a {
    min-height: 100px;
  }

  .home-coupon {
    width: 100%;
  }

  .home-coupon .store-logo {
    height: 140px;
  }

  .category-img {
    min-height: 120px;
  }

  .category-img img {
    max-height: 90px;
  }

  .post-title {
    font-size: 24px;
  }
}




