/* Editor Styles
-------------------------------------------------------------- */
.edit-post-visual-editor {
  --visual-padding: 20px; }

.edit-post-visual-editor .product-tabs-block {
  border: solid 5px aquamarine; }

/* Front End Styles
-------------------------------------------------------------- */
.product-category-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3em; }
  .product-category-tabs .tab-panel {
    display: none; }
  .product-category-tabs .tab-panel:first-child {
    display: block; }
  .product-category-tabs .tab-content {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1; }
  .product-category-tabs .tabs {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem; }
  .product-category-tabs .tab {
    cursor: pointer; }
    .product-category-tabs .tab:hover .tab-content, .product-category-tabs .tab:focus .tab-content {
      display: block; }
  @media (max-width: 800px) {
    .product-category-tabs {
      flex-direction: column; }
      .product-category-tabs .tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem; } }
  @media (max-width: 1000px) {
    .product-category-tabs .tabs {
      grid-template-columns: repeat(2, 1fr); } }
.tab-content .product-image {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 20px; }
  .tab-content .product-image img {
    display: block;
    height: 100%;
    width: 100%; }

.tab-content .product-info {
  position: relative;
  padding-left: 70px; }
  .tab-content .product-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: solid 1px var(--wp-color-slate-gray);
    background-image: url(../../images/plus-icon-grey.svg);
    background-repeat: no-repeat;
    background-size: 28px;
    background-position: center; }

.tab-content a {
  color: var(--wp-color-slate-gray); }

.tabs .tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-left: 40px;
  font-size: 18px;
  line-height: 1.2; }
  .tabs .tab:hover, .tabs .tab:focus {
    font-weight: 700; }
  .tabs .tab a {
    color: var(--wp-color-slate-gray); }
  .tabs .tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 34px;
    border: solid 1px var(--wp-color-slate-gray);
    background-image: url(../../images/plus-icon-grey.svg);
    background-repeat: no-repeat;
    background-size: 22px;
    background-position: center; }
