/* ==========================================
   All Good Gifts – Full Custom CSS (Hero + Carousel + Info Section)
   ========================================== */

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #222;
}

a {
  color: #007c91;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0ba7b5;
  text-decoration: underline;
}

button,
input[type="submit"],
.woocommerce a.button,
a.button,
.btn {
  background-color: #20b2aa;
  color: #fff !important;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease;
  text-transform: none;
}

button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
a.button:hover {
  background-color: #188d88;
}

/* === Hero Section === */
.hero-section {
  background: url('https://allgoodgifts.online/wp-content/uploads/2025/06/hero-bg.jpg') center center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: #f2f2f2;
}

.hero-section .hero-btn {
  padding: 12px 28px;
  background-color: #20b2aa;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-section .hero-btn:hover {
  background-color: #188d88;
}

.hero-search {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search input[type="text"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  outline: none;
}

.hero-search button {
  padding: 12px 20px;
  border: none;
  background-color: #f78b42;
  color: white;
  border-radius: 0 50px 50px 0;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-search button:hover {
  background-color: #e06c20;
}

/* === Product Carousel === */
.carousel-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.carousel-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
}

.carousel-item {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.carousel-item img {
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

.carousel-item .info {
  padding: 15px;
}

.carousel-item .info h3 {
  font-size: 1rem;
  margin: 0 0 10px;
}

/* === Info Section (What is All Good Gifts?) === */
.info-section {
  padding: 60px 20px;
  background: #fdf9f4;
  text-align: center;
}

.info-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.info-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* === Utility === */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.text-center { text-align: center; }
.rounded { border-radius: 20px; }

/* === Responsive === */
@media (max-width: 768px) {
  .hero-section h1 { font-size: 2rem; }
  .carousel-wrapper { flex-direction: column; align-items: center; }
}

/* === End === */
