


.theme-page .project-meta {
  align-items: flex-end;
}

.theme-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-accent {
  background-color: var(--accent-color);
}

.btn-accent:hover,
.btn-accent:focus {
  background-color: #0000cc;
}

.theme-ctas-container {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.features-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: center;
}

h3{
  font-size: 1.5rem;
  line-height:1.3;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Theme Features Lists */
.theme-feature-list {
  list-style: none;
  padding: 0;
}

.theme-feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.theme-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230000ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12L10 17L20 7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.theme-best-for-section{
  margin-top:40px;
}

.theme-included-section {
  margin-bottom: 60px;
}

p{
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Theme Included Grid */
.theme-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.theme-included-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.1rem;
}

.included-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.theme-ready-text {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 30px;
}

.theme-technical-section {
  margin-bottom: 100px;
}

/* Theme Modal */
.theme-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.theme-modal.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.theme-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.theme-modal-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: white;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s;
  margin: 20px;
  z-index: 1;
}

.theme-modal.is-open .theme-modal-container {
  transform: translateY(0);
}

.theme-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.theme-modal-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.theme-modal-close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: var(--text-color);
  opacity: 0.6;
  transition: opacity 0.3s;
}

.theme-modal-close:hover,
.theme-modal-close:focus {
  opacity: 1;
  outline: none;
}

.theme-modal-close:focus{
  outline:none!important;
}

.theme-modal-close:focus-visible{
  outline: var(--focus-outline) !important;
}

.theme-modal-content {
  padding: 30px;
}

.theme-modal-form {
  max-width: 100%;
}

.theme-modal-form p {
  margin-bottom: 25px;
}

.purchase-form .form-group {
  margin-bottom: 20px;
}

.purchase-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.purchase-form .form-group input,
.purchase-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background-color: white;
}

.purchase-form textarea{
  min-height:100px;
}

.purchase-form form-group input:focus,
.purchase-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.1);
}

.required {
  color: var(--accent-color);
}

.theme-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}

.theme-modal-alternate {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.theme-modal-alternate p{
  margin-bottom: 2px;
  font-size: 1rem;
}

.theme-email-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 5px;
}

/* Lock body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Focus trap style for modal */
.theme-modal-container:focus {
  outline: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .theme-included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-heading {
    font-size: 2.2rem;
  }

  .theme-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .features-heading {
    font-size: 2rem;
    text-align: left;
  }

  .theme-included-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .theme-included-item {
    font-size: 1rem;
  }

  .theme-feature-list li {
    font-size: 1rem;
  }

  .theme-modal-header h2 {
    font-size: 1.6rem;
  }

  .theme-modal-header,
  .theme-modal-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .theme-ctas-container {
    flex-direction: column;
  }

  .theme-ctas-container .btn {
    width: 100%;
    text-align: center;
  }

  .features-heading {
    font-size: 1.8rem;
  }

  .theme-ready-text {
    font-size: 1.1rem;
  }

  .theme-modal-container {
    margin: 15px;
  }

  .theme-modal-header h2 {
    font-size: 1.4rem;
  }
}




.themes-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  justify-items: center;
  padding: 2rem 0;
  max-width:2000px;
  margin-left:auto;
  margin-right:auto;
  padding-left:40px;
  padding-right:40px;
  margin-bottom:4rem;
}

.theme-demo-column {
  text-align: center;
  width: 100%;
}

.theme-demo-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom:20px;
}


@media (max-width: 992px) {
  .themes-demo {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .themes-demo {
    grid-template-columns: 1fr;
  }
}



.theme-page{
  .project-content, .project-image-section{
    max-width:1400px;
  }
  .project-image-section{
    padding: 40px 0px;
  }
}

@media screen and (max-width:1024px){
.themes-demo {
    margin-bottom: 1rem;
}
  .theme-page .project-meta {
    align-items: flex-start;
}
  .theme-page .project-meta {
    align-items: flex-start;
}
}

@media screen and (max-width:768px){
.themes-demo {
    padding-left: 20px;
    padding-right: 20px;
}
      .content-column h2 {
        margin-bottom: 30px;
    }
  .theme-page .project-image-section {
    padding-top: 40px;
    padding-bottom: 0;
}
  .theme-included-section {
    margin-bottom: 30px;
}
}





