body{font-family:Arial;} .container{width:90%;max-width:1000px;margin:auto;}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:30px;}
.item img{width:100%;} .ceramic-detail img{width:100%;max-width:600px;margin:20px auto;display:block;}
.header-center {
  text-align: center;
}

/* Center the header container */
.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Social Media Links */
.social-links {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #666;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: #000;
}

.social-links svg {
  width: 28px;
  height: 28px;
}

/* Remove default h1 spacing */
.logo-container {
  margin: 0;
  padding: 0;
}

/* Center and size the logo */
.logo {
  max-width: 230px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Banner styling */
.banner {
  width: 100%;
  margin: 20px 0 40px; /* space above/below — adjust if needed */
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Design for Social Links */
@media (max-width: 768px) {
  .social-links {
    position: static;
    transform: none;
    margin-top: 15px;
    justify-content: center;
  }
  
  .site-header .container {
    flex-direction: column;
  }
}

