/* Add your custom CSS for the LGBTQ+ page here */

/* Example: Change background of category cards */
.category-card-wrapper .small-card-item {
    /* background-color: #ffdddd; */
    /* border: 1px solid #ff0000; */
    /* padding: 10px; */
}

/* Example: Style the category title */
.category-card-wrapper .small-card-item .title {
    /* color: #0000ff; */
    /* font-size: 1.2em; */
}
.category-card-wrapper .small-card-item {
    /* border-radius: 0; */
    box-shadow: none !important;
    border: 0;
    padding-block: 20px;
}
.category-card-wrapper .small-card-item img {
    max-width: 213px !important;
    margin-bottom: 8px;
    border-radius: 15px;
}
.line-limitation-1 {
    margin-top: 15px;
    font-weight: 600;
    font-size: 20px;
}
.category-card-wrapper {
    display: flex !important;
    justify-content: center;
    align-items: center;
}
@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.lgbtq-border {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 0;
  border: 3px solid transparent; /* base border thickness */
}

/* Pseudo-element for animated border */
.lgbtq-border::before {
  content: '';
  position: absolute;
  inset: 0; /* cover entire border area */
  border-radius: inherit;
  padding: 3px; /* border thickness */
    background: conic-gradient(from var(--angle) at 50% 50%, #cb0000, #d18700, #d5d500, #004000, #0000c1, #3c0167, #c503c5, red);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;

  /* Animation */
  animation: rainbow-rotate 4s linear infinite, rainbow-flow 6s linear infinite;
}

/* Rotate gradient */
@keyframes rainbow-rotate {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}

/* Shift colors along the gradient for “growing” effect */
@keyframes rainbow-flow {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.lgbtq-border .product-card:hover{
    border: 1px solid #00000000!important;
}
