body {
    background-color: #f4f4f4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
  }
  .rows {
    display: flex;
    width: 100%;
  }
  .col1 {
    width: 10%;
    margin: 1%;
  }
  .col1 ul li {
    list-style: none;
  }
  .col1 ul li a {
    text-decoration: none;
    color: #333;
    text-align: left;
  }
  .col2 {
    width: 90%;
    background-color: #000;
  }
  .indiimgcrl {
    width: 50%;
    height: 350px;
  }

  .textcarl {
    z-index: 1;
    width: 100%;
    position: absolute;
    text-align: right;
    color: white;
    margin-left: -5%;
    margin-top: -10%;
  }
  header {
    background-image: linear-gradient(to right, #000, #222);
  }
  
  h4 {
    color: #333;
    font-weight: 600;
  }
  
  .card {
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: scale(1.05);
  }
  
  .card img {
    height: 150px;
    object-fit: contain;
  }
  
  .btn-outline-primary {
    border-radius: 30px;
  }
  
  .btn-danger {
    padding: 10px 30px;
    font-weight: 500;
  }
  html, body {
    overflow-x: hidden;
  }
  html, body {
    overflow-x: hidden;
  }
  /* style.css */

:root {
  --primary-color: #e94560;
  --text-color: #333;
  --bg-light: #f7f7f7;
  --btn-bg: #e94560;
  --btn-color: #fff;
  --card-bg: #fff;
}

body {
  font-family: Arial, sans-serif;
  background: #f1f1f1;
  margin: 0;
  padding: 0;
}

.section {
  padding: 20px;
  background: var(--bg-light);
  margin-bottom: 20px;
}

.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.title h2 {
  color: var(--text-color);
  margin: 0 0 10px;
}

.timer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.timer div {
  background: var(--card-bg);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.product {
  background: var(--card-bg);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: auto;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 3px;
}

.product p {
  margin: 5px 0;
  font-size: 14px;
}

.price {
  font-weight: bold;
}

.price del {
  color: gray;
  margin-right: 5px;
}

.rating {
  color: gold;
  font-size: 13px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.category {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.category img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--btn-bg);
  color: var(--btn-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

@media screen and (max-width: 600px) {
  .title {
    flex-direction: column;
    align-items: flex-start;
  }

  .timer {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
/* CSS FILE: styles.css */

:root {
  --primary-color: #e94560;
  --gray-bg: #f2f2f2;
  --card-bg: #fff;
  --text-color: #111;
  --muted-text: #666;
  --star-color: #f8ce0b;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: var(--gray-bg);
}

.flash-sales-section {
  padding: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.section-header h2 {
  color: var(--text-color);
  font-size: 24px;
  margin: 0;
}

.countdown {
  display: flex;
  gap: 10px;
  font-size: 18px;
  color: var(--text-color);
}

.product-list {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
}

.product-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 15px;
  min-width: 200px;
  flex: 0 0 auto;
  position: relative;
}

.product-card img {
  width: 100%;
  border-radius: 6px;
}

.discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: white;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 4px;
}

.product-title {
  font-size: 14px;
  margin: 10px 0 5px;
  color: var(--text-color);
}

.product-price {
  color: var(--primary-color);
  font-weight: bold;
}

.product-price del {
  color: var(--muted-text);
  margin-left: 5px;
  font-size: 13px;
}

.rating {
  font-size: 14px;
  color: var(--star-color);
}

.btn-view-all {
  display: block;
  width: fit-content;
  margin: 10px auto;
  padding: 10px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.side-image {
  text-align: center;
  background: #f9b8c1;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.side-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .product-list {
    gap: 10px;
  }
  .product-card {
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 18px;
  }
  .countdown {
    font-size: 14px;
  }
}
