/**
 * TripAdvisor Icons CSS
 * Özel SVG ikon seti
 */

@font-face {
  font-family: 'TripAdvisorIcons';
  src: url('fonts/tripadvisor-icons.woff2') format('woff2'),
       url('fonts/tripadvisor-icons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.ta-icon {
  /* Font-face kullanarak ikonlar için temel stil */
  font-family: 'TripAdvisorIcons' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TripAdvisor Özel SVG ikon kodları */
.ta-icon-search:before {
  content: "\e800";
}
.ta-icon-home:before {
  content: "\e801";
}
.ta-icon-hotel:before {
  content: "\e802";
}
.ta-icon-restaurant:before {
  content: "\e803";
}
.ta-icon-attraction:before {
  content: "\e804";
}
.ta-icon-review:before {
  content: "\e805";
}
.ta-icon-bookmark:before {
  content: "\e806";
}
.ta-icon-profile:before {
  content: "\e807";
}
.ta-icon-settings:before {
  content: "\e808";
}
.ta-icon-close:before {
  content: "\e809";
}
.ta-icon-menu:before {
  content: "\e80a";
}
.ta-icon-star:before {
  content: "\e80b";
}
.ta-icon-star-half:before {
  content: "\e80c";
}
.ta-icon-location:before {
  content: "\e80d";
}
.ta-icon-camera:before {
  content: "\e80e";
}
.ta-icon-share:before {
  content: "\e80f";
}
.ta-icon-like:before {
  content: "\e810";
}
.ta-icon-dislike:before {
  content: "\e811";
}
.ta-icon-calendar:before {
  content: "\e812";
}
.ta-icon-clock:before {
  content: "\e813";
}
.ta-icon-phone:before {
  content: "\e814";
}
.ta-icon-email:before {
  content: "\e815";
}
.ta-icon-globe:before {
  content: "\e816";
}
.ta-icon-flight:before {
  content: "\e817";
}
.ta-icon-car:before {
  content: "\e818";
}
.ta-icon-notification:before {
  content: "\e819";
}
.ta-icon-arrow-right:before {
  content: "\e81a";
}
.ta-icon-arrow-left:before {
  content: "\e81b";
}
.ta-icon-arrow-up:before {
  content: "\e81c";
}
.ta-icon-arrow-down:before {
  content: "\e81d";
}
.ta-icon-chat:before {
  content: "\e81e";
}
.ta-icon-warning:before {
  content: "\e81f";
}
.ta-icon-info:before {
  content: "\e820";
}
.ta-icon-check:before {
  content: "\e821";
}
.ta-icon-wifi:before {
  content: "\e822";
}
.ta-icon-parking:before {
  content: "\e823";
}
.ta-icon-breakfast:before {
  content: "\e824";
}
.ta-icon-pool:before {
  content: "\e825";
}
.ta-icon-spa:before {
  content: "\e826";
}
.ta-icon-gym:before {
  content: "\e827";
}

/* TripAdvisor logosu için özel stil */
.ta-icon-logo:before {
  content: "\e830";
  color: #00a680;
}

/* İkon boyutları */
.ta-icon-sm {
  font-size: 16px;
}
.ta-icon-md {
  font-size: 24px;
}
.ta-icon-lg {
  font-size: 32px;
}

/* SVG ikon boyutlandırma */
.ta-svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* SVG ikon boyutları */
.ta-svg-icon-sm {
  width: 16px;
  height: 16px;
}
.ta-svg-icon-md {
  width: 24px;
  height: 24px;
}
.ta-svg-icon-lg {
  width: 32px;
  height: 32px;
} 