/* =========================================
   Toast Cafe — QR Menu Style Sheet
   Mobile-first, max-width 480px
   ========================================= */

/* --- Google Fonts & Reset --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #6B2A1A;
  --primary-dark:  #4A1A0E;
  --primary-light: #A0522D;
  --bg:            #F5F0E8;
  --bg-card:       #FFFFFF;
  --text-main:     #1A1A1A;
  --text-muted:    #6B6B6B;
  --text-light:    #9E9E9E;
  --border:        #EEEDE8;
  --shadow:        0 2px 12px rgba(0,0,0,0.08);
  --radius:        16px;
  --radius-sm:     10px;
  --font-main:     'Nunito', sans-serif;
}

/* --- Base Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  font-family: var(--font-main);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Page Wrapper (centered, mobile-first) --- */
.page-wrapper {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: var(--bg);
}

/* --- Page Content (space for bottom nav) --- */
.page-content {
  padding: 0 0 80px 0;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.site-header__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  pointer-events: none;
}

.site-header__logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  background: var(--bg-card);
}

.site-header__name {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* =========================================
   BOTTOM NAV
   ========================================= */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
  border: none;
  background: none;
  font-family: var(--font-main);
}

.bottom-nav__item.active,
.bottom-nav__item:hover {
  color: var(--primary);
}

.bottom-nav__icon {
  font-size: 22px;
  margin-bottom: 3px;
  line-height: 1;
}

/* =========================================
   SECTION TITLE
   ========================================= */
.section-title {
  font-size: 18px;
  font-weight: 800;
  padding: 16px 16px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  color: var(--text-main);
}

/* =========================================
   SEARCH BAR
   ========================================= */
.search-bar {
  position: relative;
  padding: 12px 16px;
}

.search-bar__input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-main);
  transition: border-color 0.2s;
}

.search-bar__input::placeholder {
  color: var(--text-light);
}

.search-bar__input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-bar__icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 18px;
  pointer-events: none;
}

/* =========================================
   INDEX SEARCH TRIGGER
   ========================================= */
.index-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 16px 8px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: border-color 0.15s;
}

.index-search:active {
  border-color: var(--primary);
}

.index-search__icon {
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.index-search__placeholder {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

/* =========================================
   CATEGORY LIST (single-column horizontal)
   ========================================= */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 16px 16px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
  color: inherit;
}

.category-card:last-child {
  border-bottom: none;
}

.category-card:active {
  opacity: 0.6;
}

.category-card__img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.skeleton-img--sq {
  width: 72px !important;
  height: 72px !important;
  border-radius: var(--radius-sm) !important;
  flex-shrink: 0;
}

.category-card__body {
  flex: 1;
  min-width: 0;
}

.category-card__name {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--text-main);
}

.category-card__desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.category-card__count {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(107,42,26,0.08);
  padding: 2px 8px;
  border-radius: 20px;
}

.category-card__arrow {
  font-size: 24px;
  color: var(--text-light);
  flex-shrink: 0;
  line-height: 1;
}

/* =========================================
   LOGO GRID
   ========================================= */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px 16px;
}

.logo-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  min-height: 72px;
}

.logo-card img {
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  display: block;
}

/* =========================================
   INFO SECTION
   ========================================= */
.info-section {
  /* wrapper for delivery/payment/social */
}

/* =========================================
   SOCIAL SECTION
   ========================================= */
.social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text-main);
  transition: opacity 0.15s;
  border-left: 4px solid transparent;
}

.social-btn:active {
  opacity: 0.7;
}

.social-btn img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.social-btn span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.social-btn--instagram {
  border-left-color: #dc2743;
}

.social-btn--facebook {
  border-left-color: #1877F2;
}

/* =========================================
   HAKKIMIZDA PAGE
   ========================================= */
.about-section {
  padding-bottom: 4px;
}

.about-text-block {
  padding: 0 16px 12px;
}

.about-text-block p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.value-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 16px 14px;
}

.value-card__icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.value-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 6px;
}

.value-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Badge grid */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 16px 20px;
}

.about-badge {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-left: 3px solid var(--primary);
}

.about-badge__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.about-badge__label {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
}

/* =========================================
   OFFCANVAS ABOUT
   ========================================= */
.offcanvas-about {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 16px;
  background: var(--bg);
}

.offcanvas-about__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.offcanvas-about__text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.offcanvas-about__list .info-row {
  padding: 6px 0;
  border-bottom: none;
}

.offcanvas-about__list .info-row__icon {
  font-size: 16px;
}

.offcanvas-about__list .info-row__value {
  font-size: 12px;
}

/* =========================================
   PRODUCT CARD
   ========================================= */
.product-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-1px);
}

.product-card:active {
  transform: translateY(0);
}

.product-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--text-main);
}

.product-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-card__img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* =========================================
   PRICE BOX
   ========================================= */
.price-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.price-box__current {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.price-box__original {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* =========================================
   ALLERGEN BADGE
   ========================================= */
.allergen-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  padding: 2px 8px;
  background: #FFF3EE;
  color: var(--primary-dark);
  border-radius: 20px;
  margin: 2px;
  font-weight: 600;
}

.allergen-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* =========================================
   CAMPAIGN HERO
   ========================================= */
.campaign-hero__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* =========================================
   CAMPAIGN CARD
   ========================================= */
.campaign-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  background: #FFFFFF;
}

.campaign-card__img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center top;
  display: block;
  background-color: var(--primary);
  padding: 16px 32px 8px;
}

.campaign-card__body {
  padding: 14px;
  background: #FFFFFF;
}

.campaign-card__title {
  font-weight: 800;
  font-size: 16px;
  color: var(--text-main);
  margin: 0 0 4px;
}

