/*
Theme Name: Sykup Deals
*/

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
}

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

/* ================= HEADER ================= */
.site-header {
  background: #2b2b2b;
  color: #fff;
}

/* TOP */
.header-top {
  padding: 15px 0;
}

.header-top .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO */
.logo img {
  height: 45px;
  width: auto;
}

/* SEARCH */
.search-box {
  flex: 1;
}

.search-box form {
  display: flex;
  align-items: center;
  height: 46px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.search-box input {
  flex: 1;
  height: 100%;
  border: none;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.search-box button {
  width: 52px;
  height: 100%;
  border: none;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}

/* MENU */
.header-nav {
  background: #1f1f1f;
}

.header-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  height: 44px;
  align-items: center;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.header-nav a:hover {
  text-decoration: underline;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #222;
  color: #ccc;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 8px;
}

.footer-menu ul {
  list-style: none;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-social a {
  margin-right: 12px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 15px;
  font-size: 13px;
}
