/* Global fix */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Choose Shutter Section */
.choose-shutter {
  background: #f7f7fa;
  padding: 35px 0 32px 0;
  position: relative;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
}

.choose-shutter-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.choose-shutter-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.choose-shutter-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 46px;
  font-weight: 600;
  color: #1C1E36;
  text-align: center;
  flex: 1;
  margin-bottom: 0;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #23253a;
  background: #fff;
  color: #23253a;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.arrow-btn:hover {
  background: #23253a;
  color: #fff;
}

.choose-shutter-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  color: #404040;
  text-align: center;
  margin: 18px 0 40px 0;
  max-width: 700px;
}

.shutter-cards {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin-bottom: 36px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.shutter-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.10);
  border: 2px solid #ececec;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  padding: 28px 18px 24px 18px;
  transition: box-shadow 0.2s, border 0.2s;
  box-sizing: border-box;
}

.shutter-card:hover {
  box-shadow: 0 8px 32px rgba(44, 44, 44, 0.16);
  border: 2px solid #23253a;
}

.shutter-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 24px;
}

.shutter-card-content {
  width: 100%;
  text-align: left;
}

  .shutter-card-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
  }

  .shutter-card-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    color: #000000;
  }

.choose-shutter-btn-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.enquire-btn {
  background: #23253a;
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  font-weight: 500;
  border: none;
  border-radius: 40px;
  padding: 16px 48px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

.enquire-btn:hover {
  background: #44476a;
  color: #fff;
  transform: translateY(-2px);
}

.arrow-icon {
  font-size: 26px;
  margin-left: 4px;
}

@media (max-width: 900px) {
  .choose-shutter-container {
    padding: 0 16px;
  }

  .choose-shutter-title {
    font-size: 32px;
  }

  .choose-shutter-subtitle {
    font-size: 20px;
  }

  

  .shutter-cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0;
  }

  .shutter-card {
    width: 100%;
    max-width: 100%;
    padding: 20px 16px;
  }
}
