*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}
body{
    background:#f5f5f5;
}

/* TOP BAR */
.top-bar{
    background:#f1f1f1;
    padding:6px 40px;
    font-size:14px;
    display:flex;
    gap:20px;
}

/* HEADER */
.header{
    background:#fff;
    padding:15px 40px;
    display:flex;
    align-items:center;
    gap:20px;
}
.logo{
    font-size:26px;
    font-weight:bold;
    color:#7b2cff;
}
.logo span{color:#000;}
.catalog-btn{
    background:#f0e9fb;
    border:none;
    padding:10px 14px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}
.search{
    flex:1;
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
}
.header-icons{
    display:flex;
    gap:20px;
    font-size:14px;
}

/* NAV */
.nav{
    background:#fff;
    padding:10px 40px;
    display:flex;
    gap:25px;
    font-size:14px;
    border-top:1px solid #eee;
}
.nav a{
    text-decoration:none;
    color:#333;
}

/* HERO */
.hero{
    margin:30px 40px;
    background:linear-gradient(90deg,#1f3c5b 50%,#e8d8c8 50%);
    border-radius:18px;
    padding:40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
}
.hero-text{
    max-width:50%;
}
.hero-text h1{
    font-size:32px;
    margin:20px 0;
}
.discount{
    display:inline-block;
    background:#c7ff00;
    color:#000;
    padding:8px 14px;
    border-radius:8px;
    font-weight:bold;
}
.hero img{
    height: 350px;
    width: 50%;
    margin: 2px;
}

/* POPULAR */
.popular{
    margin:40px;
}
.popular h2{
    font-size:22px;
    margin-bottom:20px;
}
.product-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}
.product-card{
    background:#fff;
    border-radius:14px;
    padding:15px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    transition:.3s;
}
.product-card:hover{
    transform:translateY(-5px);
}
.product-card img{
    width:100%;
    height:350px;
    object-fit:contain;
}
.product-card h3{
    font-size:14px;
    margin:5px 0;
    min-height:10px;
}
.price{
    font-weight:bold;
    margin-bottom:10px;
}
.product-card button{
    background:#7b2cff;
    color:#fff;
    border:none;
    padding:10px;
    width:100%;
    border-radius:10px;
    cursor:pointer;
}

/* FOOTER */
.footer {
  background: #f3f3f3;
  margin-top: 60px;
  padding-top: 40px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  text-decoration: none;
  color: #555;
}

.footer-col a:hover {
  color: #6a00ff;
}

/* LOGO */
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #6a00ff;
  margin-bottom: 10px;
}

.footer-logo span {
  color: #000000;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 30px;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #ddd;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}