.campaign-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.campaign-card__badge {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 10px;
}

/* =========================================
   WIFI MODAL
   ========================================= */
.wifi-info-box {
  background: #F5F5F0;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}

.wifi-info-box__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.wifi-info-box__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-primary:active {
  background: var(--primary-dark);
  transform: scale(0.98);
}

/* =========================================
   RATING STARS
   ========================================= */
.stars {
  display: flex;
  gap: 4px;
}

.stars__item {
  font-size: 28px;
  cursor: pointer;
  color: #DDDDDD;
  transition: color 0.15s;
  line-height: 1;
  user-select: none;
}

.stars__item.selected,
.stars__item:hover {
  color: #FFB800;
}

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast-msg {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-family: var(--font-main);
  font-weight: 600;
  z-index: 9999;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.toast-msg.visible {
  opacity: 1;
}

/* =========================================
   FEATURED PRODUCTS (horizontal scroll)
   ========================================= */
.featured-scroll {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.featured-scroll::-webkit-scrollbar {
  display: none;
}

.featured-card {
  flex-shrink: 0;
  width: 150px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.featured-card:hover {
  transform: translateY(-2px);
}

.featured-card__img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.featured-card__body {
  padding: 8px 10px 10px;
}

.featured-card__name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.featured-card__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}

/* =========================================
   PRODUCT DETAIL (urun.html)
   ========================================= */
.product-detail {
  padding: 16px;
}

.product-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-detail__allergens {
  margin-top: 16px;
}

.product-detail__allergen-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-detail__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.product-detail__body {
  padding: 20px 16px;
}

.product-detail__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.product-detail__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-detail__price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.product-detail__original-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

/* =========================================
   INFO ROWS (gorustoner, iletisim)
   ========================================= */
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.info-row__icon {
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.info-row__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.info-row__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

/* =========================================
   FORM (gorustoner.html)
   ========================================= */
.form-group {
  padding: 0 16px;
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #FFFFFF;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-main);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: none;
  height: 110px;
  line-height: 1.5;
}

/* =========================================
   404 / YAPIMASAMASINDA
   ========================================= */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 40px 24px;
  text-align: center;
}

.empty-state__icon {
  font-size: 64px;
  margin-bottom: 16px;
  line-height: 1;
}

.empty-state__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.empty-state__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* =========================================
   TOP BAR (urun.html)
   ========================================= */
.top-bar {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  max-width: 480px;
  margin: 0 auto;
}

.top-bar span {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================
   BACK BUTTON
   ========================================= */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--primary);
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  margin: -8px -4px -8px -8px;
  line-height: 1;
  font-family: var(--font-main);
  flex-shrink: 0;
  text-decoration: none;
}

/* =========================================
   UTILITY
   ========================================= */
.px-16 { padding-left: 16px; padding-right: 16px; }
.py-8  { padding-top: 8px; padding-bottom: 8px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-0  { margin-bottom: 0; }

.text-muted  { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.fw-800 { font-weight: 800; }

.divider {
  height: 8px;
  background: var(--border);
  opacity: 0.5;
}

/* =========================================
   SKELETON LOADING
   ========================================= */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-img {
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg, #e8e0d4 25%, #f0e8dc 50%, #e8e0d4 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite;
}

.skeleton-line {
  display: block;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8e0d4 25%, #f0e8dc 50%, #e8e0d4 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s infinite;
  margin-bottom: 6px;
}

.skeleton-line.short {
  width: 60%;
}

/* =========================================
   CATEGORY HERO (kategori.html)
   ========================================= */
.category-hero {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.category-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.category-hero-overlay h1 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  font-family: var(--font-main);
}

.category-hero-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  margin: 4px 0 0;
  font-family: var(--font-main);
}

/* =========================================
   PRODUCT CARD (kategori.html)
   ========================================= */
.product-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.15s;
}

.product-card:active {
  transform: scale(0.98);
}

.product-card-body {
  flex: 1;
  min-width: 0;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-main);
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-card-img img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.price-normal,
.price-discounted {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

.price-original {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
}

/* =========================================
   PRODUCT HERO + DETAIL (urun.html)
   ========================================= */
.product-hero {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail-name {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  flex: 1;
  padding-right: 12px;
  font-family: var(--font-main);
  color: var(--text-main);
}

.product-detail-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-detail-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* =========================================
   CAMPAIGN PAGE (kampanyalar.html)
   ========================================= */
.campaign-body {
  padding: 14px;
}

.campaign-badge {
  display: inline-block;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.campaign-date {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}

/* =========================================
   FEEDBACK / GÖRÜŞ & ÖNERİ (gorustoner.html)
   ========================================= */
.rating-box {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
}

.stars span {
  font-size: 32px;
  cursor: pointer;
  color: #DDDDDD;
  transition: color 0.15s;
  margin-right: 4px;
  user-select: none;
}

.stars span.active {
  color: #FFB800;
}

.feedback-form {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow);
}

.form-control {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px !important;
  font-size: 14px !important;
  font-family: var(--font-main) !important;
  width: 100%;
  background: #FFFFFF;
  color: var(--text-main);
}

.form-control:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: none !important;
}

/* =========================================
   404 / YAPIMASAMASINDA
   ========================================= */
.fullscreen-center {
  min-height: 100vh;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg);
}

.error-logo {
  width: 140px;
  object-fit: contain;
  margin-bottom: 16px;
}

.error-code {
  font-size: 72px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  line-height: 1;
  font-family: var(--font-main);
}

.coming-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0;
  font-family: var(--font-main);
}

.error-msg {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin: 8px 0 4px;
}

.error-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--bg-card);
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--primary);
}
