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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #e0f7fa;
  min-height: 100vh;
  line-height: 1.6;
}

/* Header */
header {
  background-color: rgba(21, 34, 46, 0.9);
  padding: 30px 0 20px;
  text-align: center;
  border-bottom: 2px solid #1e3c52;
}

/* Ice Logo Effect */
.ice-logo {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(to bottom, #e0f7fa, #b2ebf2, #81d4fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 5px #e0f7fa,
    0 0 10px #b2ebf2,
    0 0 20px #81d4fa,
    0 0 40px rgba(129, 212, 250, 0.4);
  letter-spacing: 2px;
  transition: transform 0.3s ease;
}

.ice-logo:hover {
  transform: scale(1.05);
}

/* Navigation */
.nav-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 15px 0;
}

.nav-menu li a {
  color: #a8d0e6;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.nav-menu li a:hover {
  background-color: #2c5364;
  color: #ffffff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(32, 58, 67, 0.8);
  margin-top: 20px;
  border-radius: 10px;
}

.hero h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #81d4fa;
}

.hero p {
  font-size: 1.2rem;
  color: #cfd8dc;
  max-width: 700px;
  margin: 0 auto;
}

/* Sneakers Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  padding: 50px 20px;
  margin-top: 20px;
}

.brand-card {
  background: rgba(32, 58, 67, 0.9);
  color: #a8d0e6;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid #81d4fa;
  box-shadow: 0 0 10px rgba(129, 212, 250, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.brand-card:hover {
  background-color: #2c5364;
  color: #ffffff;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #15222e;
  text-align: center;
  padding: 20px;
  color: #90a4ae;
  margin-top: 40px;
  border-top: 2px solid #1e3c52;
}
.nav-menu li a.active {
  background-color: #81d4fa;
  color: #15222e;
  border-radius: 6px;
}


.clothing-table-section {
  padding: 30px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.clothing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(32, 58, 67, 0.8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(129, 212, 250, 0.3);
}

.clothing-table td {
  border: 1px solid #81d4fa;
  color: #a8d0e6;
  padding: 15px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  vertical-align: middle;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.clothing-table td:hover {
  background-color: #2c5364;
  color: #ffffff;
  box-shadow: inset 0 0 8px #81d4fa;
  border-color: #a8d0e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .clothing-table-section {
    padding: 20px 10px 40px;
  }

  .clothing-table td {
    padding: 12px 6px;
    font-size: 0.8rem;
  }
}
.clothing-table td {
  border: 1px solid #81d4fa;
  padding: 10px;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  background-color: rgba(32, 58, 67, 0.8);
  border-radius: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.clothing-table td:hover {
  background-color: #2c5364;
  box-shadow: 0 0 15px #81d4fa;
}

.clothing-table td img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  margin-bottom: 8px;
  object-fit: cover;
}

.product-name {
  font-weight: 700;
  color: #e0f7fa;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.product-price {
  font-weight: 600;
  color: #81d4fa;
  font-size: 0.85rem;
}



