.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


body {
  margin: 0;
  padding:0;
 width: 100%;
   max-width: 100%;
  font-family: Arial, sans-serif;
  background: #f5f6f7;
  box-sizing: border-box;
}
h1,h2,h3,h4,h5 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}

input, select, textarea{ font-size:1.5em; margin-bottom:10px; max-width:95%;border-radius: 6px;}

header{ background: #fff; width:100%}
.section {
  padding: 1em;
 
}
h2{ margin:2px;}
a{ text-decoration: none;}
h3{ margin-bottom:2px;}
.section h2 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
}



/*DROP AREA */
.upload-wrapper {
  margin: 20px 0;
}

.drop-area {
  max-width: 95%;
  padding: 40px;
  border: 2px dashed #ccc;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.drop-area.dragover {
  border-color: #4CAF50;
  background: #f6fff6;
}

.browse-btn {
  color: #007bff;
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}

#preview img {
  margin-top: 15px;
  max-width: 200px;
  border-radius: 8px;
}
/*END DROP AREA */


.monsteradd{ 
	font-size:3em; 
	color:white; 
	background:green; border:3px solid white; 
	border-radius:50px; box-shadow:3px 3px 10px #000; 
	width:50px; height:50px; 
	display:flex; 
	align-item:center center; 
	justify-content:center; 
	bottom:20px; right:20px;
	z-index:2;
	position:fixed;
}
.monsteradd a{text-decoration:none; color:white;}




.avatar{ width:50px; height:50px; border-radius: 50px; border: 2px solid #ccc;box-shadow:3px 3px 5px #000; margin:3px; z-index:2; position:absolute }
.flex{ display:flex; align-items: left; justify-content:left; flex-wrap:wrap;}
.taglinks{ background: rgba(0,0,0,0.05); border-radius:6px; padding:4px; color:#666; margin:2px; font-size:.8em; }
.taglinks:hover{ background: rgba(0,0,0,0.3);  color:#fff;}
.smallicon{ width:25px; height:25px; border-radius:25px; border:2px solid #ccc;}
/* Hide mic button by default */
#micBtn {
	margin-top: 10px;
    font-size: 24px;
    padding: 6px 12px;
 display: inline-block;
border-radius:6px;
}

/* Show mic button only on screens smaller than 768px (mobile) */
@media (max-width: 768px) {
  #micBtn {
    display: inline-block;
    margin-top: 10px;
    font-size: 24px;
    padding: 6px 12px;
  }
}
header {
    position: relative;
    z-index: 1000;
}
.section {
    position: relative;
    z-index: 1;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  justify-content: center;
  margin: 10;
  padding-top:80px;
}

.listing-card {
  position: relative;
  background: #fff;
  border-radius: 5px;
  border:thin solid #999;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height:400px;
}



.listing-card .img-wrap {
  width: 100%;
  aspect-ratio: 4/3; /* maintain ratio, responsive */
  overflow: hidden;
  position: relative;
  height:300px;
}
.listing-card a{ color:black; text-decoration:none;}
.listing-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop */
  object-position: center;
  transition: transform 0.3s ease;
}

.listing-card:hover .img-wrap img {
  transform: scale(1.05);
}

/* Overlay content */
.listing-info {
  position: absolute;
  bottom: 0;
  width: 100%;
background: white;
  color: #000;
  padding: 10px;
  max-height: 100%;
  overflow: hidden;
    transition: all 0.5s ease;
}

.listing-card:hover .listing-info {
  max-height: 100%;
background: white;


}

.listing-info h2 {
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* show 2 lines only */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-info .price {
  font-weight: bold;
  font-size: 0.95em;
}

.listing-info .tags {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.listing-info .taglinks {
  background: rgba(0,0,0,0.1);
  color: blue;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.75em;
  transition: background 0.2s;
}

.listing-info .taglinks:hover {
  background: #0b66ff;
  color: #fff;
}
.videoembed{
    position: relative;       /* always behind content */
    top: 0;
    left: 0;
    min-width: 100;          /* full viewport width */
    height: 300px;         /* full viewport height */
    overflow: hidden;

}

/* Responsive iframe */
.videoembed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;       /* 100vh * 16/9 ratio */
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;  /* makes it click-through if needed */
}
.home-page-header {
    width: 100%;
max-width:100%	/* full viewport width */
    position: relative;             /* allows overlay content inside */
    left: 50%;                      /* offset from container */
    right: 50%;
    margin-left: -50vw;             /* break out of container padding/margin */
    margin-right: -50vw;
    height: 70vh;                   /* adjust as needed */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: flex-end;          /* align text to bottom */
  
    box-sizing: border-box;
    overflow: hidden;
	z-index:-1;
}

.home-page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;                    /* last 5% of header */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #ededed 92%);
    pointer-events: none;           /* allows clicks through */
}
.slide::after{
	 background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #ededed 92%);
}
.store-home {
margin-top:-20px;
}






.avatarlarge{border:3px solid white; box-shadow:5px 5px 5px #000; background-color:white; border-radius:150px ; width:150px; height:150px; }
.groupicons{ z-index:10000; position: relative; background-color:white; border:2px solid white; border-radius:50px; width:50px; height:50px; }
.groupicons img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width:50px;
}
.home-page-header {
    position: relative;
    z-index: 1;
}


.group { width:60px; height:60px;  border-radius: 50%;     /* makes it a circle */
    overflow: hidden;       /* hides overflowing parts of the image */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #fff; /* optional border */
    background-color: #eee; /* optional background */ }
.group  img{ width: 100%;            /* fill circle width */
    height: 100%;           /* fill circle height */
    object-fit: cover;      /* keeps aspect ratio and crops overflow */
    display: block;}
	
	
	


.product-page {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px; /* optional for small screens */
}

.product-main img,
.product-main iframe {
    width: 100%;
    border-radius: 8px;
}

.product-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.product-thumbs img,
.video-thumb {
    flex: 1 1 80px; /* base size */
    max-width: 120px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 6px;
}

.product-price {
    font-size: 1.8em;
    font-weight: bold;
    margin: 10px 0;
}

.product-description {
    max-width: 1200px;
    margin: 50px auto;
    line-height: 1.7;
}


/*   GROUP HEADER    */
.store-groups{display:flex; align-content:center; justify-content:center;  }
.group{opacity:.5; width:35px; height:35px;}
.group:hover{opacity:1}
/*  END GROUP HEADER    */



/*   BRAND HEADER    */
.brand{ position: absolute;
  z-index: 10;

  max-width: 1400px;
  width: 90%;

  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: left;
  align-items: left;
  text-align: left;}
.brandname{   font-family: 'Oswald', sans-serif; 
  font-weight: 600;
  font-size:3em; 
  font-style:italic;
  text-shadow:3px 3px 3px #000;
	margin:.3em;
  
  }
  
/* END BRAND HEADER    */

/* FOOTER   */

footer {
    background: #1c1c1c;
	color:#eee;
}
footer a{
	color:lightblue;
}
.map {
    width: 100%;
    max-height: 400px; /* keep your existing height */
    margin-bottom: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap; /* stack on mobile */
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 0;
    min-width: 250px;
}

.avatarlarge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.store-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-groups .group img {
    max-width: 80px;
    height: auto;
}



.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
	background-color:#000;

}

/* Stack sections on smaller screens */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}

