@charset "UTF-8";
/*!
Theme Name: BloomStack
Theme URI: https://bloomstack.com
Author: NosgihDerf
Author URI: https://nosgihderf.com
Description: A clean and minimal WordPress theme for plugin and website development
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bloomstack
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");
/* Modern CSS Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
fieldset {
  margin: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove text decoration on links */
a {
  text-decoration: none;
  color: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea {
  min-height: 2em;
}

/* Remove all button styles */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Table defaults */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Modern normalize for form elements */
input,
button,
textarea,
select {
  margin: 0;
  border-radius: 0;
}

/* Remove webkit default styles */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.site-header {
  background-color: rgb(255, 255, 255);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  padding: 2rem 0;
}
.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.site-header .theme-container {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.site-branding img {
  height: 50px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.mobile-menu-toggle .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #713efe;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.main-navigation {
  flex-grow: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .main-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }
  .main-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  padding: 9px 0 0;
}
@media (max-width: 768px) {
  .main-navigation ul {
    flex-direction: column;
    padding: 2rem;
  }
}

.main-navigation li {
  margin: 0 15px;
}
@media (max-width: 768px) {
  .main-navigation li {
    margin: 1rem 0;
  }
}

.main-navigation a {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  text-decoration: none;
  color: #713efe;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 0;
  transition: color 0.3s ease;
}
.main-navigation a:hover {
  color: rgb(75.6701030928, 11.2628865979, 253.7371134021);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .header-actions {
    display: none;
  }
}

.cart-icon .cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 2px solid #713efe;
  border-radius: 50%;
  text-decoration: none;
  color: #713efe;
  transition: all 0.3s ease;
}
.cart-icon .cart-button:hover {
  background-color: #713efe;
  color: #ffffff;
}
.cart-icon .cart-button i {
  font-size: 1rem;
  line-height: 1;
}
.cart-icon .cart-button .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #f7d144;
  color: #333;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
}
.cart-icon .cart-button .cart-count:empty, .cart-icon .cart-button .cart-count[data-count="0"] {
  display: none;
}

.mobile-actions {
  display: none;
}
@media (max-width: 768px) {
  .mobile-actions {
    display: block;
    padding: 2rem;
    border-top: 1px solid #eee;
    margin-top: 2rem;
  }
}

.mobile-cart-icon {
  margin-bottom: 2rem;
}
.mobile-cart-icon .cart-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 2rem;
  border: 2px solid #713efe;
  border-radius: 5px;
  text-decoration: none;
  color: #713efe;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}
.mobile-cart-icon .cart-button:hover {
  background-color: #713efe;
  color: #ffffff;
}
.mobile-cart-icon .cart-button i {
  font-size: 1.1rem;
}
.mobile-cart-icon .cart-button .cart-count {
  background-color: #f7d144;
  color: #333;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
}
.mobile-cart-icon .cart-button .cart-count:empty, .mobile-cart-icon .cart-button .cart-count[data-count="0"] {
  display: none;
}

@media (max-width: 768px) {
  .desktop-login-button {
    display: none;
  }
}

.mobile-login-button {
  display: block;
}

