
/* Logo image */
.brand img.logo {
  height: 80px;        /* increase this for bigger logo */
  width: auto;          /* maintain aspect ratio */
  display: block;
}

.brand span {
  color: #FFC843;         /* simple golden */
  font-weight: bold;   /* make it stand out */
}

/* Product Card */
.card {
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  border:1px solid rgba(138,160,179,.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color .25s ease
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(88,196,255,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.35), 0 0 0 1px rgba(88,196,255,.15) inset;
}

.card .img {
  position: relative;
  aspect-ratio: 4/5; /* ok new add */
  background:#0f141c
}

.card .img img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block
}

.card .img .flag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #FF6B6B;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
}
.card .body {
  padding: 15px;
}

.card .body h4 {
  margin-bottom: 10px;
  font-size: 18px;

}

.card .body .meta span {
  display: block;
  font-size: 14px;
  color:var(--muted);

}
.card .actions {
  margin-top: 10px;
}

/* Model Section **** */


.modal-body {
    display:grid;
    grid-template-columns:3fr 3fr;
    gap:16px;
    padding:16px
}

.modal-body .img {
    aspect-ratio:4/5;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(138,160,179,.15)
}

.modal-head {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 16px;
    border-bottom:1px solid rgba(138,160,179,.15)
}


.btn {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.btn.primary {
  background: #4A90E2;
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #4A90E2;
  color: #4A90E2;
}


/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  transition: max-height 0.3s ease-in-out;
}

.nav-links li a {
  color: #bbb !important;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #FFC843;
  transition: all 0.3s;
}


  /* Mobile responsive modal */
@media screen and (max-width: 768px) {
  .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-body .img {
    width: 100%;
    max-width: 380px;
  }

  .modal-body .actions {
    margin-top: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .modal-body .actions .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #1E2540;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;

  }

  .nav-links.active {
    max-height: 500px; /* enough for menu */
  }

  .hamburger {
    display: flex;
  }
}


/* Style for the fabric select box */
#fabric {
  background-color: #f9f9f9; /* light gray background */
  color: #1E2540;              /* text color */
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

/* Optional: change background on hover */
#fabric:hover {
  background-color: #eee;
}

/* Optional: change background when focused */
#fabric:focus {
  background-color: #fff8e1; /* soft yellow */
  border-color: #e67e22;     /* accent border */
  outline: none;
}

/* Footer */
footer{
  margin-top:34px; padding:26px 0 36px;
  border-top:1px solid rgba(138,160,179,.15);
  color:var(--muted)
}

.footer-logo {
  height: 100px;         /* control logo size */
  width: 100px;          /* make width equal for circle */
  border-radius: 50%;    /* makes the image circular */
  object-fit: cover;     /* ensures image doesn’t stretch */
  display: block;
  margin-top: -12px;
}

/* Footer company name */
footer .company-name {
  font-size: 1rem;       /* adjust size */
  font-weight: 500;        /* bold text */
  color: #fff;             /* white text, change if needed */
  text-align: center;      /* center horizontally */
  margin: 10px 0;          /* spacing above and below */
  letter-spacing: 1px;     /* optional: spacing between letters */
}


/* Example text styling for footer */
.footer-text-company-name {
  color: #FFC843;       /* default text color */
  font-size: 16px;
  text-align: center;
}

.footer-text-location {
  color: #ffffff;       /* default text color */
  font-size: 15px;
  text-align: center;
   margin-top: 8px;
}

.footer-text {
  color: #ffffff;       /* default text color */
  font-size: 12px;
  text-align: center;
  margin-top: 100px;
}

#qvImg {
  max-width: 440px;
  max-height: 100%;   /* small before modal enlarges */
  transition: all 0.4s ease-in-out;
  object-fit: contain;
}