/* FOOTER   */

/*MAP*/
.map iframe{   width: 100%;
    max-width: 100%; overflow:hidden;}
/*END MAP*/




#thumbs {
    display: flex;
    flex-wrap: wrap; /* allows wrapping to next line */
    gap: 6px;        /* spacing between thumbnails */
    margin-top: 10px;
	overflow:hidden;
}

/* Each thumbnail */
#thumbs .thumb,
#thumbs .video-thumb {
    width: 80px;     /* fixed thumbnail width */
    height: 80px;    /* fixed thumbnail height */
    object-fit: cover; /* scale/crop image nicely */
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 6px;
    transition: border-color 0.2s;
}

#thumbs .thumb:hover,
#thumbs .video-thumb:hover {
    border-color: #333;
}

/* Optional: main image styling */
#mainMedia img,
#mainMedia video {
    max-width: 100%;
    height: 400px;
    display: block;
    margin: 0 auto;
}



/* Fullscreen overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide overlay by default */
.hidden {
    display: none;
}

.overlay-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
}

.overlay .media-container img,
.overlay .media-container video {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

/* Close button */
.closeBtn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

/* Navigation buttons */
.prev, .next {
    background: none;
    border: none;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    margin: 0 20px;
}
#mainMedia {
    height: 400px;
    overflow: hidden; /* this will clip child images */
}

#mainMedia img {
    width: 100%;
    object-fit: cover; /* or contain depending on your needs */
}

/*NAV*/
.navimage{ max-height:30px;}

button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c1c1e;             /* dark text */
  background: rgba(255,255,255,0.5);        /* light macOS-style background */
  border: 1px solid #c6c6c8; /* subtle border */
  border-radius: 12px;        /* rounded like macOS */
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15); /* subtle shadow */
  display: inline-block; /* make margin work */
  margin: 8px 4px;       /* vertical + horizontal spacing */
}

button:hover {
  background: #e5e5ea;
  border-color: #a1a1a3;
}

button:active {
  background: #d1d1d6;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
}

button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.4); /* macOS focus ring */
}

.pad-top{ padding-top:100px;}
.navmargin{ height:50px; width:100%; background-color:black;}

.score{font-size:.8em; color:rgba(0,0,0,0.5); float:right;}


/*RELATED*/

.related-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;

}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

/* Card */
.related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
		
}
.related-card a{text-decoration:none;}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.15);
}

/* Media */
.related-card img,
.related-card .videoembed iframe,
.related-card .videoembed video {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Title */
.related-card .title {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.35;
}

/* ---------- Mobile (360px) ---------- */
@media (max-width: 420px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .related-card img,
    .related-card .videoembed iframe {
        height: 140px;
    }

    .related-card .title {
        font-size: 14px;
        padding: 10px;
    }
}



/*END RELATED*/



								#contactForm input, #contactForm textarea {
									width: 100%;
									padding: 0.5em;
									margin: 5px 0 15px;
									border:1px solid #ccc;
									border-radius:5px;
									box-sizing: border-box;
								}

								#contactForm button:hover {
									background:#0056b3;
								}

								/* Responsive for mobile devices */
								@media(max-width: 360px){
									#contactFormContainer {
										padding:0.5em;
									}
									#contactForm textarea {
										font-size:14px;
									}
								}
			