/* RESET & GLOBAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('images/bg.jpg') center center / cover fixed no-repeat;
  backdrop-filter: blur(6px);
  color: #b03060;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  color: #b03060;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* LOGO */
.logo {
  max-width: 280px;
  width: 45%;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}

@media (max-width: 768px) {
  .logo {
    max-width: 180px;
    width: 60%;
  }
}

/* HEADER */
header {
  background: rgba(255, 240, 245, 0.85);
  padding: 40px 20px;
  text-align: center;
  border-bottom: 2px solid #f3cbd5;
  position: sticky;
  top: 0;
  z-index: 100;
}

header p {
  color: #cc7087;
  font-size: 18px;
  font-weight: 500;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 12px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* MAIN LAYOUT */
main {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* PRODUCT CARD */
.product {
  background: #fffafc;
  border: 1px solid #f3cbd5;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  padding-bottom: 20px;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: auto;
  max-width: 90%;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px auto;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

/* PRODUCT FORM */
.product-form {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-form select,
.product-form input {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #f0b4c4;
  font-size: 14px;
}

.product-form input::placeholder {
  color: #b76e79;
}

.product-form button {
  padding: 10px;
  background: #f28ca3;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.product-form button:hover {
  background: #e36c88;
}

/* CART */
.cart {
  max-width: 600px;
  margin: 50px auto;
  background: rgba(255, 250, 252, 0.95);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3cbd5;
  text-align: center;
}

.cart h3 {
  margin-bottom: 15px;
  color: #b03060;
}

.cart ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  color: #b03060;
  font-weight: 600;
}

.cart p,
.cart span {
  color: #9b4c62;
  font-size: 16px;
}

.cart .btn {
  display: inline-block;
  margin-top: 15px;
  background: #b03060;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.cart .btn:hover {
  background: #90284d;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(255, 240, 245, 0.85);
  border-top: 2px solid #f3cbd5;
  color: #b76e79;
  font-size: 14px;
}

/* LOADING OVERLAY + SPINNER */
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3cbd5;
  border-top: 6px solid #b03060;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ABOUT US PAGE STYLING */
.about-section {
  background: white;
  color: #333;
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-section h2 {
  color: #b03060;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.about-section p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: justify;
}

.about-section img {
  display: block;
  max-width: 200px;
  width: 50%;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.team-member {
  background: #fffafc;
  border: 1px solid #f3cbd5;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
}

.team-member img {
  max-width: 100px;
  width: 70%;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}

.licensing-details {
  list-style: disc inside;
  margin: 15px 0;
  color: #555;
}
