/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #c62828; /* Afyon Bez Sucuk Red */
  --primary-hover: #9c1f1f;
  --secondary-color: #1a252f; /* Corporate Dark Navy */
  --secondary-light: #2c3e50;
  --bg-color: #ffffff;
  --bg-light: #f4f6f8;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #eaeaea;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.text-center { text-align: center; }
.w-100 { width: 100%; display: block; }
.mt-4 { margin-top: 1.5rem; }

/* Utilities */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 30px;
}

.divider.left {
  margin: 15px 0 30px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.btn-whatsapp {
  background-color: #128C7E;
  color: #fff;
  border-color: #128C7E;
}
.btn-whatsapp:hover {
  background-color: #075E54;
  border-color: #075E54;
  color: #fff;
}

/* ================= TOP BAR ================= */
.top-bar {
  background-color: var(--secondary-color);
  color: #a5b1c2;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left a {
  margin-right: 20px;
}
.top-bar-left a:hover {
  color: #fff;
}
.top-bar .icon {
  color: var(--primary-color);
  margin-right: 5px;
}

/* ================= HEADER ================= */
.header {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  max-width: 150px;
  height: auto;
}
.nav-center {
  display: flex;
  gap: 35px;
}
.nav-center a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-center a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}
.nav-center a:hover {
  color: var(--primary-color);
}
.nav-center a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transform: translateY(-100%);
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/slider/slider1.png'); /* Reusing an image */
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Dark overlay effect */
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-text-wrapper {
  max-width: 600px;
  color: #fff;
}
.hero-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--primary-color);
  margin-bottom: 15px;
}
.hero-text-wrapper h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
}
.hero-text-wrapper p {
  font-size: 1.1rem;
  color: #dcdde1;
  margin-bottom: 35px;
}
.hero-actions {
  display: flex;
  gap: 15px;
}

/* ================= CORPORATE ABOUT ================= */
.corporate-about {
  padding: 40px 0 100px 0;
  background-color: var(--bg-color);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
}
.about-text p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.stats-row {
  display: flex;
  gap: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}
.stat-item {
  flex: 1;
}
.stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ================= PRODUCTS GRID ================= */
.products-section {
  padding: 100px 0 40px 0;
}
.products-section h2 {
  font-size: 2.5rem;
}
.products-grid-new {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 30px;
  margin-top: 50px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.products-grid-new::-webkit-scrollbar {
  display: none;
}
.product-card-new {
  flex: 0 0 350px;
  max-width: 350px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-color);
}
.product-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border-color: transparent;
}
.product-card-new.featured {
  border: 2px solid var(--primary-color);
}
.featured-badge {
  position: absolute;
  top: 30px;
  left: -65px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 6px 0;
  width: 240px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  transform: rotate(-45deg);
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.product-img-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--bg-light);
}
.product-img-box img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-new:hover .product-img-box img {
  transform: scale(1.05);
}
.product-card-body {
  padding: 30px;
  text-align: center;
}
.product-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.price-row {
  margin-bottom: 15px;
}
.price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-color);
}
.text-primary {
  color: var(--primary-color) !important;
}
.shipping-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 5px;
  line-height: 1.3;
}
.gift-text-small {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-card-new.featured .gift-text-small {
  color: var(--primary-color);
}

/* ================= HOW TO ORDER ================= */
.order-process {
  padding: 100px 0;
  background-color: #fff;
}
.order-process h2 {
  font-size: 2.5rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: var(--transition);
}
.process-step:hover {
  background: var(--primary-color);
  color: #fff;
}
.process-step:hover h4,
.process-step:hover p {
  color: #fff;
}
.process-step:hover .step-circle {
  background: #fff;
  color: var(--primary-color);
}
.step-circle {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ================= CORPORATE CTA ================= */
.corporate-cta {
  background-color: var(--secondary-color);
  padding: 80px 0;
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-text h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 2.2rem;
}
.cta-text p {
  color: #a5b1c2;
  font-size: 1.1rem;
}

/* ================= FOOTER ================= */
.footer-new {
  background-color: var(--secondary-light);
  color: #dcdde1;
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 20px;
}
.brand-col p {
  font-size: 0.95rem;
  line-height: 1.8;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 15px;
}
.footer-col ul li a {
  color: #dcdde1;
}
.footer-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}
.contact-col li {
  display: flex;
  align-items: flex-start;
}
.contact-col .icon {
  margin-right: 10px;
  color: var(--primary-color);
}
.action-col p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.footer-bottom {
  background-color: var(--secondary-color);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; gap: 30px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; } /* Hide top bar on mobile for cleaner look */
  
  .nav-center, .header-action { display: none; }
  .hamburger { display: flex; }
  
  .hero-bg { background-position: 80% center; }
  
  .hero-section { height: 60vh; min-height: 400px; text-align: center; }
  .hero-text-wrapper h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  
  .products-grid-new {
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    padding-left: 7.5vw;
    padding-right: 7.5vw;
    scroll-padding-left: 7.5vw;
    scroll-padding-right: 7.5vw;
  }
  .product-card-new {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .stats-row { flex-direction: column; gap: 20px; text-align: center; }
}
