/* General styles for the grid container */
.ccg-categories-grid {
    display: grid;
    grid-template-areas:
      "new-arrival new-arrival new-arrival"
      "gold gold stretching"
      "titanium steel stretching";
    grid-template-columns: 1fr 1fr 1fr; /* Two columns: 2 parts for the left, 1 for the right */
    gap: 15px; /* Space between items */
    margin: 0 auto; /* Center the grid on the page */
    padding-top: 4rem;
  }
  
  /* Style each category item */
  .ccg-category-item {
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: #fff; /* Ensure a white background for all items */
  }
  
  /* Link styles */
  .ccg-category-item a {
    text-decoration: none;
    display: block;
    position: relative;
  }
  
  /* Category label styles */
  .ccg-category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #778b8f;
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    padding: 5px;
    font-weight:bold;
  }
  
  /* Image styles */
  .ccg-category-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Smooth transition for hover effects */
  }
  
  .ccg-category-item-title {
    font-family: Sinerva !important;
    font-weight: 400 !important;
}
  
  /* Specific grid areas */
  .ccg-category-item:nth-child(1) {
    grid-area: new-arrival;
  }
  .ccg-category-item:nth-child(2) {
    grid-area: gold;
  }
  .ccg-category-item:nth-child(3) {
    grid-area: stretching;
  }
  .ccg-category-item:nth-child(4) {
    grid-area: titanium;
  }
  .ccg-category-item:nth-child(5) {
    grid-area: steel;
  }
  
  .ccg-categories-grid-2{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 15px;
  padding-top: 15px;
  margin: 0 auto;
}

.ccg-category-item-2{
  position: relative;
  overflow: hidden;
  text-align: center;
}
  
.ccg-category-item-2 a {
    text-decoration: none;
    display: block;
    position: relative;
    height: 100%;
}
.ccg-category-item-2 img{
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
  height: 100% !important;
}


  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ccg-categories-grid {
      grid-template-areas:
        "new-arrival"
        "gold"
        "stretching"
        "titanium"
        "steel";
      grid-template-columns: 1fr; /* Single column layout for smaller screens */
    }
    .ccg-categories-grid-2{
      grid-template-columns: 1fr; 
    }
  }