/* ===== BODY ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f1f1a;
  color: #eee;
}

/* ===== HEADER / BANNER ===== */
.hero-header {
  background-image: url("images/shore.jpg");
  background-size: cover;
  background-position: center;
  height: 220px;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
}

/* ===== LOGO ===== */
.logo-area img {
  height: 110px;
  width: auto;
  display: block;
}

/* ===== NAV ===== */
nav {
  padding: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
}

nav a:hover {
  color: #cde6d0;
}

/* ===== MAIN CONTAINER ===== */
.container {
  padding: 20px;
}

/* ===== FILTERS ===== */
.filters {
  text-align: center;
  margin-bottom: 20px;
}

.filters select {
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}

/* ===== PRODUCT GRID ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ===== PRODUCT CARD ===== */
.card {
  background: #1e3d33;
  padding: 15px;
  border-radius: 10px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  min-height: 330px;
  overflow: visible;
}

/* ===== PRODUCT IMAGES ===== */
.card img,
.shop-img {
  width: 180px !important;
  height: 120px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto 10px !important;
  transition: transform 0.3s ease;
}

/* ===== IMAGE HOVER ZOOM ===== */
.card:hover img,
.card:hover .shop-img {
  transform: scale(1.75);
  z-index: 5;
}

/* ===== PRODUCT TEXT ===== */
.card h3,
.card p {
  display: block;
  margin: 4px 0;
  max-width: 100%;
}

/* ===== BUTTONS ===== */
button {
  padding: 10px;
  background: #2e7d5a;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}

button:hover {
  background: #3fa876;
}

/* ===== FLY SETS ===== */
.set-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 10px 0;
}

.set-preview img {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain !important;
}

.set-list {
  text-align: left;
  font-size: 14px;
  margin: 10px 0;
  padding-left: 18px;
}

/* ===== IMAGE GALLERY ===== */
.image-gallery {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.image-gallery img {
  width: 70px !important;
  height: 70px !important;
  object-fit: contain !important;
  cursor: pointer;
}

.image-gallery img:hover {
  transform: scale(1.2);
}

/* ===== CART ===== */
#cart-items {
  margin-bottom: 20px;
}

.cart-item,
#cart-items div {
  background: #1e3d33;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;

  display: flex;
  align-items: center;
  gap: 10px;
}

#cart-items img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain !important;
  border-radius: 5px;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.about-text {
  max-width: 500px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;

}

/* ===== SUCCESS PAGE ===== */

.success-image {
    text-align: center;
    margin: 30px 0;
}

.success-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Success message */

.success-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-message h1 {
    color: #7CFC98;
    font-size: 42px;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 20px;
    line-height: 1.6;
}
