body {
    font-family: "Tajawal", sans-serif;
} /* Simple transition for tab content */
.product-tab-content {
    transition: opacity 0.3s ease-in-out;
}

.product-tab-content:not(.hidden) {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.angled-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit;
    transform: skewY(-5deg);
    z-index: -1;
}
/* Custom Swiper Styles */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db;
    /* gray-300 */
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #dc2626;
    /* red-600 */
}

/* Custom Navigation Button Styles */
.swiper-nav-button {
    color: #9ca3af;
    /* gray-400 */
    transition: color 0.3s ease;
}

.swiper-nav-button:hover {
    color: #dc2626;
    /* red-600 */
}

.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Custom Swiper Styles */
.swiper-pagination {
    position: absolute !important;
    bottom: 1rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #d1d5db; /* gray-300 */
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background-color: #dc2626; /* red-600 */
}
.brief-inner::after {
    content: "";
    position: absolute;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    background-color: #231f20;
    opacity: 0.88;
    z-index: 10;
}

.brief {
    -webkit-mask-box-image: url("../images/clip.png");
    mask-image: url("../images/clip.png");
    -webkit-mask-position: right;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
}
/* Custom style to hide inactive tabs */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