.login-button {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  border: 2px solid #713efe;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  color: #713efe;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}
.login-button:hover {
  background-color: #713efe;
  color: #ffffff;
}
.mobile-login-button .login-button {
  width: 100%;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .site-header .theme-container {
    gap: 15px;
  }
  .site-branding img {
    height: 40px;
  }
}
.theme-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.entry-header {
  margin-bottom: 20px;
}

.hero {
  padding: 4rem 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column-reverse;
    gap: 3rem;
    text-align: center;
  }
}
.hero__content {
  flex: 0.35;
}
@media (max-width: 768px) {
  .hero__content {
    flex: 1;
    width: 100%;
  }
}
.hero__content h1 {
  margin-bottom: 1rem;
  color: #713efe;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__content h1 {
    font-size: 1.25rem;
  }
}
.hero__content h2 {
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero__content h2 {
    font-size: 1rem;
  }
}
.hero__features {
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .hero__features {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
  }
}
.hero__features li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
}
.hero__features li .checkmark {
  color: #713efe;
  margin-right: 1rem;
  font-weight: bold;
}
.hero__image {
  flex: 0.65;
}
@media (max-width: 768px) {
  .hero__image {
    flex: 1;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.hero__buttons {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .hero__buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.hero__buttons .button {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .hero__buttons .button {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}
.hero__buttons .button--primary {
  background-color: #713efe;
  color: #ffffff;
}
.hero__buttons .button--primary:hover {
  background-color: rgb(75.6701030928, 11.2628865979, 253.7371134021);
}
.hero__buttons .button--secondary {
  border: 2px solid #713efe;
  color: #713efe;
}
.hero__buttons .button--secondary:hover {
  background-color: #713efe;
  color: #ffffff;
}

.site-footer {
  background-color: #713efe;
  color: #ffffff;
  padding: 3rem 0;
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.footer-social a {
  color: #ffffff;
  font-size: 1.125rem;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    margin-top: 2rem;
  }
}
.plugin-header {
  background: #713efe;
  padding: 3rem 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.plugin-header .theme-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.plugin-header__content {
  z-index: 2;
}

.plugin-header__image {
  z-index: 1;
}

.plugin-header__image .plugin-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 1rem;
}

.plugin-header__image .plugin-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.plugin-header .plugin-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.2;
}

.plugin-header .plugin-short-description {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.plugin-header .plugin-short-description p {
  margin-bottom: 1rem;
}

.plugin-header .plugin-short-description p:last-child {
  margin-bottom: 0;
}

.plugin-header__buy .button {
  display: inline-block;
  background: #f7d144;
  color: #333;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.plugin-header__buy .button:hover {
  background: rgb(245.7076923077, 201.5692307692, 37.7923076923);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(247, 209, 68, 0.3);
  color: #333;
  text-decoration: none;
}

@media (max-width: 992px) {
  .plugin-header {
    padding: 2rem 0;
  }
  .plugin-header .theme-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .plugin-header__content {
    order: 2;
  }
  .plugin-header__image {
    order: 1;
  }
  .plugin-header__image .plugin-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .plugin-header__image .plugin-main-image {
    max-height: 300px;
    object-fit: cover;
  }
  .plugin-header__buy {
    justify-content: center;
  }
  .plugin-header__buy .button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
  .plugin-header::after {
    height: 40px;
  }
}
.plugin-nav-ghost {
  width: 100%;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .plugin-nav-ghost {
    display: none;
  }
}

.plugin-nav {
  background: white;
  border-bottom: 1px solid #e2e8f0;
  z-index: 999;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .plugin-nav {
    display: none;
  }
}

.plugin-nav.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
  background: #713efe;
}

.plugin-nav.is-sticky + .plugin-nav-ghost {
  display: block;
}

.plugin-nav .theme-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .plugin-nav .theme-container {
    padding: 0;
  }
}

.plugin-nav__section {
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 768px) {
  .plugin-nav__section {
    display: none;
  }
}

.plugin-nav__items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  width: 100%;
}

.plugin-nav__items li {
  margin: 0;
  white-space: nowrap;
}

.plugin-nav__items li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.plugin-nav__items li a:hover,
.plugin-nav__items li a.active {
  color: #713efe;
  border-bottom-color: #713efe;
}

.plugin-nav.is-sticky .plugin-nav__items li a {
  border-bottom-width: 2px;
  color: #ffffff;
  border-bottom-color: transparent;
}

.plugin-nav.is-sticky .plugin-nav__items li a:hover,
.plugin-nav.is-sticky .plugin-nav__items li a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.plugin-nav__buy {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 768px) {
  .plugin-nav__buy {
    width: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
}

.plugin-nav__buy .button {
  background: #f7d144;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .plugin-nav__buy .button {
    width: 100%;
    text-align: center;
    border-radius: 0;
    padding: 1rem;
    margin: 0;
  }
}

.plugin-nav__buy .button:hover {
  background: rgb(245.7076923077, 201.5692307692, 37.7923076923);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(247, 209, 68, 0.3);
  color: #333;
  text-decoration: none;
}
@media (max-width: 768px) {
  .plugin-nav__buy .button:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .plugin-nav.is-sticky .plugin-nav__buy {
    background: #713efe;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
}

.plugin-nav.is-sticky .plugin-nav__buy .button {
  background: #f7d144;
  color: #333;
  box-shadow: 0 2px 8px rgba(247, 209, 68, 0.2);
}

.plugin-nav.is-sticky .plugin-nav__buy .button:hover {
  background: rgb(245.7076923077, 201.5692307692, 37.7923076923);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(247, 209, 68, 0.4);
  color: #333;
}
@media (max-width: 768px) {
  .plugin-nav.is-sticky .plugin-nav__buy .button:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .plugin-content {
    padding-bottom: calc(3rem + 56px);
  }
}
.plugin-content {
  padding: 3rem 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.plugin-section {
  margin-bottom: 4rem;
}

.plugin-section:last-child {
  margin-bottom: 0;
}

.plugin-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a202c;
  text-align: center;
}

.features-list .feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.features-list .feature-item:last-child {
  margin-bottom: 0;
}

.features-list .feature-item.feature-item--reverse .feature-content {
  order: 2;
}

.features-list .feature-item.feature-item--reverse .feature-image {
  order: 1;
}

.features-list .feature-item .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

.features-list .feature-item .feature-content p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1.1rem;
}

.features-list .feature-item .feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .features-list .feature-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .features-list .feature-item.feature-item--reverse .feature-content {
    order: 2;
  }
  .features-list .feature-item.feature-item--reverse .feature-image {
    order: 1;
  }
}
.pricing-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-content .simple-pricing {
  background: white;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #f1f5f9;
}

.pricing-content .simple-pricing .price-display {
  margin-bottom: 2rem;
}

