



body {
  font-family: 'Calibri', 'Helvetica', 'Arial', sans-serif;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  background-color: #ddeefc;
}

.website-header {
  height: 60px;
  background-color: #343434;
  display: flex;
  justify-content: space-between;
}

.website-header   a   {
  color: white;
  font-weight: bold;
  font-size: 12px;
  font-family: 'Montserrat';
}

.header-div-left {
  display: flex;
  align-items: center;
  margin-left: 20px;
  gap: 10px;
}

.header-div-right {
  display: flex;
  align-items: center;
  margin-right: 40px;
  gap: 40px;
  display: none;
}

.website-header-logo-image {
  height: 34px;
}

.website-header-company-name {
  color: white;
  font-size: 19px;
  font-weight: 600;
  font-family: 'Montserrat';
}

.clickable-header-item-left {
  text-decoration: none;
  color: inherit;
}

.header-div-center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.sticky-header-top {
  position: sticky;
  top: 0;
}

.sticky-plugin-promo-bottom {
  display: flex;
  position: sticky;
  bottom: 0;
}

.sticky-bottom-div-appearance {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.bold-text {
  font-weight: bold;
}

.boldest-text {
  font-weight: 800;
}

#search-for-mockups-input {
  height: 50%;
  width: 80%;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Montserrat;
  font-weight: 600;
}

.search-icon {
  position: relative;
  right: 7%;
  height: 45%;
  cursor: pointer;
  opacity: 0.7;
}

.website-footer {
  height: 60px;
  background-color: #343434;
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 18px;
  justify-content: space-between;
}

.website-footer   a   {
  color: white;
  font-weight: bold;
  font-size: 12px;
  font-family: 'Montserrat';
}

.footer-section-left {
  display: flex;
  flex-direction: column;
}

.footer-text-1 {
  color: white;
}

.footer-section-right {
  display: flex;
  margin-right: 20px;
  gap: 40px;
}

.main-website-content {
  display: flex;
  justify-content: center;
}

.website-column-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 75%; /* default for large screens */
}

@media (max-width: 1400px) and (min-width: 769px) {
  .website-column-div {
      width: 85%;
  }
}

@media (max-width: 768px) {
  .website-column-div {
      width: 95%;
  }
}


.main-h1-headline {
  font-family: "Montserrat";
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 0px;
  font-weight: 700;
}

.collection-page-h1-headline {
  font-family: "Montserrat";
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
}

.collection-page-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns per row */
  gap: 30px;
  padding: 40px;
  border-top: 1px solid #a2a2a2;
}

.collection-page-product-card {
  /* background: #ffffff; */
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: box-shadow 0.2s ease-in-out;
  cursor: pointer;
  width: 100%; /* Ensures it fits inside its grid cell */
  box-sizing: border-box; /* Includes padding/border in width calculation */
}

.collection-page-product-card  a {
  text-decoration: none;
}

.collection-page-product-image-wrapper {
    position: relative;
    width: 100%;
}

.collection-page-product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.collection-page-product-primary-image {
    display: block;
}

.collection-page-product-secondary-image {
    display: none;
}

.collection-page-product-card:hover .collection-page-product-primary-image {
    display: none;
}

.collection-page-product-card:hover .collection-page-product-secondary-image {
    display: block;
}

