.mission-image {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
    border-radius: 18px;
    margin: 35px 0;
}

.about-image {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 18px;
    margin: 35px 0;
}

.about-banner {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 35px;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    margin: 30px 0;
}

.about-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-gallery img {
    width: 300px;
    max-width: 100%;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.about-page {
    max-width: 1000px;
    margin: 60px auto;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.about-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #111;
}

.about-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.about-page p {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 22px;
}

.about-page ul {
    padding-left: 25px;
}

.about-page li {
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 10px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    color: #333;
}

header {
    background: #111;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.featured {
    padding: 40px 20px;
    text-align: center;
}

.card {
    background: white;
    padding: 20px;
    margin: 15px auto;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
    margin-top: 40px;
}

.button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #0a66c2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.button:hover {
    background-color: #084c9e;
}

.card img {
    width: 100%;
    height: auto;          /* keep original proportions */
    max-height: 350px;     /* prevents it from becoming too tall */
    object-fit: contain;   /* shows full image */
    background: #fff;      /* fills empty space nicely */
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.store-section {
    padding: 50px 30px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.product-card {
    background: white;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.product-card img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 500px !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #444;
}

.product-note {
    font-weight: bold;
    color: #0a66c2;
}

.product-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.button.secondary {
    background: #555;
}

.button.secondary:hover {
    background: #333;
}

.preview-gallery img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 700px !important;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.preview-gallery img:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 45px;
    background: linear-gradient(90deg, #000000, #111827);
    color: white;
    min-height: 95px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-left img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-container img {
    width: 55px;
    height: auto;
}

.brand-text h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-text p {
    font-size: 13px;
    margin: 4px 0 0 0;
    color: #d1d5db;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    background: black;
    color: white;
    min-height: 85px;
}

/* LEFT SIDE (LOGO + TEXT) */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-left img {
    height: 75px;
    width: auto;
    object-fit: contain;
}

/* BRAND TEXT */
.brand-text h1 {
    font-size: 26px;   /* bigger main title */
    margin: 0;
    font-weight: bold;
}

.brand-text p {
    font-size: 12px;   /* smaller subtitle */
    margin: 0;
    color: #ccc;
    letter-spacing: 1px;
}

/* NAVIGATION (RIGHT SIDE) */
.nav-menu a {
    color: white;
    text-decoration: none;
    margin-left: 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #facc15;
}

.header-left img {
    height: 90px !important;
    width: auto !important;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.hero-banner {
    background: url('banner.png') center center/cover no-repeat;
    height: 550px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.55);
    padding: 40px;
    border-radius: 12px;
    color: white;
}

.hero-overlay h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.projects-hero {
    background: url('projects-banner.png') center center/cover no-repeat;

    height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    text-align: center;
}

.projects-overlay {
    background: rgba(0,0,0,0.45);

    padding: 35px 50px;

    border-radius: 14px;

    color: white;

    backdrop-filter: blur(3px);
}

.projects-overlay h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.projects-overlay p {
    font-size: 18px;
    letter-spacing: 1px;
}

.store-hero {
    background: url('store-banner.png') center center/cover no-repeat;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.store-overlay {
    background: rgba(0,0,0,0.45);
    padding: 35px 50px;
    border-radius: 14px;
    color: white;
    backdrop-filter: blur(3px);
}

.store-overlay h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.store-overlay p {
    font-size: 18px;
    letter-spacing: 1px;
}

.marketplace-title {
    text-align: center;
    font-size: 36px;
    margin-top: 60px;
    color: #222;
}

.marketplace-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.product-detail {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.detail-cover {
    width: 320px;
    border-radius: 14px;
    margin-bottom: 30px;
}

.detail-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-list li {
    margin: 10px 0;
    font-size: 17px;
}

.preview-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.detail-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* PRODUCT DETAILS PAGE REFINEMENT */

.product-detail-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-detail-page h1 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #1f1f1f;
}

.product-detail-page p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  max-width: 850px;
}

.product-detail-page h2 {
  font-size: 28px;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #222;
}

.product-detail-page ul {
  font-size: 18px;
  line-height: 1.8;
  padding-left: 25px;
}

.preview-gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.preview-gallery img {
    width: 420px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.preview-gallery img:hover {
    transform: scale(1.03);
}

.buy-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #6c3df4;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
}

.buy-button:hover {
  background: #4f2bc2;
}

/* FORCE PRODUCT DETAIL PAGE DESIGN */

.product-detail-page {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 40px 25px !important;
}

.product-detail-page h1 {
  font-size: 42px !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
}

.product-detail-page p {
  font-size: 20px !important;
  line-height: 1.8 !important;
}

.product-detail-page h2 {
  font-size: 30px !important;
  margin-top: 35px !important;
}

.product-detail-page ul,
.product-detail-page li {
  font-size: 20px !important;
  line-height: 1.8 !important;
}

.preview-gallery {
  display: flex !important;
  justify-content: center !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
  margin-top: 25px !important;
}

body {
    background: #f3f4f6;
    font-family: Arial, sans-serif;
}

.product-detail-page {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.product-detail-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.product-detail-page p,
.product-detail-page li {
    font-size: 20px;
    line-height: 1.9;
}

.product-hero-image {
    max-height: 420px;
}

.preview-gallery img:hover {
    transform: scale(1.05);
}

.preview-gallery img {
    max-width: 100%;
    height: auto;
}

/* FINAL PRODUCT DETAILS PAGE DESIGN */

.product-detail-page {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 50px 30px !important;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* MAKE TOP PRODUCT IMAGE SHOW FULL ORIGINAL HEIGHT */

.product-detail-page h1 {
    font-size: 48px !important;
}

.product-detail-page p,
.product-detail-page li {
    font-size: 20px !important;
    line-height: 1.9 !important;
}

.product-detail-page h2 {
    font-size: 30px !important;
    margin-top: 35px !important;
}

.preview-gallery {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    margin-top: 30px !important;
    margin-bottom: 40px !important;
}

.preview-gallery img {
    width: 520px !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 14px !important;
    border: 1px solid #ddd !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12) !important;
    transition: transform 0.3s ease !important;
}

.preview-gallery img:hover {
    transform: scale(1.03) !important;
}

.buy-button {
    display: inline-block !important;
    margin-top: 25px !important;
    padding: 14px 28px !important;
    background: #6c3df4 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 30px !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.product-detail-page .product-hero-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 18px !important;
    margin-bottom: 35px !important;
}

/* FINAL HERO IMAGE FIX */

.product-detail-page .product-hero-image {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 18px !important;
    margin-bottom: 35px !important;
}

.about-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 35px;
}

.about-gallery img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

.about-banner {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.about-feature-image {
    width: 100%;
    border-radius: 18px;
    margin: 40px 0;
}

.mission-image {
    width: 100%;
    border-radius: 18px;
    margin-top: 40px;
}

.about-gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
}

.about-gallery img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

/* ABOUT PAGE FINAL DESIGN */

.about-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-page h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #111;
    text-align: center;
}

.about-page h2 {
    font-size: 34px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #222;
}

.about-page p {
    font-size: 20px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
}

.about-page ul {
    padding-left: 28px;
}

.about-page li {
    font-size: 20px;
    line-height: 1.9;
}

.about-banner {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.about-feature-image {
    width: 100%;
    border-radius: 20px;
    margin: 40px 0;
}

.mission-image {
    width: 100%;
    border-radius: 20px;
    margin-top: 40px;
}

.about-gallery {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin: 45px 0;
}

.about-gallery img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}

form {
    max-width: 500px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
}

button {
    padding: 10px 20px;
    cursor: pointer;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background-color: black;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

body {
    background-color: #f5f5f5;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 900px;
    margin: auto;
    padding: 40px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background-color: black;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #333;
}

h2 {
    margin-top: 40px;
}

.banner {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.social-icons img:hover {
    transform: scale(1.15);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

.top-logo {
    width: 100px;
    margin-bottom: 20px;
}

section {
    margin-bottom: 50px;
}

.social-icons img {
    width: 32px;
    margin-right: 15px;
}

form {
    width: 100%;
    max-width: 500px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
}

body {
    background-color: #111;
    color: white;
}

a {
    color: #4da6ff;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

.social-icons img:hover {
    transform: scale(1.2);
    transition: 0.3s;
}

.social-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.banner {
    width: 100%;
    max-width: 1100px;
    border-radius: 10px;
    margin-bottom: 30px;
}
