:root {
  --wrap-max: 1200px;
  --gap: 18px;
  --bg-soft: #fceae8;
  --pink1: #ff589b;
  --pink2: #ff136f;
  --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #111;
  line-height: 1.5;
}

header {
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.wrap {
  width: 90%;
  max-width: var(--wrap-max);
  margin: auto;
}

section {
  margin: 3.5rem 0;
}

h2.title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 100%;
}

.logo img {
  width: 130px;
  transition: var(--transition);
}

.logo img:hover {
  opacity: .85;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  transition: var(--transition);
}

.menu a:hover {
  color: var(--pink1);
  text-decoration: underline var(--pink2);
}

.bar {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  background: var(--bg-soft);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero .left {
  max-width: 520px;
}

.k.head {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.k.desc {
  color: #555;
  margin-bottom: 12px;
}

.k.price {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.btn {
  background: linear-gradient(90deg, var(--pink1), var(--pink2));
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}


.btn:hover {
  transform: scale(1.05);
}

.btn:active {
  transform: scale(0.95);
  background: linear-gradient(90deg, var(--pink2), var(--pink1));
}

.btn-1 {
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-1:hover {
  background: #333;
  transform: translateY(-3px);
}

.btn-1:active {
  background: #333;
  transform: scale(0.95);
}

.hero-img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.cat {
  padding: 16px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  cursor: pointer;
}

.cat img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  transition: all 0.5s ease-out;
}

.cat h3 {
  font-size: 1.1rem;
}

.cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cat:active {
  transform: scale(0.95);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.c-watch {
  background: #ffa500;
}

.c-bag {
  background: #d5348a;
}

.c-shoes {
  background: #4b7ee0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid #E0E0E0;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.card:hover {
  cursor: pointer;
  border: 1px solid gray;
  box-shadow: #6366F133 0px 4px 20px 0px;
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.card h3 {
  margin-top: 12px;
}

.card p {
  color: #555;
  margin: 6px 0 10px;
}

.card h4 {
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-wrap {
  background: var(--bg-soft);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.sub-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
}

.sub-wrap input {
  width: 60%;
  max-width: 420px;
  padding: 10px;
  border: none;
  border-radius: 8px;
}


/* Responsive  */
@media (max-width: 992px) {

  .grid-3,
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .menu {
    display: none;
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .bar {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .cards,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .sub-row {
    flex-direction: column;
  }

  .sub-wrap input {
    width: 100%;
  }

  .footer-container {
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
    margin: 0 auto;
  }

  .footer-logo {
    margin: 0 auto 10px;
    display: block;
  }

  .social-icons {
    justify-content: center;
  }
}

footer {
  text-align: center;
  padding: 18px 0;
  color: #666;
}

.footer {
  background: #f4f4f4;
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 1px solid #ddd;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #111;
}

.footer p,
.footer a {
  color: #444;
  font-size: 0.95rem;
}

.footer a {
  text-decoration: none;
  transition: 0.3s;
}

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

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 8px;
}


.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  background: #222;
  border-radius: 50%;
  font-size: 1rem;
  transition: 0.3s ease;
}

.social:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.fb {
  background: #1877F2;
}

.gh {
  background: #333;
}

.ln {
  background: #0A66C2;
}


.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.footer-bottom p {
  color: #555;
  opacity: 0.7;
  font-size: 0.9rem;
}