.product-image-gallery {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.product-gallery-main-image-wrapper {
    position: relative;
    width: 100%;
}

.product-gallery-image {
    display: none;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid gray;
}

.product-gallery-image.active-product-gallery-image {
    display: block;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 48px;
    border: none;
    cursor: pointer;
    font-size: 42px;
    line-height: 42px;
    background: rgba(255, 255, 255, 0.75);
    z-index: 2;
}

.product-gallery-arrow-left {
    left: 8px;
}

.product-gallery-arrow-right {
    right: 8px;
}

.product-gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.product-gallery-thumbnail {
    padding: 3px;
    border: 2px solid transparent;
    background: white;
    cursor: pointer;
    border-radius: 6px;
}

.product-gallery-thumbnail img {
    display: block;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.product-gallery-thumbnail.active-product-gallery-thumbnail {
    border-color: #0aad2f;
}

@media (max-width: 700px) {
    .product-gallery-arrow {
        width: 34px;
        height: 44px;
        font-size: 36px;
    }

    .product-gallery-thumbnail img {
        width: 60px;
        height: 60px;
    }
}

.collection-page-product-info {
  margin-bottom: 20px;
}

.collection-page-product-title {
  font-size: 14px;
  font-weight: 700;
  margin: 10px 0 5px;
  color: #000000;
  font-family: montserrat;
  padding-left: 5%;
  padding-right: 5%;
}

.collection-page-product-price {
  font-size: 13px;
  font-weight: 400;
  color: #00a859;
  margin-bottom: 5px;
  font-family: montserrat;
}

.collection-page-product-source {
  font-size: 13px;
  color: #777777;
}

.collection-page-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.collection-page-pagination {
  margin-bottom: 40px;
}

.pagination-button {
  margin: 0 4px;
  padding: 6px 10px;
  font-family: Montserrat;
  font-weight: bold;
  cursor: pointer;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.active-pagination-button {
  background: #0077cc;
  color: white;
  border: 1px solid #0077cc;
}

.plugin-promo-headline-text {
  font-size: 24px;
  margin-bottom: 0px;
}

.plugin-promo-image-holder-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plugin-promo-div-top  {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  gap: 20px;
  background-color: white;
  margin-top: 30px;
  cursor: pointer;
  border: 1px solid gray;
}

.plugin-promo-div-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  gap: 20px;
  background-color: white;
  margin-bottom: 30px;
  cursor: pointer;
  border: 1px solid gray;
}

.promo-logo-left,
.promo-logo-right {
  width: 70px;
  height: auto;
}

.plugin-promo-text-content {
  text-align: center;
}

.plugin-promo-headline-top, .plugin-promo-headline-bottom {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.photoshop-plugin-subtext-div {
  font-size: 18px;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
}

.plugin-promo-link-top, .plugin-promo-link-bottom {
  text-decoration: none;
  color: inherit;
}

.plugin-promo-link-bottom {
  transition: opacity 0.5s ease-in-out;
}

.product-page-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0px;
}

.product-main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
}

.product-image-container {
  flex: 1 1 50%;
  text-align: center;
}

.product-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid gray;
}

.product-info-container {
  flex: 1 1 40%;
}

.product-title {
  font-family: 'Montserrat';
  font-weight: 800;
  font-size: 28px;
  margin-top: 0px;
  margin-bottom: 8px;
}

.product-byline {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-byline a {
  color: #007BFF;
  text-decoration: none;
}

.product-description {
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-tags-container {
  margin-bottom: 25px;
  margin-top: 20px;
}

.product-tag {
  display: inline-block;
  background-color: #f2f2f2;
  color: #333;
  border-radius: 4px;
  padding: 6px 10px;
  margin: 5px 5px 0 0;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s;
  border: 1px solid lightgray;
}

.product-tag:hover {
  background-color: #ddd;
}

.download-button {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
  cursor: pointer;
}

.download-button:hover {
  background-color: #218838;
}

.hide-this {
  display: none;
}

#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: white;
  cursor: pointer;
  user-select: none;
}

.loading-indicator {
  font-style: italic;
  margin-bottom: 40px;
  font-size: 22px;
}

.privacy-policy-column-div {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%; /* default for large screens */
  text-align: left;
}

@media (max-width: 1400px) and (min-width: 769px) {
  .privacy-policy-column-div {
      width: 75%;
  }
}

@media (max-width: 768px) {
  .privacy-policy-column-div {
      width: 95%;
  }
}

.privacy-policy-column-div  p {
  margin-top: 8px;
  margin-bottom: 8px;
}

.privacy-policy-column-div  ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.privacy-policy-column-div  h2, 
.privacy-policy-column-div  h3,
.privacy-policy-column-div  h4 {
  margin-top: 14px;
  margin-bottom: 14px;
}

.no-results-message {
  margin-bottom: 100px;
  font-style: italic;
}

.technical-information {
  margin-top: 26px;
  margin-bottom: 18px;
  padding: 14px;
  border-top: 1px solid #a2a2a2;
  border-bottom: 1px solid #a2a2a2;
}

.technical-information p {
  margin: 4px 0;
}

.product-price-container {
  margin-top: 0px;
  margin-bottom: 16px;
}

.product-page-price {
  font-size: 20px;
  margin: 0;
}

.download-license-link {
  text-decoration: none;
}