/* ==========================================
   Etlik Yayla Kasabı - Ana Site Stilleri
   ========================================== */

/* CSS Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c41e3a;
  --primary-dark: #a01729;
  --secondary: #1a1a1a;
  --accent: #d4af37;
  --text-primary: #1a1a1a;
  --text-secondary: #666;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --border: #e0e0e0;
  --success: #27ae60;
  --warning: #f39c12;
  --danger: #e74c3c;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
  background: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background: #333;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-lg);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-btn {
  position: relative;
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: var(--secondary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: var(--primary);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 80px 30px 30px;
  z-index: 1001;
  transition: right 0.3s ease;
}

.mobile-menu.active {
  right: 0;
}

.close-mobile-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-primary);
}

.mobile-link {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-dark) 100%);
  padding: 120px 20px 60px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/pattern.png') repeat;
  opacity: 0.05;
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.award-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 30px;
}

.crown-icon {
  width: 80px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-year {
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  margin: 10px 0;
}

.hero-award {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hero-brand {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 20px 0;
  line-height: 1.2;
}

.hero-brand span {
  color: var(--primary);
  display: block;
  font-size: 3rem;
}

.hero-slogan {
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 20px;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* About Section */
.about {
  background: var(--bg-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.award-info {
  display: flex;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.award-icon {
  width: 60px;
  height: 60px;
}

.award-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.about-text {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.feature-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Products */
.products-section {
  background: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--secondary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-cat {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.product-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.product-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  padding: 8px 12px;
  background: var(--bg-light);
  font-weight: 600;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: var(--border);
}

.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  padding: 8px 5px;
  font-weight: 600;
}

/* Masters Section */
.masters {
  background: var(--bg-light);
}

.masters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.master-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.master-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.master-info {
  padding: 30px;
}

.master-name {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.master-title {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.master-desc {
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.master-skills {
  list-style: none;
}

.master-skills li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}

.master-skills li span {
  font-size: 1.5rem;
}

/* Stats */
.stats {
  background: var(--primary);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.counter {
  display: inline-block;
}

/* Contact */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.contact-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-item h3 {
  margin-bottom: 5px;
  color: var(--primary);
}

.contact-item a {
  color: var(--text-secondary);
}

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

/* Footer */
.footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-text {
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-links, .footer-contact {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Alerts */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-large {
  max-width: 900px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--text-secondary);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
}

.close-modal:hover {
  background: var(--border);
}

/* Responsive */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .masters-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-year {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   Auth Pages (Giriş/Kayıt)
   ========================================== */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 120px 20px 60px;
}

.auth-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 450px;
  width: 100%;
}

.auth-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--primary);
}

.auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.auth-form input,
.auth-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.auth-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================
   Page Header
   ========================================== */

.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 140px 20px 60px;
  text-align: center;
  color: white;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ==========================================
   Products Page
   ========================================== */

.products-page {
  padding: 40px 0 80px;
}

.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border);
  font-weight: 500;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  padding: 10px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 200px;
}

.empty-state {
  text-align: center;
  padding: 80px 20px;
}

.empty-state .empty-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

/* ==========================================
   Cart Page
   ========================================== */

.cart-page {
  padding: 40px 0 80px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cart-items h2 {
  margin-bottom: 30px;
}

.cart-item {
  display: flex;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-item-subtotal {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 100px;
  text-align: right;
}

.btn-remove {
  font-size: 1.2rem;
  padding: 8px;
  background: var(--danger);
  color: white;
  border-radius: 8px;
}

.cart-summary {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-summary h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.summary-total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 2px solid var(--border);
  padding-top: 15px;
  margin-top: 10px;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart .empty-icon {
  font-size: 5rem;
  margin-bottom: 20px;
}

/* ==========================================
   Checkout Page
   ========================================== */

.checkout-page {
  padding: 40px 0 80px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.checkout-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.checkout-form h2 {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
}

.payment-info {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.payment-info h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.checkout-summary {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.summary-items {
  border-bottom: 2px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.summary-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.summary-item-info {
  flex: 1;
}

.summary-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.summary-item-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.summary-item-price {
  font-weight: 600;
  color: var(--primary);
}

.summary-totals {
  border-top: 2px solid var(--border);
  padding-top: 20px;
}

/* ==========================================
   Orders Page
   ========================================== */

.orders-page {
  padding: 40px 0 80px;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.order-info h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.order-date {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.status-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-preparing {
  background: #cce5ff;
  color: #004085;
}

.status-delivering {
  background: #d1ecf1;
  color: #0c5460;
}

.status-completed {
  background: #d4edda;
  color: #155724;
}

.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.order-body {
  padding: 20px;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.order-detail-row .label {
  font-weight: 500;
  color: var(--text-secondary);
}

.order-detail-row .value {
  font-weight: 600;
  color: var(--text-primary);
}

.order-footer {
  padding: 15px 20px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}

.order-detail-full {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-section h3 {
  margin-bottom: 20px;
  color: var(--primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.detail-table {
  width: 100%;
}

.detail-table th {
  text-align: left;
  padding: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

.detail-table td {
  padding: 10px;
}

.items-table {
  width: 100%;
  border-collapse: collapse;
}

.items-table thead {
  background: var(--bg-light);
}

.items-table th,
.items-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.items-table tfoot {
  background: var(--bg-light);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
  .cart-layout,
  .checkout-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-summary,
  .checkout-summary {
    position: static;
  }
  
  .cart-item {
    flex-direction: column;
  }
  
  .cart-item-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}