.pricing-content .simple-pricing .price-display .price {
  font-size: 3rem;
  font-weight: 700;
  color: #713efe;
}

.pricing-content .simple-pricing .price-display .price-period {
  font-size: 1.1rem;
  color: #64748b;
  margin-left: 0.5rem;
}

.pricing-content .simple-pricing .price-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-content .simple-pricing .price-features ul li {
  padding: 0.75rem 0;
  color: #4a5568;
  font-size: 1.1rem;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-content .simple-pricing .price-features ul li:last-child {
  border-bottom: none;
}

.faqs-list {
  max-width: 800px;
  margin: 0 auto;
}

.faqs-list .faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
}

.faqs-list .faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faqs-list .faq-item .faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faqs-list .faq-item .faq-question:hover {
  background: rgba(113, 62, 254, 0.05);
}

.faqs-list .faq-item .faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a202c;
}

.faqs-list .faq-item .faq-question .faq-toggle {
  font-size: 1.5rem;
  color: #713efe;
  font-weight: 600;
}

.faqs-list .faq-item .faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.faqs-list .faq-item .faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faqs-list .faq-item .faq-answer.active {
  max-height: 200px;
  padding: 0 1.5rem 1.5rem;
}

.faqs-list .faq-item .faq-answer p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.specifications-content {
  max-width: 800px;
  margin: 0 auto;
}

.specifications-content .spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .specifications-content .spec-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.specifications-content .spec-grid .spec-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.specifications-content .spec-grid .spec-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.specifications-content .spec-grid .spec-item strong {
  display: block;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.specifications-content .spec-grid .spec-item span {
  color: #4a5568;
  line-height: 1.6;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
  background: #713efe;
}
.page-header h1 {
  color: #ffffff;
}
.page-header p {
  color: #ffffff;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a202c;
}

.page-description {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.archive-plugins {
  position: relative;
}
.archive-plugins .plugins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
@media (max-width: 1024px) {
  .archive-plugins .plugins__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .archive-plugins .plugins__grid {
    grid-template-columns: 1fr;
  }
}
.archive-plugins .plugins__view-all {
  text-align: center;
  margin-top: 3rem;
}

.no-plugins-found {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.no-plugins-found h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a202c;
}

.no-plugins-found p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.6;
}

.navigation.pagination {
  margin-top: 3rem;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navigation.pagination .nav-links .page-numbers {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
}
.navigation.pagination .nav-links .page-numbers:hover {
  background: #f1f5f9;
  color: #713efe;
}
.navigation.pagination .nav-links .page-numbers.current {
  background: #713efe;
  color: white;
}
.navigation.pagination .nav-links .page-numbers.prev, .navigation.pagination .nav-links .page-numbers.next {
  font-weight: 500;
}

.plugins__card {
  background: #713efe;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plugins__card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.plugins__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.plugins__card-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.plugins__card-title a:hover {
  color: #f7d144;
}
.plugins__card-description {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.plugins__card-features {
  margin: 1rem 0;
  list-style: none;
  padding: 0;
}
.plugins__card-features li {
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
.plugins__card-features li:before {
  content: "✓";
  margin-right: 0.5rem;
  color: #f7d144;
}
.plugins__card-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.plugins__card-meta .version {
  color: #ffffff;
  font-size: 0.9rem;
  opacity: 0.8;
}
.plugins__card-meta .price {
  font-weight: 600;
  color: #ffffff;
}
.plugins__card-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #f7d144;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
  text-align: center;
  margin-top: 1rem;
}
.plugins__card-button:hover {
  background: rgb(244.9076923077, 196.9692307692, 19.0923076923);
}

.plugins {
  position: relative;
  padding: 65px 0;
}
.plugins::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 100vw;
  height: 50%;
  background-color: #f5f5f5;
  z-index: -1;
}
.plugins__title {
  text-align: center;
  color: #713efe;
  margin-bottom: 4rem;
  position: relative;
}
.plugins__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
@media (max-width: 1024px) {
  .plugins__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .plugins__grid {
    grid-template-columns: 1fr;
  }
}

body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.breadcrumb-container {
  background-color: #f7f7f7;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav {
  font-size: 0.875rem;
  color: #666;
}
.breadcrumb-nav a {
  color: #713efe;
  text-decoration: none;
}
.breadcrumb-nav a:hover {
  text-decoration: underline;
}
.breadcrumb-nav .delimiter {
  margin: 0 0.5rem;
  color: #999;
}
.breadcrumb-nav .breadcrumb-current {
  color: #333;
  font-weight: 500;
}

.lemonsqueezy-button {
  display: inline-block;
  background: #f7d144;
  color: #333;
  padding: 1rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.lemonsqueezy-button:hover {
  background: rgb(244.9076923077, 196.9692307692, 19.0923076923);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 209, 68, 0.3);
  color: #333;
  text-decoration: none;
}
.lemonsqueezy-button:active {
  transform: translateY(0);
}