/* General Styles */
body {
    font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
    color: #444;
    background-color: #f7f9fc;
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Home Button Styles */
  .home-button {
    display: inline-block;
    margin: 20px;
    padding: 12px 25px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    transition: background-color 0.3s;
  }
  
  .home-button:hover {
    background-color: #218838;
  }
  
  /* Design Showcase Section */
  .design-showcase {
    padding: 50px 0;
    background: #ffddc1;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .showcase-header h2 {
    font-size: 32px;
    color: #d9534f;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .showcase-header p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  .showcase-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .design-item {
    flex-basis: 45%;
    margin-bottom: 30px;
    transition: transform 0.3s;
  }
  
  .design-item:hover {
    transform: scale(1.05);
  }
  
  .design-card {
    background: #fd0b43;
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .design-card img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 3px solid #d9534f;
  }
  
  .design-info {
    padding: 20px;
  }
  
  .design-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  }
  
  .design-info p {
    font-size: 16px;
    color: #f9f9f9;
  }
  
  /* Store Visit Line */
  .store-visit {
    margin: 40px 0;
    font-size: 22px;
    color: #007bff;
    font-weight: bold;
    text-align: center;
  }
  
  /* Responsive Styles */
  
  /* Tablet and Phone View */
  @media (max-width: 768px) {
    .showcase-header h2 {
      font-size: 28px;
    }
  
    .showcase-header p {
      font-size: 16px;
    }
  
    .design-item {
      flex-basis: 100%;
    }
  
    .store-visit {
      font-size: 20px;
    }
  
    .home-button {
      font-size: 16px;
      padding: 10px 20px;
    }
  }
  
  /* Phone View */
  @media (max-width: 576px) {
    .showcase-header h2 {
      font-size: 24px;
    }
  
    .showcase-header p {
      font-size: 14px;
    }
  
    .design-info h3 {
      font-size: 20px;
    }
  
    .design-info p {
      font-size: 14px;
    }
  
    .store-visit {
      font-size: 18px;
    }
  
    .home-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  }
  