body {
    font-family: "Cairo", 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;
}

.brief {
    position: relative;
    width: 95%;
    margin: 40px auto;
    height: 420px;
    overflow: hidden;

    /* ✨ الماسك */
    -webkit-mask-image: url("../imgs/clip.png");
    mask-image: url("../imgs/clip.png");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right center;
    mask-position: right center;

    border-radius: 30px;
}

.brief-inner {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.brief-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.brief .content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: right;
    padding: 60px;
    max-width: 600px;
    margin-left: auto;
}

.brief .btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.brief .btn:hover {
    background: rgba(255, 255, 255, 0.4);
}
