:root {
    --primary-color: var(--bs-primary);
    --secondary-color: var(--bs-secondary);
    --accent-color: #ff6b00;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --border-color: #dee2e6;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}



/* Header Styles */
.ought-prdct-biometic-single-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.ought-prdct-biometic-single-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ought-prdct-biometic-single-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .ought-prdct-biometic-single-logo i {
        color: var(--accent-color);
    }

.ought-prdct-biometic-single-nav-links {
    display: flex;
    gap: 2rem;
}

.ought-prdct-biometic-single-nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

    .ought-prdct-biometic-single-nav-link:hover {
        color: var(--primary-color);
    }

.ought-prdct-biometic-single-nav-actions {
    display: flex;
    gap: 1rem;
}

/* Breadcrumb */
.ought-prdct-biometic-single-breadcrumb {
    background-color: var(--light-color);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.ought-prdct-biometic-single-breadcrumb-links {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.ought-prdct-biometic-single-breadcrumb-link {
    color: var(--text-color);
    text-decoration: none;
}

    .ought-prdct-biometic-single-breadcrumb-link:hover {
        color: var(--primary-color);
    }

.ought-prdct-biometic-single-breadcrumb-separator {
    color: #6c757d;
}

/* Product Section */
.ought-prdct-biometic-single-product-section {
    padding: 2rem 0;
}

.ought-prdct-biometic-single-product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ought-prdct-biometic-single-product-image-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ought-prdct-biometic-single-product-main-image {
    /*max-width: inherit;
    max-height: inherit;
    height: inherit;
    width: inherit;*/
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

    .ought-prdct-biometic-single-product-main-image img {
        /*max-width: inherit;
        max-height: inherit;
        height: inherit;
        width: inherit;*/
        width: 100%;
        height: auto;
        display: block;
        transition: opacity 0.5s ease;
    }

.ought-prdct-biometic-single-product-thumbnails {
    display: flex;
    gap: 0.5rem;
}

.ought-prdct-biometic-single-product-thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

    .ought-prdct-biometic-single-product-thumbnail:hover,
    .ought-prdct-biometic-single-product-thumbnail.active {
        border-color: var(--primary-color);
    }

    .ought-prdct-biometic-single-product-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Carousel Controls */
.ought-prdct-biometic-single-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
    pointer-events: none;
}

.ought-prdct-biometic-single-carousel-btn {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

    .ought-prdct-biometic-single-carousel-btn:hover {
        background-color: white;
        transform: scale(1.1);
    }

.ought-prdct-biometic-single-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.ought-prdct-biometic-single-carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

    .ought-prdct-biometic-single-carousel-indicator.active {
        background-color: white;
        transform: scale(1.2);
    }

.ought-prdct-biometic-single-product-info {
    padding: 0 1rem;
}

.ought-prdct-biometic-single-product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.ought-prdct-biometic-single-product-model {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.ought-prdct-biometic-single-product-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ought-prdct-biometic-single-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.ought-prdct-biometic-single-product-features {
    margin-bottom: 2rem;
}

.ought-prdct-biometic-single-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.ought-prdct-biometic-single-feature-icon {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1rem;
}

.ought-prdct-biometic-single-btn-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ought-prdct-biometic-single-btn-primary {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .ought-prdct-biometic-single-btn-primary:hover {
        background-color: var(--secondary-color);
    }

.ought-prdct-biometic-single-btn-secondary {
    background-color: white;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .ought-prdct-biometic-single-btn-secondary:hover {
        background-color: var(--light-color);
        border-color: var(--primary-color);
    }

.ought-prdct-biometic-single-product-meta {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.ought-prdct-biometic-single-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ought-prdct-biometic-single-meta-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ought-prdct-biometic-single-meta-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Tabs Section */
.ought-prdct-biometic-single-tabs-section {
    padding: 3rem 0;
    background-color: var(--light-color);
}

.ought-prdct-biometic-single-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.ought-prdct-biometic-single-tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

    .ought-prdct-biometic-single-tab.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }

.ought-prdct-biometic-single-tab-content {
    display: none;
}

    .ought-prdct-biometic-single-tab-content.active {
        display: block;
    }

/* Specifications */
.ought-prdct-biometic-single-specs-table {
    width: 100%;
    border-collapse: collapse;
}

    .ought-prdct-biometic-single-specs-table th {
        background-color: #f1f5f9;
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        border-bottom: 1px solid var(--border-color);
        width: 30%;
    }

    .ought-prdct-biometic-single-specs-table td {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

/* Features Grid */
.ought-prdct-biometic-single-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ought-prdct-biometic-single-feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
}

.ought-prdct-biometic-single-feature-icon-lg {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ought-prdct-biometic-single-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.ought-prdct-biometic-single-feature-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Downloads */
.ought-prdct-biometic-single-downloads-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ought-prdct-biometic-single-download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.ought-prdct-biometic-single-download-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ought-prdct-biometic-single-download-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.ought-prdct-biometic-single-download-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: background-color 0.3s;
}

    .ought-prdct-biometic-single-download-btn:hover {
        background-color: var(--secondary-color);
    }

/* Related Products */
.ought-prdct-biometic-single-related-section {
    padding: 3rem 0;
}

.ought-prdct-biometic-single-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.ought-prdct-biometic-single-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ought-prdct-biometic-single-related-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

    .ought-prdct-biometic-single-related-card:hover {
        transform: translateY(-5px);
    }

.ought-prdct-biometic-single-related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ought-prdct-biometic-single-related-info {
    padding: 1.5rem;
}

.ought-prdct-biometic-single-related-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ought-prdct-biometic-single-related-price {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.ought-prdct-biometic-single-related-btn {
    display: block;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .ought-prdct-biometic-single-related-btn:hover {
        background-color: var(--secondary-color);
        color: white;
    }

/* Footer */
.ought-prdct-biometic-single-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.ought-prdct-biometic-single-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.ought-prdct-biometic-single-footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ought-prdct-biometic-single-footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

    .ought-prdct-biometic-single-footer-link:hover {
        color: white;
    }

.ought-prdct-biometic-single-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ought-prdct-biometic-single-product-container {
        grid-template-columns: 1fr;
    }

    .ought-prdct-biometic-single-nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .ought-prdct-biometic-single-btn-group {
        flex-direction: column;
    }

    .ought-prdct-biometic-single-product-meta {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ought-prdct-biometic-single-tabs {
        flex-wrap: wrap;
    }

    .ought-prdct-biometic-single-carousel-controls {
        padding: 0 0.5rem;
    }

    .ought-prdct-biometic-single-carousel-btn {
        width: 35px;
        height: 35px;
    }
}
