/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff8f0;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background-color: #f13d17; /* Updated color */
    color: white;
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    max-width: 350px;
    display: block;
    margin: 0 auto 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #ffc7bb; /* Lighter version of f13d17 */
    color: #7a1a0f;
  }
  
  main {
    padding: 30px;
    text-align: center;
  }
  
  section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f13d17; /* Heading color */
  }
  
  section p,
  section ul {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  footer {
    background-color: #f13d17; /* Footer matches header */
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding: 0 20px;
  }
  
  .product-card {
    background-color: #fff;
    border: 2px solid #f13d17;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: auto; /* Let it scale naturally */
    object-fit: contain; /* Ensure the full image shows */
    border-radius: 8px;
    margin-bottom: 10px;
    max-height: 250px; /* Optional: limit height if images are too tall */
  }
  
  
  .product-card h3 {
    color: #f13d17;
    margin: 10px 0 5px;
  }
  
  .product-card p {
    font-size: 0.95rem;
    color: #555;
  }
  .header-wrapper {
    position: relative;
    text-align: center;
    padding: 20px 0;
  }
  
  .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  
  .corner-logo {
    position: absolute;
    top: 0;
    width:150px;
    height: auto;
  }
  
  .left-corner {
    left: 30px
  }
  
  .right-corner {
    right: 30px
  }
  .featured-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    padding: 0 30px;
    flex-wrap: wrap;
  }
  
  .corner-img {
    max-width: 250px;
    height: auto;
    border: 2px solid #f13d17;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .center-img {
    max-width: 250px;
    height: auto;
    border: 2px solid #f13d17;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .corner-img:hover,
  .center-img:hover {
    transform: scale(1.05);
  }
  .social-media {
    margin-top: 30px;
    text-align: center;
  }
  
  .social-media h2 {
    color: #f13d17;
    margin-bottom: 15px;
  }
  
  .social-icon {
    font-size: 20px;
    color: #f13d17;
    text-decoration: none;
    margin: 0 10px;
    transition: transform 0.3s, color 0.3s;
  }
  
  .social-icon i {
    margin-right: 8px;
  }
  
  .social-icon:hover {
    color: #ff8566;
    transform: scale(1.1);
  }
  @media (max-width: 600px) {
    .corner-logo {
      width: 60px;
      top: 5px;
    }
  
    .logo {
      max-width: 200px;
      margin-top: 20px;
    }
  }
  
  
  
  