@import url("https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap");

* {
    font-family: "poppins", "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
}

.scrollable-carousel {
    max-height: 280px;
    overflow: hidden;
    /* hide scrollbars */
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.scrollable-carousel::-webkit-scrollbar {
    display: none;
}

.image-wrapper {
    scroll-snap-align: start;
    width: 500px;
}

.product-image {
    width: 100%;
    height: 280px;
    border-radius: 30px;
    object-fit: cover;
}

@media (max-width:576px) {

    .image-wrapper {
        scroll-snap-align: start;
        width: 300px;
    }

    /* .product-image {
        width: 100%;
        height: 280px;
        border-radius: 30px;
    } */
}

/* Line indicator style */
.line-indicators .line {
    width: 2px;
    height: 40px;
    background-color: #ccc;
    margin: 8px 0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.line-indicators .line.active {
    background-color: #000;
    height: 50px;
}

.btn-shop-now {
    background-color: black;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
}

.btn-in-stock {
    border: 1px solid #28a745;
    color: #28a745;
    padding: 8px 16px;
    border-radius: 30px;
}

.nav-tabs-custom .nav-link {
    border: none;
    background-color: transparent;
    color: #555;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-tabs-custom .nav-link.active {
    color: #000;
    background-color: #f0f0f0;
    font-weight: 600;
    border-radius: 5px;
}

/* Section Styling */
.section-step {
    background: #fafafa;
    padding: 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 30px;
}

.section-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    flex-shrink: 0;
    background-color: #ccc;
    border-radius: 50%;
    padding: 10px;
}

.section-inner {
    flex-grow: 1;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.section-content {
    font-size: 15px;
    color: #000000;
    margin-top: 8px;
}

.section-subdetail div {
    font-size: 14px;
    color: #000000;
}

/* Large Watermark-style Label */
.section-bg-label {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 80px;
    color: rgba(0, 0, 0, 0.05);
    font-weight: 800;
    user-select: none;
    pointer-events: none;
}

/* Colored Dots */
.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: inline-block;
}

/* Feature List */
.feature-list {
    margin-top: 15px;
}

.feature-item {
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.feature-item .arrow {
    margin-right: 8px;
    font-weight: bold;
    color: #000000;
}

.related-section {
    position: relative;
    text-align: center;
    padding: 4rem 0;
}

.related-section h2 {
    font-weight: 700;
    line-height: 1.4;
}

.related-section p {
    color: #888;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.related-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 8px;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 250px;
    border-radius: 30px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
    text-align: left;
}

.related-btn {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.related-btn:hover {
    background-color: #333;
    color: white;
}

.related-bg-label {
    position: absolute;
    bottom: -20px;
    font-size: 10vw;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
    left: 0;
    right: 0;
}

/* Optional: Limit max size for large screens */
@media (min-width: 1200px) {
    .related-bg-label {
        font-size: 9rem;
    }
}

/* Adjust for tablets */
@media (max-width: 768px) {
    .related-bg-label {
        font-size: 10vw;
    }
}

/* Adjust for small screens */
@media (max-width: 480px) {
    .related-bg-label {
        font-size: 10vw;
        bottom: 20px;
    }
}