@charset "utf-8";
/* CSS Document */

/* === Layout === */
			.my-products {
      width: 100%;
      margin: 20px auto;
		position: relative;
				background-color: #fff;
    }

    /* Slide Articles */
    .my-products article {
		background-color: #fff;
		position: absolute;
    top: 0;
    left: 0;
    width: 100%;
      display: block;
      opacity: 0;
      transform: translateY(70%);
      transition: opacity 0.6s ease, transform 0.6s ease;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 25px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .my-products article.active {
      display: block;
      opacity: 1;
    transform: translateY(0);
    z-index: 2;
    }
    .my-products article.incoming {
    opacity: 1;
    z-index: 1;
  }
  .my-products article.outgoing {
    opacity: 0;
	   z-index: 0;
  }

    .my-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .left, .right {
      flex: 1;
      min-width: 300px;
      padding: 10px;
    }
    .left img {
      width: 250px;
      height: 250px;
      display: none;
      border-radius: 8px;
    }
    .left img.active {
      display: block;
    }
    .right h2 {
      margin-top: 0;
      color: #222;
    }
    .right p {
      font-size: 14px;
      line-height: 1.6;
      color: #444;
    }
    .btns {
      margin-top: 10px;
    }
    .btns a {
		font-family: Nasalization;
      margin: 5px;
      padding: 8px 14px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }

.btns a:hover {
		color: #fff;
    }
    .btn-dark {
      background: #002147;
      color: #fff;
    }
    .btn-quote {
      background: #f05323;
      color: #fff;
    }

    /* Carousel dots */
    .my-carousel-dots {
      text-align: center;
      margin: 15px 0;
    }
    .my-carousel-dots span {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 5px;
      background: #bbb;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s;
    }
    .my-carousel-dots span.active {
      background: #f05323;
    }

    /* Tabs */
    .tabs {
      width: 100%;
    }
    .tab-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      border-bottom: 2px solid #eee;
      margin-bottom: 10px;
    }
    .tab-buttons div {
      padding: 8px 12px;
      cursor: pointer;
      color: #555;
      font-weight: bold;
      transition: color 0.3s;
    }
    .tab-buttons div.active {
      color: #f05323;
      border-bottom: 2px solid #f05323;
    }
    .tab-content {
      display: none;
      font-size: 14px;
      color: #333;
    }
    .tab-content.active {
      display: block;
    }

    /* Custom bullets */
    .tab-content ul {
      list-style: none;
      padding-left: 0px;
    }
    .tab-content ul li {
      position: relative;
      margin-bottom: 8px;
      padding-left: 25px;
    }
    .tab-content ul li::before {
      content: "";
      background: url("../img/bullet-iconb.svg") no-repeat center;
      background-size: 15px 15px;
      width: 15px;
      height: 15px;
      position: absolute;
      left: 0;
      top: 2px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .my-row {
        flex-direction: column;
        text-align: center;
      }
      .left, .right {
        min-width: 100%;
      }
      .tab-buttons {
        flex-wrap: wrap;
      }
		
		.btns {
    display: flex;
    flex-direction: column; /* buttons one by one vertically */
    align-items: center;    /* optional: center align */
  }
  
  .btns a {
    width: 80%;     /* optional: buttons width adjust */
    margin: 5px 0;  /* vertical spacing */
  }
    }